/**
 * Academics & Innovation intro
 * Scoped to the "Academics and Innovation" parent page (page-parent-with-children.php).
 * Overrides the short-blurb .page-intro defaults so the longer overview copy,
 * common-characteristics bullets, program summaries, and the (placeholder) program
 * seals read as a proper left-aligned article on the slate bg-medium section.
 * Enqueued conditionally from functions.php (mdaa_enqueue_academics_intro).
 */

.academics-intro {
    text-align: left;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.8;
}

.academics-intro p {
    margin: 0 0 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.academics-intro p:last-child {
    margin-bottom: 0;
}

/* Lead program/institution name in each summary paragraph */
.academics-intro p strong {
    color: var(--gold-light, #E8D48A);
    font-weight: 600;
}

/* Gold "Outlook:" lead-in on the closing paragraph */
.academics-intro p strong.academics-outlook {
    color: var(--gold-primary, #C9A227);
    font-weight: 700;
}

/* Common-characteristics list — single-spaced between bullets */
.academics-intro ul {
    list-style: disc;
    text-align: left;
    max-width: 100%;
    margin: 1.25rem 0 1.5rem;
    padding-left: 1.4rem;
}

.academics-intro ul li {
    margin: 0 0 0.2rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
}

.academics-intro ul li:last-child {
    margin-bottom: 0;
}

/* ---- Program seals placeholder (real seals coming later) ---- */
.academics-seals {
    margin: 2.5rem 0 2.75rem;
    text-align: center;
}

.academics-seals h2 {
    color: var(--gold-primary, #C9A227);
    font-size: 1.4rem;
    margin: 0 0 1.25rem;
}

/* Radial layout: MDAA anchors the center, programs orbit it in
   older -> newer progression (USC/UH top corners, UA/ODU bottom
   corners, GCMC bottom-center below MDAA). */
.academics-seals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, auto);
    gap: 1.25rem 1.5rem;
    justify-items: center;
    align-items: center;
    max-width: 440px;
    margin: 0 auto;
}

.academics-seal--usc  { grid-column: 1; grid-row: 1; }
.academics-seal--uh   { grid-column: 3; grid-row: 1; }
.academics-seal--mdaa { grid-column: 2; grid-row: 2; }
.academics-seal--ua   { grid-column: 1; grid-row: 3; }
.academics-seal--odu  { grid-column: 3; grid-row: 3; }
.academics-seal--gcmc { grid-column: 2; grid-row: 4; }

/* Center MDAA seal is larger with a brighter ring to anchor the cluster */
.academics-seal--mdaa {
    width: 112px;
    height: 112px;
    font-size: 0.72rem;
    border-color: rgba(232, 212, 138, 0.7);
    color: rgba(255, 255, 255, 0.6);
}

.academics-seal {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 2px dashed rgba(232, 212, 138, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.4rem;
    font-size: 0.62rem;
    line-height: 1.25;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.academics-seals-caption {
    margin: 1rem 0 0;
    font-style: italic;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
    .academics-seals-grid {
        gap: 0.75rem 0.9rem;
        max-width: 320px;
    }
    .academics-seal {
        width: 72px;
        height: 72px;
        font-size: 0.55rem;
    }
    .academics-seal--mdaa {
        width: 88px;
        height: 88px;
        font-size: 0.62rem;
    }
}
