/* =========================================================
   ontdekspeelgoed.nl — Prentenboek direction (static build)
   Ported from design prototype, converted from React/JSX to
   semantic HTML. Real photos replace placeholder components.
   ========================================================= */

:root {
  /* Sabina's original palette */
  --sage: #8FA47A;
  --sage-dark: #5E6B4A;
  --sage-light: #BFD0A8;
  --butter: #F7D787;
  --butter-deep: #F4A93C;
  --olive: #5E6B4A;
  --olive-ink: #3E3A2A;
  --royal: #1E2BA6;
  --royal-dark: #141F7A;
  --cream: #FBF7EE;
  /* Kid's-book expansion */
  --coral: #E8785C;
  --coral-deep: #C85A42;
  --berry: #D4648A;
  --teal: #8FC4BC;
  --teal-deep: #5E948C;

  --ink: #3E3A2A;
  --muted: #6B6551;
  --line: #E6DDC7;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font-family: inherit; cursor: pointer; border: none; }

/* Sky animations — respect reduced-motion */
@keyframes pb-sun-spin   { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pb-sun-pulse  { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes pb-drift      { 0%,100% { transform: translate(0,0); } 50% { transform: translate(18px,-6px); } }
@keyframes pb-drift-alt  { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-22px,4px); } }
@keyframes pb-twinkle    { 0%,100% { opacity: 0.35; transform: scale(0.85) rotate(0deg); } 50% { opacity: 1; transform: scale(1.15) rotate(45deg); } }
@keyframes pb-bob        { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-10px) rotate(6deg); } }
.pb-anim { will-change: transform; }
.pb-anim-sun     { animation: pb-sun-pulse 4s ease-in-out infinite; }
.pb-anim-sun > svg { animation: pb-sun-spin 40s linear infinite; transform-origin: center; }
.pb-anim-cloud-1 { animation: pb-drift 9s ease-in-out infinite; }
.pb-anim-cloud-2 { animation: pb-drift-alt 11s ease-in-out infinite; }
.pb-anim-sparkle { animation: pb-twinkle 2.4s ease-in-out infinite; }
.pb-anim-star    { animation: pb-bob 5s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
  .pb-anim, .pb-anim-sun > svg { animation: none !important; }
}

/* Root */
.prentenboek {
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
}
.prentenboek h1, .prentenboek h2, .prentenboek h3 {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  color: var(--olive-ink);
  letter-spacing: -0.02em;
}
.prentenboek em {
  font-style: italic;
  color: var(--coral-deep);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
}

/* Nav */
.pb-nav {
  position: absolute; top: 0; left: 0; right: 0;
  max-width: 1440px; margin: 0 auto;
  padding: 22px 40px;
  display: flex; align-items: center; gap: 40px;
  z-index: 10;
}
.pb-brand {
  display: flex; align-items: center; gap: 12px;
  font-family: "Nunito", sans-serif;
  font-weight: 900; font-size: 17px;
  color: var(--olive-ink);
}
.pb-brand-logo { width: 44px; height: 44px; object-fit: contain; }
.pb-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 28px; flex: 1;
  font-size: 15px; font-weight: 700; color: var(--olive);
}
.pb-nav a:hover { color: var(--coral); }
.pb-nav-cta {
  background: var(--olive-ink); color: var(--cream);
  padding: 11px 22px; border-radius: 999px;
  font-weight: 800; font-size: 14px;
  transition: all 0.15s;
}
.pb-nav-cta:hover { background: var(--coral); }

