/* homepage (index) — page-specific styles.
   Three-colour system, used with intent:
     • indigo  (--blue)              structure, headings, dark bands
     • gold    (--primary/-light)    brand signal (markers, hero highlight)
     • turquoise (--turquoise)       wayfinding — links and forward cues
   Static only: no hover, focus, or transition state changes. */

/* hero background image (overlay + text come from the shared .hero) */
.hero{background-image:url("/media/index/hero-medical-students-scrubs-discussion.png?v=e464b8df65");}

/* ── band rhythm: alternate warm-white canvas and cool neutral ──
   indigo hero → canvas → section → canvas → section → indigo closing */
.passage{background:var(--primary-lightest)}
.related{background:var(--primary-lightest)}

/* ── "why this feels like a lot" passage copy ── */
.passage-content .note{color:var(--turquoise)}
.passage-content .passage-lead{font-size:1.2rem;line-height:1.7;color:var(--gray-darkest);max-width:54ch}
.passage-content .passage-text{margin-top:18px;max-width:54ch}

/* ── two ways to explore — image-led routing cards ── */
.explore-grid{
    max-width:1280px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:stretch;
}
.explore-card{
    background:#FFFFFF;
    border:1px solid var(--gray-lighter);
    border-radius:var(--r-xl);
    overflow:hidden;
    display:flex;
    flex-direction:column;
    text-decoration:none;
    color:inherit;
}
.explore-card .explore-figure{
    aspect-ratio:16/9;
    overflow:hidden;
    background:var(--primary-lightest);
    border-bottom:1px solid var(--gray-lighter);
}
.explore-card .explore-figure img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius:0;
}
.explore-card .explore-body{
    padding:34px 34px 36px;
    display:flex;
    flex-direction:column;
    gap:14px;
    flex:1;
}
/* mark — gold brand-signal square + indigo label */
.explore-card .mark{
    font-family:var(--font-ui);
    font-size:0.72rem;
    font-weight:700;
    letter-spacing:0.12em;
    text-transform:uppercase;
    color:var(--blue);
    display:inline-flex;
    align-items:center;
    gap:10px;
}
.explore-card .mark::before{
    content:"";
    width:10px;
    height:10px;
    background:var(--primary);
    border-radius:2px;
    flex-shrink:0;
}
.explore-card h3{
    font-size:1.45rem;
    line-height:1.25;
    color:var(--blue);
}
.explore-card p{
    font-family:var(--font-body);
    font-size:1.02rem;
    line-height:1.68;
    color:var(--gray-darker);
}
/* cue — turquoise wayfinding link with arrow */
.explore-card .cue{
    font-family:var(--font-ui);
    font-size:0.95rem;
    font-weight:700;
    color:var(--turquoise);
    padding-top:16px;
    border-top:1px solid var(--gray-lighter);
    margin-top:auto;
    text-decoration:underline;
    text-decoration-thickness:1.5px;
    text-underline-offset:4px;
    display:inline-flex;
    align-items:center;
    gap:10px;
}
.explore-card .cue .arrow{
    display:inline-block;
    width:18px;
    height:1px;
    background:currentColor;
    position:relative;
    text-decoration:none;
}
.explore-card .cue .arrow::after{
    content:"";
    position:absolute;
    right:0;
    top:-3px;
    width:7px;
    height:7px;
    border-top:1px solid currentColor;
    border-right:1px solid currentColor;
    transform:rotate(45deg);
}

@media (max-width:1100px){
    .explore-grid{grid-template-columns:1fr;gap:32px}
}
