/* Adventure with Alphabet — global Palatino typography
   Palatino is the primary book-series typeface and should be used consistently across all public-facing text. */

:root{
  --awa-font-palatino: "Palatino Linotype", "Book Antiqua", Palatino, "URW Palladio L", Georgia, serif;
}

html, body,
button, input, select, textarea, option, label,
nav, header, main, section, article, aside, footer,
h1, h2, h3, h4, h5, h6,
p, a, span, strong, em, small, blockquote, cite, figcaption,
ul, ol, li, dt, dd, table, th, td{
  font-family:var(--awa-font-palatino) !important;
}

button, input, select, textarea{
  font:inherit;
}

::placeholder{
  font-family:var(--awa-font-palatino) !important;
}

/* Preserve iconography: these elements are graphic/SVG based and do not need typeface overrides. */
svg, svg *{
  font-family:inherit;
}

/* 2026-09-05 — unified interior-page title scale.
   Keep the Home hero as its own larger brand statement; all regular public page
   titles use the same responsive size for a consistent visual hierarchy. */
.page-hero h1,
.journal-hero h1{
  font-size:clamp(2.2rem, 4vw, 3.75rem) !important;
}

/* 2026-09-05 — unified interior section-heading scale.
   Major section headings now share one responsive size across public pages,
   while book/post card titles retain their own smaller card hierarchy. */
.home-doc-section h2,
#catalog-recognition-title,
#home-learning-gallery-title,
#find-books-title,
.about-pastel-stack h2,
.activity-bank-heading h2,
.dictionary-learning-promo-copy h2,
.audiobook-learning-promo-copy h2,
.learning-youtube-library-heading h2,
.learning-cta h2,
.audiobook-clean-hero-copy h2,
.audiobook-library-heading h2,
.audiobook-page-return h2,
.dictionary-section-head h2,
.dictionary-books-heading h2,
.contact-cards h2,
.policy-copy h2 {
  font-size:clamp(1.85rem, 3vw, 2.5rem) !important;
  line-height:1.12 !important;
}

/* About page title restored as a visible, standard interior title. */
.about-page-title {
  text-align:center;
  padding-top:clamp(28px, 4vw, 54px);
  padding-bottom:clamp(18px, 2.4vw, 30px);
}
.about-page-title h1 { margin:0; }

/* Learning Corner — clean centered closing call-to-action. */
.learning-cta.learning-cta-centered {
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  gap:20px !important;
  text-align:center !important;
  padding-block:clamp(48px, 6vw, 78px) !important;
}
.learning-cta.learning-cta-centered > div:first-child {
  max-width:none !important;
  width:100%;
}
.learning-cta.learning-cta-centered h2 {
  margin:0 !important;
  white-space:nowrap;
}
.learning-cta.learning-cta-centered .learning-actions {
  justify-content:center !important;
  min-width:0 !important;
}
.dictionary-learning-promo-actions {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}

@media (max-width:760px) {
  .learning-cta.learning-cta-centered h2 { white-space:normal; }
  .dictionary-learning-promo-actions { justify-content:center; }
}

/* Section headings on book details, learning details, and journal-linked content
   use the same shared interior section scale. */
.book-learning-detail-box h2,
.managed-book-learning h2,
.book-youtube-heading h2,
.related-books .section-heading h2,
.learning-video-heading h2,
.learning-printable-box h2,
.journal-learning-cta h2 {
  font-size:clamp(1.85rem, 3vw, 2.5rem) !important;
  line-height:1.12 !important;
}


/* Additional section-heading consistency for journal empty states. */
.journal-shell > .section-shell > h2{font-size:clamp(1.85rem, 3vw, 2.5rem) !important;line-height:1.12 !important;}
