/* ===== Academics page — extends design tokens from style.css ===== */

/* Force Lato across this page's headings + body copy */
.academics-hero,
.academics-hero *,
.section,
.section * {
  font-family: 'Lato', sans-serif;
}

/* Hero — full-bleed uploadable photo with left-aligned text,
   mirrors the About/Contact page hero pattern */
.academics-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 460px;
  display: flex;
  align-items: center;
}
.academics-hero-media { position: absolute; inset: 0; }
.academics-hero-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.academics-hero-fallback {
  display: none;
  position: absolute; inset: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  color: var(--gold);
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
}
.academics-hero-fallback svg { width: 52px; height: 52px; }
.academics-hero-fallback span { font-size: 0.9rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #cfe0ee; }
.academics-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8,37,66,0.94) 0%, rgba(8,37,66,0.82) 38%, rgba(8,37,66,0.35) 62%, rgba(8,37,66,0.08) 100%);
}
.academics-hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 70px 24px 90px;
  text-align: left;
  box-sizing: border-box;
}
.academics-hero-inner .hero-text { max-width: 640px; margin-left: 0; margin-right: auto; }

/* "Academics" — now the big hero heading, matches Contact Us heading size/color */
.academics-hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(2.2rem, 8vw, 5.2rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 18px;
}
.academics-hero-eyebrow::before { content: none; display: none; }

/* Old title — now the smaller gold subheading, matches Contact hero subheading */
.academics-hero-title {
  font-family: 'Lato', sans-serif;
  font-weight: 800;
  font-size: clamp(1.25rem, 2.6vw, 1.65rem);
  color: var(--gold);
  line-height: 1.3;
  margin-bottom: 16px;
  max-width: 560px;
}
.academics-hero-lede { font-family: 'Lato', sans-serif; color: #d6e4f0; font-size: clamp(1.05rem, 1.6vw, 1.2rem); max-width: 560px; margin: 0; }

@media (max-width: 760px) {
  .academics-hero-inner { padding: 50px 20px 60px; }
}

/* Big centered eyebrows, no dash — used for Classes Offered / What We Offer / Prime Program / Pre-Primary Program */
.academics-eyebrow-xl {
  width: 100%;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: clamp(1.1rem, 2.6vw, 1.55rem);
}
.academics-eyebrow-xl::before { content: none; display: none; }

/* All section titles — bigger, matches Contact page heading treatment */
.section h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
}

/* Curriculum Highlights / Prime Program cards — bigger, pure-black body copy */
.academics-cards-black .card p { color: #000; font-size: 1.08rem; line-height: 1.75; }
.academics-cards-black .card h3 { font-size: 1.14rem; }

/* Prime Program — placeholder photo removed, text centered in the middle */
.prime-program-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.prime-lede { font-size: 1.08rem; color: #000; line-height: 1.8; }
.prime-program p { color: #000; font-size: 1.05rem; line-height: 1.8; }

/* Dimples pre-primary section — placeholder photo removed, text centered in the middle */
.dimples-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.dimples-content p { color: #000; font-size: 1.08rem; line-height: 1.8; }

@media (max-width: 760px) {
  .academics-eyebrow-xl { font-size: 1.15rem; }
}