@import url('https://fonts.googleapis.com/css?family=Poppins:200,400,500,600,700,900');


/* ── Figma colour tokens ── */
  :root {
    --orange-400: #fb923c;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --slate-400:  #94a3b8;
    --slate-500:  #64748b;
    --zinc-100:   #f4f4f5;
    --zinc-200:   #e4e4e7;
    --zinc-600:   #52525b;
    --zinc-700:   #3f3f46;
    --zinc-900:   #18181b;
  }

  /* ── Page body override for white bg ── */
  body.pageblog #main {
    background: #ffffff;
  }

  /* ─────────────────────────────────────────
     ABOUT PAGE WRAPPER
     min-h-screen py-24 px-4 bg-white
  ───────────────────────────────────────── */
  .page-block, .entry-content > div{ width: auto;}
  .entry-header{ display: none;}
  .page-text-php .site-content .hentry{ padding-top: 0;}
  /* .page-text-php .site-content .entry-content p, .page-text-php .site-content .entry-content li{ font-size: 1.25em;} */
  .blog-page {
    background: #ffffff;
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
    font-family: 'Poppins', sans-serif;
    border-top: solid 4px var(--zinc-900);
  }
  .blog-inner {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
  }

 
  .blog-hero-section {
    text-align: center;
    margin-bottom: 3rem;
  }
  .blog-hero-section h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    /* letter-spacing: -0.05em; */
    margin-bottom: 2rem;
    color: var(--zinc-900);
    line-height: 1;
  }


  .page-text-php .site-content .entry-content h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--zinc-900);
    line-height: 1;
    text-align: left;
    text-transform: none;
  }
  .page-text-php .site-content .entry-content p {
    color: var(--zinc-700);
    line-height: 1.75;
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  