/* ============================================================
   LAYOUT ARCHITECTURE
   ============================================================ */
.section {
    padding: 120px var(--hero-padding-x);
    width: 100%;
}

.section__container {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.split-layout {
    display: flex;
    justify-content: space-between;
    gap: 160px;
}

.split-layout__text-side {
    flex: 0 0 35%;
    max-width: 670px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: flex-start;
    gap: 30px;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.split-layout__list-side {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* SNAP SCROLLING LAYOUT */
body:has(.snap-container) {
    margin: 0;
    overflow: hidden;
}

.snap-container {
    height: 100vh;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.snap-container::-webkit-scrollbar {
    display: none;
}

.snap-section {
    height: 100vh;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    display: flex;
    align-items: center;
    padding: 40px var(--hero-padding-x);
    color: white;
    overflow-y: auto;
    overflow-x: hidden;
}

.snap-section.static {
    height: auto;
    display: block;
    padding: 0;
    scroll-snap-align: start;
    overflow: visible;
}

/* --- MOBILE TWEAKS --- */
@media (max-width: 1200px) {
    .full-width-banner {
        height: 300px;
    }

    .section {
        padding: 100px 40px;
    }

    .split-layout {
        flex-direction: column;
        gap: 100px;
    }

    .split-layout__text-side {
        flex: auto;
        max-width: 100%;
        position: relative;
        top: 0;
    }

    .split-layout__text-side .btn {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .full-width-banner {
        height: 250px;
    }

    .section {
        padding: 100px var(--hero-padding-x);
    }
}