/* Hero */
.pb-hero {
  position: relative;
  background: linear-gradient(180deg, #F0D98A 0%, #F7D787 45%, #BFD0A8 100%);
  overflow: hidden;
  min-height: 900px;
  padding: 100px 0 80px;
}
.pb-hero-scene {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
}
.pb-sky { position: absolute; inset: 0 0 40% 0; }
.pb-ground {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 180px;
}
.pb-sky > * { position: absolute; }

.pb-hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 60px 40px 0;
  text-align: center;
}
.pb-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--olive-ink);
  margin-bottom: 24px;
}
.pb-kicker-dot {
  width: 6px; height: 6px;
  background: var(--coral); border-radius: 50%;
}
.pb-h1 {
  font-size: clamp(52px, 8vw, 120px);
  line-height: 1.02; font-weight: 900;
  margin: 0 0 30px;
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
}
.pb-h1-line { display: block; }
.pb-h1-outline {
  -webkit-text-stroke: 3px var(--olive-ink);
  color: transparent; font-weight: 900;
}
.pb-lede {
  font-size: 19px; max-width: 580px;
  margin: 0 auto 40px;
  color: var(--olive-ink); line-height: 1.55;
}
.pb-hero-cta {
  display: flex; gap: 14px; justify-content: center;
  margin-bottom: 60px; flex-wrap: wrap;
}
.pb-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px;
  font-family: "Nunito", sans-serif;
  font-weight: 800; font-size: 15px;
  transition: all 0.15s;
}
.pb-btn-primary {
  background: var(--olive-ink); color: var(--cream);
  box-shadow: 0 6px 0 rgba(0,0,0,0.25);
}
.pb-btn-primary:hover { transform: translateY(2px); box-shadow: 0 4px 0 rgba(0,0,0,0.25); }
.pb-btn-primary.sm { padding: 12px 20px; font-size: 14px; }
.pb-btn-ghost {
  background: var(--cream); color: var(--olive-ink);
  border: 2px solid var(--olive-ink);
}
.pb-btn-ghost:hover { background: var(--olive-ink); color: var(--cream); }
.pb-btn-arrow { transition: transform 0.2s; }
.pb-btn:hover .pb-btn-arrow { transform: translateX(4px); }

/* Hero photo */
.pb-hero-photo-wrap {
  position: relative;
  max-width: 560px; margin: 0 auto;
}
.pb-hero-photo-wrap .pb-blob { position: absolute; z-index: 0; }
.pb-hero-photo {
  position: relative; z-index: 1;
  background: var(--cream);
  padding: 14px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.pb-hero-photo img {
  width: 100%; aspect-ratio: 16/10;
  object-fit: cover; border-radius: 8px;
  display: block;
}
.pb-hero-sticker {
  position: absolute; z-index: 2;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: "Nunito", sans-serif; font-weight: 900;
  color: var(--olive-ink); text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  border: 3px solid rgba(255,255,255,0.6);
}
.pb-sticker-yellow {
  top: -36px; right: -26px;
  width: 150px; height: 150px;
  background: var(--butter-deep);
  font-size: 17px; line-height: 1.1;
  transform: rotate(-12deg); padding: 10px;
}
.pb-sticker-coral {
  bottom: -20px; left: -20px;
  width: 70px; height: 70px;
  background: var(--coral);
  transform: rotate(15deg);
}
.pb-hero-caption {
  margin-top: 20px;
  font-family: "Caveat", cursive;
  font-size: 22px;
  color: var(--olive-ink);
  text-align: center;
}

/* Sections */
.pb-section {
  max-width: 1320px; margin: 0 auto;
  padding: 110px 40px;
}
.pb-section-head { max-width: 760px; margin-bottom: 60px; }
.pb-section-head.light h2, .pb-section-head.light p { color: var(--cream); }
.pb-chapter {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px;
}
.pb-chapter-num {
  font-family: "Fraunces", Georgia, serif;
  font-size: 28px; font-style: italic; font-weight: 400;
  color: var(--coral-deep);
}
.pb-chapter.light .pb-chapter-num { color: var(--butter); }
.pb-chapter-line { flex: 1; max-width: 60px; height: 2px; background: var(--olive); }
.pb-chapter.light .pb-chapter-line { background: var(--butter); }
.pb-chapter-title {
  font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--olive);
}
.pb-chapter.light .pb-chapter-title { color: var(--butter); }
.pb-section-head h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.02; font-weight: 900;
  margin: 0 0 16px;
}
.pb-section-head p {
  font-size: 18px; color: var(--muted);
  margin: 0; line-height: 1.55;
  max-width: 560px;
}

