/* ============================================================
   Girls Team page (/team) — Pillar list, culture split, network feature
   ============================================================ */

/* ── Pillars: full-width alternating rows w/ oversized outlined numerals ──
   Deliberately not another card grid — every other page already uses one
   (.feature-card, .approach-item, .program-block). This page needed its
   own silhouette. */

.pillar-list {
    border-top: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.08));
}

.pillar-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.25rem 0;
    border-bottom: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.08));
    transition: background 0.3s ease;
}

.pillar-row:hover {
    background: var(--surface, #1c1c1c);
}

.pillar-row:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}

.pillar-row:nth-child(even) .pillar-row-head {
    flex-direction: row-reverse;
}

.pillar-row-index {
    flex: 0 0 auto;
    width: 130px;
    font-family: var(--font-heading, "Oswald", sans-serif);
    font-weight: 800;
    font-size: clamp(2.75rem, 5vw, 4rem);
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px var(--brand-primary, #1272ba);
    text-stroke: 2px var(--brand-primary, #1272ba);
    text-align: center;
}

.pillar-row-content {
    flex: 1 1 auto;
}

.pillar-row-head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.5rem;
}

.pillar-row-icon {
    display: inline-flex;
    color: var(--brand-primary-light, #2e8fd4);
}

.pillar-row-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pillar-row-title {
    font-family: var(--font-heading, "Oswald", sans-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text, #ffffff);
    letter-spacing: -0.01em;
    text-shadow: 1px 1px 1px var(--black, #000000);
    margin: 0;
}

.pillar-row-body {
    color: var(--text-muted, #a0a0a0);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 60ch;
    margin: 0;
}

.pillar-row:nth-child(even) .pillar-row-body {
    margin-left: auto;
}

@media (max-width: 767px) {
    .pillar-row,
    .pillar-row:nth-child(even) {
        flex-direction: row;
        text-align: left;
        gap: 1.25rem;
        padding: 1.75rem 0;
    }

    .pillar-row:nth-child(even) .pillar-row-head {
        flex-direction: row;
    }

    .pillar-row-index {
        width: 64px;
        font-size: 2rem;
    }

    .pillar-row:nth-child(even) .pillar-row-body {
        margin-left: 0;
    }
}

/* ── Culture: asymmetric gradient split (statement + stacked pillars) ──
   Same gradient/texture language as .ih-cta / .mv-vision, but a two-column
   layout instead of a centered single-column manifesto — a different block,
   not a repaint of the Mission/Vision page's Vision section. */

.team-culture {
    position: relative;
    background: var(--gradient-navy-blue, linear-gradient(135deg, #0b1f4b 0%, #1272ba 100%));
    padding: 5rem 0;
    overflow: hidden;
}

.team-culture::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        rgba(var(--white-rgb, 255, 255, 255), 0.025) 0px,
        rgba(var(--white-rgb, 255, 255, 255), 0.025) 1px,
        transparent 1px,
        transparent 12px
    );
    pointer-events: none;
}

.team-culture .container {
    position: relative;
}

.culture-eyebrow {
    color: rgba(var(--white-rgb, 255, 255, 255), 0.65);
}

.culture-heading {
    font-family: var(--font-heading, "Oswald", sans-serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--white, #ffffff);
    line-height: 1.15;
    letter-spacing: -0.01em;
    text-shadow: 1px 1px 1px var(--black, #000000);
    margin-bottom: 1.25rem;
}

.culture-body {
    color: rgba(var(--white-rgb, 255, 255, 255), 0.85);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 52ch;
    margin: 0;
}

.culture-pillars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.culture-pillar {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(var(--white-rgb, 255, 255, 255), 0.2);
    border-radius: 10px;
    background: rgba(var(--white-rgb, 255, 255, 255), 0.05);
}

.culture-pillar-number {
    font-family: var(--font-heading, "Oswald", sans-serif);
    font-weight: 800;
    font-size: 1.5rem;
    color: rgba(var(--white-rgb, 255, 255, 255), 0.5);
}

.culture-pillar-label {
    font-family: var(--font-heading, "Oswald", sans-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white, #ffffff);
    letter-spacing: -0.01em;
}

/* ── Network feature: full-bleed cinematic photo banner ──
   Same <img> + overlay convention as hero.md, but a contained mid-page
   block (rounded, fixed height) rather than a viewport hero or a
   side-by-side .highlight-panel split. */

.network-feature {
    min-height: 440px;
    border-radius: 16px;
    padding: 3rem 2rem;
}

.network-feature-media {
    object-fit: cover;
}

.network-feature-overlay {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.82) 100%);
}

.network-feature-content {
    max-width: 640px;
}

.network-feature-heading {
    font-family: var(--font-heading, "Oswald", sans-serif);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white, #ffffff);
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
}

.network-feature-body {
    color: rgba(var(--white-rgb, 255, 255, 255), 0.85);
    font-size: 1.05rem;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 767px) {
    .network-feature {
        min-height: 380px;
        padding: 2rem 1.25rem;
    }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
    .pillar-row {
        transition: none;
    }
}
