/*
 * segment.css — Segmento di Our Works (236:1209/1192/1214). Spec: 02-work.md §3-5. Fondi blu
 * crescenti; reel 660x528 radius 20 con bottone in basso a destra; colonna testo w 539 con titolo
 * 88, intro, etichetta e lista clienti; striscia in marquee sotto. Mobile: reel, testo, lista, striscia
 * in colonna. .segment--flip inverte le colonne da 900.
 */
.segment {
    --bg: var(--color-blue-1);
    border-bottom: 2px solid var(--color-line-soft);
    scroll-margin-top: var(--header-height-pinned);
}
.segment--blue-2 {
    --bg: var(--color-blue-2);
}
.segment--blue-3 {
    --bg: var(--color-blue-3);
}
.segment.is-dark {
    background-color: var(--bg);
}
.segment__grid {
    display: grid;
    gap: var(--space-xl);
}
.segment__reel {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 660 / 528;
    background: var(--color-card);
}
.segment__still {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}
.segment__reel-button {
    position: absolute;
    right: var(--space-md);
    bottom: var(--space-md);
}
.segment__copy {
    display: grid;
    gap: var(--space-md);
    align-content: start;
    max-width: 800px;
}
.segment__title {
    text-transform: uppercase;
    font-size: clamp(48px, 36.7324px + 3.0047vw, 88px);
}
.segment__intro {
    line-height: var(--line-height-lead-figma);
}
.segment__hl-label {
    margin-top: var(--space-sm);
}
.segment .strip {
    margin-top: var(--section-gap);
}
@media (min-width: 900px) {
    .segment__grid {
        grid-template-columns: minmax(0, 800px) minmax(0, 646px);
        justify-content: space-between;
        align-items: start;
        gap: var(--space-2xl);
    }
    .segment--flip .segment__reel {
        order: 2;
    }
    .segment--flip .segment__copy {
        order: 1;
    }
    .segment__copy {
        padding-top: 0;
    }
}