/* Ages */
.pb-age-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.pb-age-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 3px solid var(--olive-ink);
  box-shadow: 0 8px 0 var(--olive-ink);
  transition: all 0.2s;
  display: block;
}
.pb-age-card:hover { transform: translateY(-4px); box-shadow: 0 12px 0 var(--olive-ink); }
.pb-age-num {
  position: absolute; top: -6px; right: 14px;
  background: var(--color);
  color: var(--olive-ink);
  padding: 8px 14px;
  border-radius: 0 0 10px 10px;
  font-family: "Nunito", sans-serif;
  font-weight: 900; font-size: 20px;
  z-index: 2;
  min-width: 56px; text-align: center;
  border: 3px solid var(--olive-ink);
  border-top: 0;
}
.pb-age-photo { overflow: hidden; aspect-ratio: 1/1; }
.pb-age-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pb-age-body { padding: 16px 18px 20px; position: relative; }
.pb-age-body h3 { font-size: 17px; margin: 0 0 6px; line-height: 1.2; }
.pb-age-body p {
  font-size: 13.5px; color: var(--muted);
  margin: 0; line-height: 1.45; min-height: 60px;
}
.pb-age-arrow {
  display: inline-block;
  font-size: 20px; color: var(--color);
  font-weight: 900; margin-top: 8px;
  transition: transform 0.2s;
}
.pb-age-card:hover .pb-age-arrow { transform: translateX(6px); }

/* Toppers */
.pb-toppers {
  background: var(--olive-ink);
  padding: 120px 40px;
  position: relative; overflow: hidden;
}
.pb-toppers-bg {
  position: absolute; inset: 0;
  opacity: 0.6;
}
.pb-toppers-head-wrap { max-width: 1320px; margin: 0 auto 60px; position: relative; z-index: 1; }
.pb-topper-grid {
  position: relative; z-index: 1;
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.pb-topper {
  position: relative;
  background: var(--cream);
  border-radius: 20px;
  overflow: visible;
  transform: rotate(var(--tilt, 0deg));
  transition: transform 0.3s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.pb-topper:hover { transform: rotate(0) translateY(-8px); }
.pb-topper-sticker {
  position: absolute;
  top: -24px; left: -24px;
  width: 72px; height: 72px;
  background: var(--color); color: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: "Nunito", sans-serif;
  font-weight: 900; font-size: 22px;
  border: 4px solid var(--cream);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
  z-index: 2;
  transform: rotate(-12deg);
}
.pb-topper-photo {
  aspect-ratio: 4/3;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.pb-topper-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pb-topper-body { padding: 26px 26px 30px; }
.pb-topper-body h3 { font-size: 26px; margin: 0 0 10px; }
.pb-topper-body p {
  font-size: 15px; color: var(--muted);
  margin: 0 0 18px; line-height: 1.55;
}

/* Blog */
.pb-blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pb-blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid var(--olive-ink);
  box-shadow: 0 8px 0 var(--olive-ink);
  transition: all 0.2s;
  position: relative;
  display: block;
}
.pb-blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 0 var(--olive-ink); }
.pb-blog-number {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  background: var(--cream); color: var(--olive-ink);
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500; font-style: italic;
  font-size: 20px;
  border: 3px solid var(--olive-ink);
}
.pb-blog-photo { aspect-ratio: 16/10; overflow: hidden; }
.pb-blog-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pb-blog-body { padding: 24px 26px 28px; }
.pb-blog-meta {
  display: flex; gap: 14px;
  font-size: 12px; margin-bottom: 10px;
  text-transform: uppercase; letter-spacing: 0.08em;
  font-weight: 700;
}
.pb-blog-cat {
  background: var(--color); color: var(--olive-ink);
  padding: 3px 12px; border-radius: 999px;
}
.pb-blog-date { color: var(--muted); padding-top: 3px; }
.pb-blog-body h3 { font-size: 22px; margin: 0 0 14px; line-height: 1.25; }
.pb-blog-link {
  font-family: "Nunito", sans-serif;
  font-weight: 800; font-size: 14px;
  color: var(--color);
}

/* CTA */
.pb-cta {
  position: relative;
  background: var(--butter);
  padding: 90px 40px;
  text-align: center; overflow: hidden;
}
.pb-cta > svg { position: absolute; }
.pb-cta-inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.pb-cta h2 { font-size: clamp(40px, 5vw, 64px); line-height: 1.05; margin: 0 0 14px; }
.pb-cta p { font-size: 17px; color: var(--olive-ink); margin: 0 0 28px; }
.pb-cta form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.pb-cta input {
  flex: 1; min-width: 240px;
  padding: 16px 22px;
  border: 2px solid var(--olive-ink);
  border-radius: 999px;
  background: var(--cream);
  font-family: inherit; font-size: 15px;
  outline: none;
}

/* Footer */
.pb-footer {
  background: var(--olive-ink);
  color: var(--cream);
  padding: 80px 40px 40px;
}
.pb-footer-top {
  max-width: 1320px; margin: 0 auto 60px;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 60px;
}
.pb-footer-top h2 {
  font-family: "Nunito", sans-serif;
  font-size: clamp(50px, 7vw, 110px);
  line-height: 0.9;
  margin: 0; color: var(--cream); font-weight: 900;
}
.pb-footer-top em {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic; font-weight: 400;
  color: var(--butter);
}
.pb-ig-big {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--butter);
  color: var(--olive-ink);
  padding: 14px 24px;
  border-radius: 999px;
  font-family: "Nunito", sans-serif;
  font-weight: 800; font-size: 16px;
  transition: all 0.2s;
}
.pb-ig-big:hover { transform: translateX(4px); }
.pb-footer-grid {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.pb-footer-grid > div { display: flex; flex-direction: column; }
.pb-footer strong {
  color: var(--butter);
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.1em;
  display: block; margin-bottom: 16px;
}
.pb-footer a {
  display: block;
  font-size: 14.5px;
  opacity: 0.85; padding: 4px 0;
}
.pb-footer a:hover { opacity: 1; color: var(--butter); }
.pb-footer-bottom {
  max-width: 1320px; margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex; justify-content: space-between;
  font-size: 13px; opacity: 0.7;
  flex-wrap: wrap; gap: 12px;
}

/* =========================================================
   SUB-HERO (used on non-home pages)
   ========================================================= */
.sub-hero {
  position: relative;
  overflow: hidden;
  padding: 160px 40px 80px;
  border-bottom: 1px solid var(--line);
}
.sub-hero-inner {
  max-width: 960px; margin: 0 auto;
  text-align: center;
  position: relative; z-index: 1;
}
.sub-hero-h1 {
  font-family: "Nunito", sans-serif;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.02;
  font-weight: 900;
  color: var(--olive-ink);
  margin: 10px 0 18px;
  letter-spacing: -0.02em;
}
.sub-hero-h1 em {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--coral-deep);
}
.sub-hero-lede {
  font-size: 18px;
  color: var(--olive-ink);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.55;
}
.sub-hero .pb-chapter { justify-content: center; }
.sub-hero-doodle { position: absolute; pointer-events: none; }
.sub-hero-d1 { top: 40px; left: 7%; opacity: 0.9; }
.sub-hero-d2 { top: 80px; right: 10%; opacity: 0.85; }
.sub-hero-d3 { bottom: 40px; left: 15%; }
.post-date {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
}

