/* ─── INSTITUTIONAL PAGE STYLES ─── */

/* ─── HERO ─── */
.inst-hero {
    margin-top: 64px;
    padding: 120px 48px;
    background: var(--navy);
    text-align: center;
}
.inst-hero-inner {
    max-width: 720px;
    margin: 0 auto;
}
.inst-hero .eyebrow {
    color: var(--coral);
}
.inst-hero h1 {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(32px, 4vw, 48px);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}
.inst-hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    max-width: 600px;
    margin: 0 auto 36px;
}

/* ─── PROBLEM SECTION ─── */
.inst-problem {
    padding: 120px 48px;
    background: var(--cream);
    border-bottom: 1px solid var(--rule);
}
.inst-problem-inner {
    max-width: 800px;
    margin: 0 auto;
}
.inst-problem h2 {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(28px, 3vw, 38px);
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 56px;
}
.inst-pain-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.inst-pain-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid var(--rule);
}
.inst-pain-item:first-child {
    border-top: 1px solid var(--rule);
}
.inst-pain-item .num {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 24px;
    color: var(--coral);
}
.inst-pain-item h3 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 6px;
}
.inst-pain-item p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.65;
}

/* ─── INSTITUTIONAL CALLOUT (for DFY page) ─── */
.inst-callout {
    padding: 72px 48px;
    background: var(--warm-gray);
    border-bottom: 1px solid var(--rule);
    text-align: center;
}
.inst-callout-inner {
    max-width: 640px;
    margin: 0 auto;
}
.inst-callout h3 {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(22px, 2.5vw, 28px);
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 16px;
}
.inst-callout p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 28px;
}

/* ─── RESPONSIVE: 768px ─── */
@media (max-width: 768px) {
    .inst-hero {
        padding: 80px 24px;
    }
    .inst-problem {
        padding: 80px 24px;
    }
    .inst-callout {
        padding: 56px 24px;
    }
}
