/* ============================================================
   approved-acupuncture-education-programs.css
   Styles specific to the approved programs page.
   Depends on variables defined in style.css.
============================================================ */

/* ============================================================
   FULL WIDTH CONTENT
   No sidebar on this page — content runs full width
   within the standard max-width container
============================================================ */
.programs-layout {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 40px 80px;
}

/* ============================================================
   CONTENT SECTIONS
   Reuses .content-section from style.css
============================================================ */

/* ============================================================
   PROGRAM CARDS
   One card per approved school
============================================================ */
.program-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 8px;
}

.program-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 4px solid var(--blue);
    border-radius: 0 0 8px 8px;
    padding: 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.program-card-city {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
}

.program-card-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    line-height: 1.3;
    flex: 1;
}

.program-card-status {
    font-size: 0.82rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 4px;
}


/* ============================================================
   MOBILE
============================================================ */
@media (max-width: 800px) {
    .programs-layout {
        padding: 24px 20px 60px;
    }
    .program-cards {
        grid-template-columns: 1fr;
    }
}