/* =========================================================
   AGE PAGE
   ========================================================= */
.age-body { padding: 80px 40px 60px; }
.age-body-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px; align-items: start;
  max-width: 1100px; margin: 0 auto;
}
.age-body-photo {
  border: 3px solid var(--olive-ink);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 0 var(--olive-ink);
  aspect-ratio: 4/5;
}
.age-body-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.age-body-text p {
  font-size: 17px;
  color: var(--olive-ink);
  line-height: 1.65;
  margin: 0 0 18px;
}
.age-body-text .muted { color: var(--muted); font-size: 15.5px; }
.age-siblings { padding-top: 40px; padding-bottom: 80px; }

/* =========================================================
   POST ARTICLE
   ========================================================= */
.post-article {
  max-width: 780px;
  margin: 0 auto;
  padding: 20px 40px 80px;
}
.post-hero-photo {
  margin: -40px 0 48px;
  border: 3px solid var(--olive-ink);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 0 var(--olive-ink);
  aspect-ratio: 16/10;
}
.post-hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--olive-ink);
}
.post-body h2 {
  font-family: "Nunito", sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--olive-ink);
  margin: 40px 0 14px;
  letter-spacing: -0.015em;
}
.post-body h3 {
  font-family: "Nunito", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--olive-ink);
  margin: 32px 0 10px;
}
.post-body p { margin: 0 0 18px; }
.post-body a {
  color: var(--coral-deep);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color 0.15s;
}
.post-body a:hover { color: var(--olive-ink); }
.post-body ul, .post-body ol { padding-left: 22px; margin: 0 0 20px; }
.post-body li { margin-bottom: 8px; }
.post-body strong { color: var(--olive-ink); font-weight: 800; }
.post-body blockquote {
  border-left: 4px solid var(--coral);
  padding: 4px 0 4px 20px;
  margin: 24px 0;
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: var(--olive-ink);
}
.post-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 24px 0;
}
.post-body figure.post-figure {
  margin: 24px 0;
  border-radius: 12px;
  overflow: hidden;
}
.post-body figure.post-figure img { margin: 0; border-radius: 0; }
.post-body figure.post-figure figcaption {
  font-size: 14px;
  color: var(--muted);
  padding: 8px 12px;
  background: var(--cream);
  font-style: italic;
}
.post-body .alignleft {
  float: left; margin: 6px 24px 12px 0; max-width: 320px;
}
.post-body .alignright {
  float: right; margin: 6px 0 12px 24px; max-width: 320px;
}
.post-body .aligncenter {
  margin: 24px auto; text-align: center;
}
.post-body::after { content: ""; display: block; clear: both; }

