/* HOME FUNNEL STRUCTURE (applies to both themes) */

.funnel-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
}

.funnel-split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-bright), transparent);
    opacity: 0.55;
}

.funnel-bottom-section {
    width: 100%;
}

/* bottom grids used on READ/OWN tabs */
.funnel-bottom-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
    align-items: center;
}

@media (max-width: 768px) {
    .funnel-split-row {
        grid-template-columns: 1fr;
    }

    .funnel-bottom-grid {
        grid-template-columns: 1fr;
    }
}