.post-author {
  margin-top: 60px;
  padding: 26px;
  background: var(--butter);
  border-radius: 16px;
  display: flex; align-items: center; gap: 18px;
}
.post-author-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--cream);
  padding: 4px;
  flex-shrink: 0;
}
.post-author strong {
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  color: var(--olive-ink);
  display: block;
  margin-bottom: 2px;
}
.post-author span {
  font-size: 14.5px;
  color: var(--olive-ink);
  opacity: 0.85;
}

.related-posts { padding-top: 40px; padding-bottom: 80px; }
.pb-blog-link-wrap { display: block; color: inherit; }

/* =========================================================
   STATIC PAGE
   ========================================================= */
.static-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 40px 80px;
}
.static-body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--olive-ink);
}
.static-body h2, .static-body h3 {
  font-family: "Nunito", sans-serif;
  color: var(--olive-ink);
  margin: 32px 0 12px;
}
.static-body h2 { font-size: 28px; font-weight: 900; }
.static-body h3 { font-size: 22px; font-weight: 800; }
.static-body p { margin: 0 0 18px; }
.static-body a {
  color: var(--coral-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.static-body ul, .static-body ol { padding-left: 22px; margin: 0 0 20px; }
.static-body img { max-width: 100%; height: auto; border-radius: 12px; margin: 20px 0; }

/* Responsive for sub-pages */
@media (max-width: 960px) {
  .sub-hero { padding: 130px 24px 60px; }
  .age-body { padding: 50px 24px 40px; }
  .age-body-grid { grid-template-columns: 1fr; gap: 32px; }
  .post-article { padding: 10px 24px 60px; }
  .post-body { font-size: 17px; }
  .post-body .alignleft, .post-body .alignright { float: none; margin: 20px 0; max-width: 100%; }
  .static-page { padding: 30px 24px 60px; }
}

/* Responsive */
@media (max-width: 960px) {
  .pb-age-grid { grid-template-columns: repeat(2, 1fr); }
  .pb-topper-grid, .pb-blog-grid { grid-template-columns: 1fr; }
  .pb-footer-grid { grid-template-columns: 1fr 1fr; }
  .pb-footer-top { flex-direction: column; align-items: flex-start; }
  .pb-section { padding: 60px 24px; }
  .pb-toppers { padding: 70px 24px; }
  .pb-hero-content { padding: 50px 24px; }
  .pb-nav { flex-wrap: wrap; gap: 16px; padding: 16px 24px; }
  .pb-nav ul { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; gap: 18px; }
  .pb-hero { min-height: 0; padding-top: 140px; }
}
@media (max-width: 640px) {
  .pb-age-grid, .pb-footer-grid { grid-template-columns: 1fr; }
  .pb-h1 { font-size: clamp(44px, 14vw, 72px); }
  .pb-sticker-yellow { width: 90px; height: 90px; font-size: 12px; top: -20px; right: -10px; }
  .pb-chapter-num { font-size: 22px; }
}
