
:root {
  --navy: #0f1a2b;
  --gold: #c8a15a;
  --gold-soft: #ead9b8;
  --stone: #e6e8eb;
  --paper: #f7f7f8;
  --white: #ffffff;
  --text: #182235;
  --muted: #647084;
  --shadow: 0 16px 42px rgba(15, 26, 43, 0.08);
  --radius: 12px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 3px;
}

img { max-width: 100%; height: auto; }

.container {
  width: min(100% - 44px, var(--max-width));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--gold-soft);
  border-radius: var(--radius);
}

.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid rgba(15,26,43,0.08);
  backdrop-filter: blur(12px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: auto;
  height: 62px;
  max-width: 250px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 1.05vw, 18px);
  flex: 1 1 auto;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--navy);
  font-size: clamp(0.78rem, 0.84vw, 0.92rem);
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-link.active { color: var(--gold); }

.site-nav > .nav-link[href="connect.html"] { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  color: var(--navy);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(15,26,43,0.2);
}

.button-secondary:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.button-small,
.nav-cta {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 0.86rem;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  background: var(--navy);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 82px;
  background: var(--paper);
  border-bottom: 1px solid rgba(15,26,43,0.08);
}

.clean-home-hero {
  background:
    linear-gradient(90deg, rgba(247,247,248,0.99) 0%, rgba(247,247,248,0.94) 47%, rgba(235,224,205,0.7) 100%),
    radial-gradient(circle at 76% 35%, rgba(200,161,90,0.22), transparent 34%),
    var(--paper);
}

.hero-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.center { text-align: center; }

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy);
  line-height: 1.12;
}

h1 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.6rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

p { margin-top: 0; }

.hero-lead {
  max-width: 600px;
  color: #4f5c6e;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.clean-desk-hero {
  position: relative;
  min-height: 430px;
  border-radius: 24px;
  background:
    linear-gradient(150deg, rgba(255,255,255,0.25), rgba(247,247,248,0.1)),
    radial-gradient(circle at 45% 30%, rgba(200,161,90,0.25), transparent 30%);
}

.desk-globe-large {
  position: absolute;
  top: 30px;
  left: 40px;
  width: 250px;
  height: 250px;
  border: 3px solid rgba(200,161,90,0.45);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49%, rgba(200,161,90,0.25) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(200,161,90,0.25) 50%, transparent 51%),
    radial-gradient(circle, rgba(255,255,255,0.65), rgba(228,216,196,0.34));
  opacity: 0.78;
}

.desk-mug {
  position: absolute;
  bottom: 60px;
  left: 170px;
  display: grid;
  place-items: center;
  width: 116px;
  height: 96px;
  color: var(--gold);
  background: var(--navy);
  border-radius: 16px 16px 22px 22px;
  border: 1px solid rgba(200,161,90,0.35);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.7rem;
  box-shadow: 0 20px 45px rgba(15,26,43,0.16);
}

.desk-books {
  position: absolute;
  right: 22px;
  bottom: 68px;
  display: grid;
  gap: 8px;
  width: 310px;
}

.desk-books span {
  display: block;
  padding: 18px 24px;
  color: var(--gold-soft);
  background: linear-gradient(90deg, var(--navy), #1b2638);
  border: 1px solid rgba(200,161,90,0.38);
  border-radius: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 24px rgba(15,26,43,0.12);
}

.section {
  padding: 76px 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(247,247,248,0.96));
  border-top: 1px solid rgba(15,26,43,0.06);
  border-bottom: 1px solid rgba(15,26,43,0.06);
}

.intro-strip {
  padding: 50px 0 38px;
  text-align: center;
  background: var(--white);
}

.intro-strip h2 { margin-bottom: 8px; }
.intro-strip p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 58px;
  align-items: start;
}

.rich-text {
  color: #4f5c6e;
  font-size: 1.04rem;
}

.card-grid {
  display: grid;
  gap: 24px;
}

.three-column { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  padding: 30px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(15,26,43,0.10);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15,26,43,0.052);
}

.card p { color: var(--muted); }

.card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold);
  font-weight: 800;
}

.simple-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  color: var(--gold);
  background: rgba(200,161,90,0.11);
  border-radius: 50%;
  font-size: 1.7rem;
}

.book-feature-simple {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: 44px;
  align-items: center;
  padding: 36px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(15,26,43,0.98), rgba(15,26,43,0.94)),
    radial-gradient(circle at 10% 50%, rgba(200,161,90,0.18), transparent 30%);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(15,26,43,0.12);
}

.book-feature-simple h2,
.book-feature-simple h3,
.book-feature-simple .eyebrow {
  color: var(--white);
}

.book-feature-simple p {
  color: rgba(255,255,255,0.82);
}

.book-cover-image {
  display: block;
  width: 100%;
  max-width: 220px;
  border-radius: 8px;
  box-shadow: 0 20px 38px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.18);
}

.book-subhead {
  color: var(--gold-soft) !important;
  font-size: 1.1rem;
}

.book-note {
  padding-left: 34px;
  border-left: 1px solid rgba(255,255,255,0.18);
}

.inline-form {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(15,26,43,0.16);
  border-radius: 8px;
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.inline-form input {
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.24);
}

.inline-form input::placeholder { color: rgba(255,255,255,0.72); }

.form-note {
  margin-top: 10px;
  color: rgba(255,255,255,0.62) !important;
  font-size: 0.9rem;
}

.values-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 24px 0;
  background: var(--white);
  border: 1px solid rgba(15,26,43,0.09);
  border-radius: 18px;
}

.values-row div {
  padding: 10px 28px;
  border-right: 1px solid rgba(15,26,43,0.1);
}

.values-row div:last-child { border-right: 0; }

.values-row strong,
.values-row span {
  display: block;
}

.values-row strong {
  color: var(--navy);
  font-size: 1rem;
}

.values-row span {
  color: var(--muted);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 40px;
  background: var(--white);
  border: 1px solid rgba(15,26,43,0.10);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(15,26,43,0.05);
}

.cta-panel p { color: var(--muted); max-width: 760px; }

.simple-page-hero {
  padding: 82px 0 70px;
  background:
    linear-gradient(90deg, rgba(247,247,248,0.98), rgba(247,247,248,0.94)),
    radial-gradient(circle at 78% 30%, rgba(200,161,90,0.16), transparent 34%);
}

.simple-page-hero h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.quiet-visual {
  display: grid;
  gap: 12px;
  padding: 34px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(15,26,43,0.10);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15,26,43,0.052);
}

.quiet-visual span {
  display: block;
  padding: 16px 20px;
  color: var(--navy);
  background: rgba(200,161,90,0.09);
  border: 1px solid rgba(200,161,90,0.18);
  border-radius: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
}

.page-book-cover {
  justify-self: center;
  max-width: 280px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-cloud span {
  padding: 10px 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(15,26,43,0.10);
  border-radius: 999px;
  font-weight: 700;
}

.connect-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.75fr);
  gap: 28px;
  align-items: start;
}

.contact-form,
.contact-card {
  padding: 34px;
  background: var(--white);
  border: 1px solid rgba(15,26,43,0.10);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15,26,43,0.052);
}

.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  color: var(--navy);
  font-weight: 700;
}

.contact-card a {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.contact-card hr {
  margin: 26px 0;
  border: 0;
  border-top: 1px solid rgba(15,26,43,0.10);
}

.site-footer {
  padding: 56px 0 24px;
  color: rgba(255,255,255,0.84);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, 1fr);
  gap: 34px;
}

.footer-logo {
  max-width: 220px;
  filter: brightness(0) invert(1);
}

.site-footer h2 {
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer li { margin-bottom: 9px; }

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.62);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

@media (max-width: 1120px) {
  .brand-logo { height: 56px; }
  .nav-shell { min-height: 80px; }
  .site-nav { gap: 9px; }
  .nav-link { font-size: 0.76rem; }
  .nav-cta { padding: 9px 12px; font-size: 0.78rem; }
}

@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    top: 78px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--stone);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open { display: flex; }
  .site-nav > .nav-link[href="connect.html"] { display: inline-flex; }
  .site-nav .nav-cta { display: none; }

  .nav-link { min-height: 42px; font-size: 1rem; }
  .nav-link::after { bottom: 4px; }

  .brand-logo { height: 50px; }
  .hero-grid,
  .page-hero-grid,
  .split-layout,
  .connect-grid {
    grid-template-columns: 1fr;
  }

  .book-feature-simple {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .book-note {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.18);
    padding-top: 24px;
  }

  .three-column,
  .values-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .values-row div {
    border-right: 0;
    border-bottom: 1px solid rgba(15,26,43,0.1);
  }

  .values-row div:last-child { border-bottom: 0; }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .clean-desk-hero { min-height: 320px; }
  .desk-globe-large { width: 170px; height: 170px; left: 18px; }
  .desk-mug { left: 110px; bottom: 38px; width: 90px; height: 76px; }
  .desk-books { right: 10px; bottom: 42px; width: 220px; }
  .desk-books span { font-size: 1.05rem; padding: 13px 16px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 30px, var(--max-width)); }
  .brand-logo { height: 44px; max-width: 198px; }
  .hero, .page-hero { padding: 64px 0 54px; }
  h1 { font-size: clamp(2.55rem, 15vw, 4rem); }
  h2 { font-size: clamp(1.85rem, 9vw, 2.7rem); }
  .section { padding: 54px 0; }
  .inline-form { flex-direction: column; }
  .book-feature-simple, .contact-form, .contact-card, .cta-panel { padding: 26px; }
}


/* Homepage content update from user PDF comments */
.hero-story {
  max-width: 640px;
  margin-top: 18px;
  color: #4f5c6e;
}

.hero-story p {
  margin-bottom: 10px;
}

.clean-home-hero h1 {
  max-width: 760px;
}

.desk-journal {
  position: absolute;
  right: 190px;
  bottom: 38px;
  width: 250px;
  height: 125px;
  background:
    linear-gradient(135deg, rgba(90,61,38,0.95), rgba(132,91,56,0.92)),
    linear-gradient(90deg, transparent 0 48%, rgba(255,255,255,0.12) 49% 51%, transparent 52%);
  border: 1px solid rgba(200,161,90,0.24);
  border-radius: 14px;
  transform: rotate(-2deg);
  box-shadow: 0 22px 40px rgba(15,26,43,0.13);
}

.intro-strip p:not(.eyebrow) + p {
  margin-top: 8px;
}

.calm-cards .card p + p {
  margin-top: -2px;
}

.book-feature-simple {
  grid-template-columns: 190px minmax(0, 1.05fr) minmax(250px, 0.75fr);
}

.book-feature-simple .book-copy p {
  margin-bottom: 10px;
}

.final-cta-section {
  padding-top: 54px;
  padding-bottom: 44px;
}

.simple-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.94), rgba(255,255,255,0.98)),
    radial-gradient(circle at 92% 10%, rgba(200,161,90,0.15), transparent 30%);
  border-left: 4px solid var(--gold);
}

/* Premium light footer redesign */
.site-footer.light-footer {
  padding: 58px 0 24px;
  color: var(--text);
  background: var(--paper);
  border-top: 1px solid rgba(15,26,43,0.10);
}

.light-footer .footer-grid {
  align-items: start;
}

.light-footer .footer-brand {
  max-width: 440px;
}

.light-footer .footer-logo {
  max-width: 240px;
  filter: none;
}

.light-footer .footer-tagline {
  margin-top: 18px;
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.light-footer p {
  color: var(--muted);
}

.light-footer h2 {
  color: var(--navy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.light-footer a {
  color: var(--text);
}

.light-footer a:hover {
  color: var(--gold);
}

.light-footer .footer-bottom {
  margin-top: 38px;
  padding-top: 18px;
  color: var(--muted);
  border-top: 2px solid rgba(200,161,90,0.35);
}

.light-footer .footer-bottom p {
  color: var(--muted);
}

@media (max-width: 980px) {
  .book-feature-simple {
    grid-template-columns: 1fr;
  }

  .desk-journal {
    right: 92px;
    bottom: 24px;
    width: 190px;
    height: 100px;
  }

  .light-footer .footer-logo {
    max-width: 220px;
  }
}

@media (max-width: 640px) {
  .desk-journal {
    display: none;
  }
}


/* Request update: homepage hero, CTA, and footer redesign */
.photo-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-frame {
  position: relative;
  width: 100%;
  max-width: 640px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.82));
  border: 1px solid rgba(15,26,43,0.08);
  border-radius: 30px;
  box-shadow: 0 24px 48px rgba(15,26,43,0.10);
}

.hero-visual-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.reworked-home-cta {
  position: relative;
  align-items: center;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(110deg, rgba(255,255,255,0.98), rgba(248,246,241,0.98));
  border: 1px solid rgba(15,26,43,0.10);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(15,26,43,0.06);
}

.reworked-home-cta::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--gold), #d8bc89);
}

.cta-copy-block {
  flex: 1 1 auto;
  padding: 46px 44px 46px 52px;
}

.cta-copy-block h2 {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: clamp(2.35rem, 4vw, 4rem);
}

.cta-copy-block p:last-child {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.cta-action-block {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  align-self: stretch;
  padding: 32px 40px;
  background: linear-gradient(180deg, rgba(15,26,43,0.02), rgba(15,26,43,0.05));
  border-left: 1px solid rgba(15,26,43,0.08);
}

.cta-action-block .button {
  min-width: 150px;
}

.refined-footer {
  padding-top: 64px;
}

.refined-footer-grid {
  grid-template-columns: minmax(300px, 1.4fr) repeat(3, minmax(140px, 1fr));
  gap: 46px;
}

.refined-footer .footer-brand p {
  max-width: 360px;
}

.footer-bottom-centered {
  text-align: center;
}

.footer-bottom-centered p {
  margin: 0;
}

@media (max-width: 980px) {
  .cta-copy-block {
    padding: 34px 28px 20px;
  }

  .cta-action-block {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    padding: 0 28px 28px;
    background: transparent;
    border-left: 0;
  }

  .refined-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* APPROVED HERO IMAGE - final merged visual */
.hero-home,
.clean-home-hero {
  background:
    linear-gradient(90deg, rgba(247,247,248,1) 0%, rgba(247,247,248,0.98) 43%, rgba(239,230,215,0.72) 100%),
    var(--paper);
}

@media (min-width: 981px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(660px, 1.14fr);
    gap: 18px;
    align-items: center;
  }

  .hero-copy {
    position: relative;
    z-index: 3;
  }
}

.approved-hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 560px;
  overflow: visible;
}

.approved-hero-image::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -115px;
  z-index: 2;
  width: 260px;
  background: linear-gradient(90deg, var(--paper) 0%, rgba(247,247,248,0.86) 34%, rgba(247,247,248,0.38) 64%, rgba(247,247,248,0) 100%);
  pointer-events: none;
}

.approved-hero-image img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 940px);
  height: 560px;
  object-fit: cover;
  object-position: center center;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: translateX(0);
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .approved-hero-image {
    min-height: auto;
    justify-content: center;
    overflow: hidden;
  }

  .approved-hero-image::before {
    display: none;
  }

  .approved-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 18px !important;
    transform: none;
  }
}


/* ABOUT PAGE REDESIGN - based on approved attached content */
.about-hero-redesign {
  position: relative;
  overflow: hidden;
  padding: 84px 0 70px;
  background:
    linear-gradient(90deg, rgba(247,247,248,0.99) 0%, rgba(247,247,248,0.98) 44%, rgba(255,255,255,0.88) 100%),
    radial-gradient(circle at 82% 18%, rgba(200,161,90,0.12), transparent 35%),
    var(--paper);
  border-bottom: 1px solid rgba(15,26,43,0.06);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 56px;
  align-items: center;
}


.about-hero-copy {
  position: relative;
  z-index: 2;
}

.about-hero-copy h1 {
  max-width: 500px;
  margin-bottom: 26px;
  font-size: clamp(3rem, 5.2vw, 5rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}


.about-lead {
  max-width: 560px;
  margin-bottom: 14px;
  color: var(--text);
  font-size: 1.22rem;
  line-height: 1.62;
}

.about-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}

.about-tag-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  min-height: 54px;
  padding: 12px 24px;
  color: var(--navy);
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(200,161,90,0.42);
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(15,26,43,0.035);
}

.about-portrait-wrap {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.about-portrait-wrap img {
  display: block;
  width: min(100%, 760px);
  height: auto;
  max-height: 620px;
  object-fit: contain;
  object-position: center;
  background: transparent;
  mix-blend-mode: multiply;
  opacity: 0.96;
  filter: grayscale(1) contrast(1.04);
  mask-image: none;
}


.about-story-section {
  padding: 70px 0 34px;
  background: var(--paper);
}

.about-why-section {
  padding-top: 34px;
}

.about-story-row {
  display: grid;
  grid-template-columns: 110px 1px minmax(0, 760px);
  gap: 54px;
  align-items: center;
}

.about-story-icon {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  color: var(--gold);
  background: rgba(255,255,255,0.90);
  border: 1px solid rgba(15,26,43,0.06);
  border-radius: 50%;
  box-shadow: 0 18px 36px rgba(15,26,43,0.075);
  font-size: 2.2rem;
  line-height: 1;
}

.about-story-line {
  width: 1px;
  min-height: 220px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

.about-story-copy h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 3.8vw, 3.7rem);
  line-height: 1.08;
}

.about-story-copy p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.7;
}

.about-values-redesign {
  padding: 58px 0 76px;
  background: var(--paper);
}

.about-belief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1040px;
  margin: 0 auto 30px;
}

.about-belief-card {
  min-height: 150px;
  padding: 34px 28px;
  text-align: center;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(15,26,43,0.08);
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(15,26,43,0.065);
}

.about-belief-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 2.5rem;
  line-height: 1;
}

.about-belief-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  line-height: 1.2;
}

.about-closing-line {
  position: relative;
  width: min(360px, 70%);
  height: 1px;
  margin: 0 auto 16px;
  background: linear-gradient(90deg, transparent, rgba(200,161,90,0.9), transparent);
}

.about-closing-line span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  background: var(--gold);
  transform: translate(-50%, -50%) rotate(45deg);
}

.about-closing-text {
  max-width: 760px;
  margin: 0 auto;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.32;
  text-align: center;
}

@media (max-width: 980px) {
  .about-hero-grid,
  .about-story-row,
  .about-belief-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-grid {
    gap: 32px;
  }

  .about-hero-copy {
    max-width: 100%;
    padding-right: 0;
  }

  .about-hero-copy h1 {
    max-width: 100%;
  }

  .about-portrait-wrap {
    min-height: 460px;
  }

  .about-portrait-wrap img {
    width: min(100%, 780px);
    height: auto;
    transform: none;
  }

  .about-story-line {
    display: none;
  }

  .about-story-icon {
    margin-bottom: 6px;
  }
}

@media (max-width: 700px) {
  .about-hero-redesign {
    padding: 62px 0 48px;
  }

  .about-hero-copy h1 {
    font-size: clamp(2.8rem, 14vw, 4.8rem);
  }

  .about-lead {
    font-size: 1.08rem;
  }

  .about-tag-row {
    gap: 12px;
  }

  .about-tag-row span {
    min-width: 110px;
    min-height: 48px;
    padding: 10px 18px;
  }

  .about-portrait-wrap {
    min-height: 360px;
  }
}

/* ABOUT HERO FINAL VISUAL TUNE */
.about-hero-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 28px;
  align-items: stretch;
}

.about-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
  padding-right: 12px;
  overflow: hidden;
}

.about-hero-copy h1 {
  max-width: 560px;
}

.about-portrait-wrap {
  min-height: 640px;
  align-self: stretch;
  overflow: hidden;
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(250,249,247,0.98) 0%, rgba(248,247,245,0.98) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-portrait-wrap img {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center center;
  transform: scale(1.045);
  display: block;
}

/* EDUCATION ADVISORY PAGE REDESIGN */
.advisory-hero-redesign {
  position: relative;
  overflow: hidden;
  padding: 72px 0 44px;
  background:
    linear-gradient(90deg, rgba(247,247,248,1) 0%, rgba(247,247,248,0.98) 44%, rgba(255,255,255,0.9) 100%),
    radial-gradient(circle at 82% 16%, rgba(200,161,90,0.12), transparent 35%),
    var(--paper);
  border-bottom: 1px solid rgba(15,26,43,0.06);
}

.advisory-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: center;
}

.advisory-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.advisory-hero-copy h1 {
  max-width: 650px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 4.8vw, 4.7rem);
  line-height: 1.06;
  letter-spacing: -0.052em;
}

.advisory-lead {
  max-width: 560px;
  margin-bottom: 16px;
  color: var(--text);
  font-size: 1.13rem;
  line-height: 1.66;
}

.advisory-actions {
  margin-top: 24px;
}

.advisory-actions .button {
  min-height: 54px;
  padding-inline: 26px;
  border-radius: 8px;
}

.advisory-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.advisory-tag-row span {
  display: inline-flex;
  min-width: 130px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  color: var(--navy);
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(200,161,90,0.44);
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(15,26,43,0.035);
}

.advisory-portrait-wrap {
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.advisory-portrait-wrap img {
  display: block;
  width: 100%;
  max-width: 790px;
  height: auto;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  opacity: 0.96;
  filter: grayscale(1) contrast(1.04);
}

.advisory-services-redesign {
  padding: 54px 0 42px;
  background: var(--paper);
}

.advisory-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.advisory-service-card {
  min-height: 250px;
  padding: 36px 32px;
  text-align: center;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,26,43,0.08);
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(15,26,43,0.06);
}

.advisory-card-icon {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 3rem;
  line-height: 1;
}

.advisory-service-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.16;
}

.advisory-service-card p {
  max-width: 280px;
  margin: 0 auto;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.55;
}

.advisory-process-redesign {
  padding: 42px 0 46px;
  background: var(--paper);
}

.advisory-process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 56px;
  align-items: center;
}

.advisory-process-copy h2 {
  max-width: 480px;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 3.6vw, 3.6rem);
  line-height: 1.06;
}

.advisory-process-copy p {
  max-width: 520px;
  margin-bottom: 6px;
  color: var(--text);
  line-height: 1.55;
}

.advisory-step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.advisory-step-list article {
  position: relative;
  text-align: center;
}

.advisory-step-list article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -28px;
  width: 56px;
  height: 1px;
  background: rgba(200,161,90,0.62);
}

.advisory-step-list span {
  display: grid;
  width: 82px;
  height: 82px;
  margin: 0 auto 16px;
  place-items: center;
  color: var(--gold);
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(15,26,43,0.06);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(15,26,43,0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.advisory-step-list h3 {
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.advisory-step-list p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
}

.advisory-mini-cta-section {
  padding: 16px 0 56px;
  background: var(--paper);
}

.advisory-mini-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 28px 34px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(15,26,43,0.08);
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(15,26,43,0.055);
}

.advisory-mini-left {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: center;
}

.advisory-mini-left span {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(200,161,90,0.48);
  border-radius: 50%;
  font-size: 2rem;
}

.advisory-mini-left p,
.advisory-mini-right p {
  margin: 0;
  color: var(--text);
  line-height: 1.55;
}

.advisory-mini-right {
  padding-left: 34px;
  border-left: 1px solid rgba(15,26,43,0.12);
}

.advisory-mini-right h2 {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 2.3vw, 2.3rem);
  line-height: 1.1;
}

.advisory-mini-cta .button {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .advisory-hero-grid,
  .advisory-process-grid,
  .advisory-mini-cta {
    grid-template-columns: 1fr;
  }

  .advisory-portrait-wrap {
    min-height: auto;
  }

  .advisory-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .advisory-step-list {
    grid-template-columns: 1fr;
  }

  .advisory-step-list article:not(:last-child)::after {
    display: none;
  }

  .advisory-mini-right {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 700px) {
  .advisory-hero-redesign {
    padding: 58px 0 36px;
  }

  .advisory-hero-copy h1 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }

  .advisory-card-grid {
    grid-template-columns: 1fr;
  }

  .advisory-tag-row {
    gap: 12px;
  }

  .advisory-tag-row span {
    flex: 1 1 30%;
    min-width: 105px;
  }

  .advisory-mini-left {
    grid-template-columns: 1fr;
  }
}


/* EDTECH PAGE REDESIGN */
.edtech-hero-redesign {
  position: relative;
  overflow: hidden;
  padding: 72px 0 56px;
  background:
    linear-gradient(90deg, rgba(247,247,248,1) 0%, rgba(247,247,248,0.985) 43%, rgba(255,255,255,0.92) 100%),
    radial-gradient(circle at 84% 16%, rgba(200,161,90,0.10), transparent 36%),
    var(--paper);
  border-bottom: 1px solid rgba(15,26,43,0.06);
}

.edtech-hero-redesign .container,
.edtech-perspective-redesign .container {
  width: min(100% - 40px, 1320px);
}

.edtech-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px minmax(0, 1.08fr);
  gap: 30px;
  align-items: center;
}

.edtech-hero-copy {
  max-width: 590px;
  position: relative;
  z-index: 2;
}

.edtech-hero-copy h1 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(2.95rem, 5.15vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.058em;
}

.edtech-lead {
  max-width: 520px;
  margin-bottom: 16px;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.68;
}

.edtech-small-rule {
  width: 58px;
  height: 2px;
  margin: 24px 0 20px;
  background: var(--gold);
}

.edtech-mid-list {
  display: grid;
  gap: 26px;
  padding-left: 28px;
  border-left: 1px solid rgba(15,26,43,0.16);
}

.edtech-mid-list div {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--navy);
}

.edtech-mid-list span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--gold);
  background: rgba(255,255,255,0.82);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(15,26,43,0.06);
  font-size: 1.35rem;
}

.edtech-mid-list strong {
  font-size: 0.98rem;
}

.edtech-portrait-wrap {
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.edtech-portrait-wrap img {
  display: block;
  width: 117%;
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: center center;
  mix-blend-mode: multiply;
  opacity: 0.98;
  filter: grayscale(1) contrast(1.03);
}

.edtech-perspective-redesign {
  padding: 74px 0 82px;
  background: var(--paper);
  overflow-x: hidden;
}

.edtech-perspective-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.64fr) minmax(210px, 0.42fr) minmax(720px, 1.95fr);
  gap: 24px;
  align-items: start;
}


.edtech-perspective-title h2 {
  max-width: 360px;
  margin-bottom: 0;
  font-size: clamp(2.15rem, 2.85vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  overflow-wrap: normal;
}


.edtech-perspective-copy {
  padding-top: 78px;
  max-width: 300px;
}


.edtech-perspective-copy p {
  color: var(--text);
  font-size: 1.0rem;
  line-height: 1.72;
  margin-bottom: 10px;
}

.edtech-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(170px, 1fr));
  gap: 20px;
}


.edtech-card {
  min-height: 314px;
  padding: 30px 28px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(15,26,43,0.07);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(15,26,43,0.06);
}


.edtech-card span {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--gold);
  background: rgba(200,161,90,0.10);
  border-radius: 50%;
  font-size: 1.65rem;
}

.edtech-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.18rem, 1.42vw, 1.62rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  overflow-wrap: normal;
}


.edtech-card p {
  margin: 0;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.56;
}


@media (max-width: 1240px) {
  .edtech-hero-redesign .container,
  .edtech-perspective-redesign .container {
    width: min(100% - 40px, 1180px);
  }

  .edtech-hero-grid {
    grid-template-columns: minmax(0, 0.95fr) 150px minmax(0, 1.05fr);
  }

  .edtech-portrait-wrap {
    min-height: 590px;
  }

  .edtech-perspective-grid {
    grid-template-columns: minmax(250px, 0.62fr) minmax(200px, 0.40fr) minmax(650px, 1.9fr);
  }
}

@media (max-width: 1100px) {
  .edtech-hero-grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  }

  .edtech-mid-list {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    flex-wrap: wrap;
    border-left: 0;
    padding-left: 0;
  }

  .edtech-portrait-wrap {
    min-height: 520px;
  }

  .edtech-portrait-wrap img {
    width: 108%;
  }

  .edtech-perspective-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .edtech-perspective-copy {
    padding-top: 0;
    max-width: 560px;
  }

  .edtech-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .edtech-hero-redesign {
    padding: 58px 0 42px;
  }

  .edtech-hero-redesign .container,
  .edtech-perspective-redesign .container {
    width: min(100% - 28px, 100%);
  }

  .edtech-hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .edtech-hero-copy h1 {
    font-size: clamp(2.35rem, 11vw, 3.9rem);
  }

  .edtech-portrait-wrap {
    min-height: auto;
  }

  .edtech-portrait-wrap img {
    width: 100%;
  }

  .edtech-mid-list {
    gap: 14px;
  }

  .edtech-perspective-title h2 {
    font-size: clamp(2.1rem, 8.6vw, 3rem);
  }

  .edtech-card-grid {
    grid-template-columns: 1fr;
  }
}


/* EDTECH CARD WIDTH FINAL TUNE */
@media (min-width: 1101px) {
  .edtech-perspective-redesign .container {
    width: min(100% - 36px, 1380px);
  }

  .edtech-perspective-grid {
    grid-template-columns: minmax(250px, 0.62fr) minmax(200px, 0.40fr) minmax(760px, 1.98fr);
    gap: 24px;
  }

  .edtech-card-grid {
    grid-template-columns: repeat(4, minmax(178px, 1fr));
    gap: 20px;
  }

  .edtech-card {
    padding-left: 30px;
    padding-right: 30px;
  }
}


/* EDTECH PERSPECTIVE FINAL ALIGNMENT FIX */
@media (min-width: 1101px) {
  .edtech-perspective-redesign .container {
    width: min(100% - 36px, 1440px);
  }

  .edtech-perspective-grid {
    grid-template-columns: 420px 260px minmax(760px, 1fr);
    gap: 32px;
    align-items: start;
  }

  .edtech-perspective-title {
    max-width: 420px;
  }

  .edtech-perspective-title h2 {
    max-width: 410px;
    overflow-wrap: normal;
  }

  .edtech-perspective-copy {
    max-width: 260px;
    padding-top: 78px;
  }

  .edtech-card-grid {
    justify-self: end;
    width: 100%;
    grid-template-columns: repeat(4, minmax(182px, 1fr));
    gap: 22px;
  }
}


/* WRITING BOOKS PAGE REDESIGN */
.writing-hero-redesign {
  position: relative;
  overflow: hidden;
  padding: 70px 0 28px;
  background:
    linear-gradient(90deg, rgba(247,247,248,1) 0%, rgba(247,247,248,0.98) 44%, rgba(255,255,255,0.92) 100%),
    radial-gradient(circle at 82% 14%, rgba(200,161,90,0.10), transparent 36%),
    var(--paper);
}

.writing-hero-redesign .container,
.writing-book-feature-redesign .container,
.writing-themes-redesign .container {
  width: min(100% - 44px, 1260px);
}

.writing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
}

.writing-hero-copy {
  max-width: 660px;
  position: relative;
  z-index: 2;
}

.writing-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.2vw, 5.4rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.writing-small-rule {
  width: 58px;
  height: 2px;
  margin: 22px 0 20px;
  background: var(--gold);
}

.writing-hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 5px;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.58;
}

.writing-portrait-wrap {
  min-height: 530px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.writing-portrait-wrap img {
  display: block;
  width: 100%;
  max-width: 790px;
  height: auto;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  opacity: 0.96;
  filter: grayscale(1) contrast(1.04);
}

.writing-book-feature-redesign {
  padding: 18px 0 18px;
  background: var(--paper);
}

.writing-book-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 58px;
  align-items: center;
}

.writing-book-cover {
  display: flex;
  align-items: center;
  justify-content: center;
}

.writing-book-cover img {
  display: block;
  width: min(100%, 430px);
  height: auto;
  filter: drop-shadow(0 26px 34px rgba(15,26,43,0.14));
}

.writing-book-copy {
  max-width: 760px;
}

.writing-book-copy h2 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(2.1rem, 3.2vw, 3.25rem);
  line-height: 1.08;
}

.writing-book-copy p {
  margin-bottom: 5px;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.52;
}

.writing-book-copy .button {
  margin-top: 18px;
  min-width: 170px;
}

.writing-themes-redesign {
  padding: 12px 0 70px;
  background: var(--paper);
  text-align: center;
}

.centered-eyebrow {
  text-align: center;
}

.writing-themes-redesign h2 {
  max-width: 760px;
  margin: 0 auto 22px;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  line-height: 1.12;
}

.writing-theme-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  max-width: 1020px;
  margin: 0 auto;
}

.writing-theme-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 118px;
  padding: 24px 28px;
  text-align: left;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,26,43,0.07);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(15,26,43,0.055);
}

.writing-theme-card span {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  color: var(--gold);
  background: rgba(200,161,90,0.10);
  border-radius: 50%;
  font-size: 1.85rem;
}

.writing-theme-card h3 {
  margin-bottom: 6px;
  font-size: 1.25rem;
}

.writing-theme-card p {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .writing-hero-grid,
  .writing-book-grid,
  .writing-theme-grid {
    grid-template-columns: 1fr;
  }

  .writing-portrait-wrap {
    min-height: auto;
  }

  .writing-book-grid {
    gap: 34px;
  }
}

@media (max-width: 700px) {
  .writing-hero-redesign {
    padding: 56px 0 30px;
  }

  .writing-hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 3.9rem);
  }

  .writing-theme-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .writing-theme-card span {
    margin: 0 auto;
  }
}

/* GlobioHub language selector - Google-free translate plugin */
.translate-widget {
  display: inline-flex;
  position: relative;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
}

.translate-label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.translate-select {
  min-height: 36px;
  max-width: 100px;
  padding: 7px 28px 7px 10px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 26, 43, 0.16);
  border-radius: 999px;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
}

.translate-widget.is-loading .translate-select {
  opacity: 0.7;
}

.translate-status {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  padding: 4px 8px;
  color: var(--navy);
  background: var(--gold-light);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(15, 26, 43, 0.12);
}

.translate-status:empty {
  display: none;
}

@media (max-width: 980px) {
  .translate-widget {
    width: 100%;
    margin: 12px 0 2px;
    justify-content: space-between;
  }

  .translate-select {
    width: 100%;
    max-width: none;
  }

  .translate-status {
    right: auto;
    left: 0;
  }
}



/* GlobioHub podcast additions */
.podcast-hero {
  padding: 88px 0 72px;
  background:
    radial-gradient(circle at 78% 20%, rgba(205, 145, 35, 0.14), transparent 32%),
    linear-gradient(135deg, #fffaf0 0%, #ffffff 52%, #f6f8fb 100%);
}

.podcast-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 54px;
  align-items: center;
}

.podcast-hero-copy h1 {
  max-width: 780px;
}

.podcast-hero-art img,
.podcast-cover-wrap img,
.podcast-mini-panel img,
.article-audio-feature img {
  width: 100%;
  display: block;
  border-radius: 28px;
  box-shadow: 0 22px 54px rgba(15, 26, 43, 0.14);
}

.podcast-section {
  background: #ffffff;
}

.podcast-episode-card,
.podcast-mini-panel,
.article-audio-feature {
  display: grid;
  gap: 34px;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(15, 26, 43, 0.10);
  border-radius: 32px;
  box-shadow: 0 18px 48px rgba(15, 26, 43, 0.08);
}

.podcast-episode-card {
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  padding: 34px;
}

.podcast-mini-panel {
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  padding: 34px;
}

.podcast-mini-panel img {
  max-width: 440px;
  justify-self: end;
}

.podcast-player {
  width: 100%;
  margin: 18px 0 12px;
}

.compact-player {
  max-width: 620px;
}

.podcast-action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}

.podcast-next-panel {
  max-width: 860px;
  text-align: center;
}

.article-audio-feature {
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.6fr);
  padding: 26px;
  margin-bottom: 34px;
  background: linear-gradient(135deg, #ffffff 0%, #fffaf0 100%);
}

.article-audio-feature img {
  max-width: 260px;
  justify-self: end;
  border-radius: 20px;
}

.blogs-podcast-feature {
  padding-top: 64px;
  padding-bottom: 24px;
}

.home-podcast-feature {
  padding-top: 22px;
}

@media (max-width: 900px) {
  .podcast-hero-grid,
  .podcast-episode-card,
  .podcast-mini-panel,
  .article-audio-feature {
    grid-template-columns: 1fr;
  }

  .podcast-mini-panel img,
  .article-audio-feature img {
    justify-self: start;
    max-width: 100%;
  }
}


/* GlobioHub podcast additions - 6 episode version */
.podcast-hero {
  padding: 88px 0 72px;
  background: radial-gradient(circle at 78% 20%, rgba(205, 145, 35, 0.13), transparent 34%), linear-gradient(135deg, #fffaf0 0%, #ffffff 52%, #f6f8fb 100%);
}
.podcast-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 54px;
  align-items: center;
}
.podcast-hero-art img,
.podcast-slide-cover img,
.article-audio-feature img {
  width: 100%;
  display: block;
  border-radius: 28px;
  box-shadow: 0 22px 54px rgba(15, 26, 43, 0.14);
}
.podcast-slider-heading {
  max-width: 860px;
  margin-bottom: 26px;
}
.podcast-slider-shell {
  position: relative;
}
.podcast-slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(330px, 42%);
  gap: 24px;
  overflow-x: auto;
  padding: 8px 6px 22px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.podcast-page-slider .podcast-slider-track {
  grid-auto-columns: minmax(360px, 48%);
}
.podcast-slide-card {
  scroll-snap-align: start;
  background: #ffffff;
  border: 1px solid rgba(15, 26, 43, 0.10);
  border-radius: 30px;
  box-shadow: 0 18px 48px rgba(15, 26, 43, 0.08);
  padding: 18px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.podcast-slide-cover {
  display: block;
  overflow: hidden;
  border-radius: 24px;
}
.podcast-slide-cover img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 220ms ease;
}
.podcast-slide-card:hover .podcast-slide-cover img {
  transform: scale(1.018);
}
.podcast-slide-copy {
  padding: 18px 6px 4px;
}
.podcast-slide-copy h3 {
  margin: 0 0 10px;
}
.podcast-slide-copy p {
  margin-bottom: 14px;
}
.podcast-player {
  width: 100%;
  margin: 14px 0 10px;
}
.podcast-action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}
.podcast-slider-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(15, 26, 43, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #0f1a2b;
  font-size: 30px;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(15, 26, 43, 0.12);
  cursor: pointer;
}
.podcast-prev { left: -14px; }
.podcast-next { right: -14px; }
.blogs-podcast-feature {
  padding-top: 64px;
  padding-bottom: 24px;
}
.home-podcast-feature {
  padding-top: 22px;
}
.article-audio-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.6fr);
  gap: 28px;
  align-items: center;
  padding: 26px;
  margin-bottom: 34px;
  background: linear-gradient(135deg, #ffffff 0%, #fffaf0 100%);
  border: 1px solid rgba(15, 26, 43, 0.10);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(15, 26, 43, 0.08);
}
.article-audio-feature img {
  max-width: 280px;
  justify-self: end;
  border-radius: 20px;
}
@media (max-width: 1024px) {
  .podcast-slider-track,
  .podcast-page-slider .podcast-slider-track {
    grid-auto-columns: minmax(310px, 78%);
  }
}
@media (max-width: 900px) {
  .podcast-hero-grid,
  .article-audio-feature {
    grid-template-columns: 1fr;
  }
  .article-audio-feature img {
    justify-self: start;
    max-width: 100%;
  }
  .podcast-prev { left: 4px; }
  .podcast-next { right: 4px; }
}
@media (max-width: 640px) {
  .podcast-slider-track,
  .podcast-page-slider .podcast-slider-track {
    grid-auto-columns: minmax(270px, 88%);
  }
  .podcast-slider-btn {
    display: none;
  }
}


/* GlobioHub podcast platform links */
.podcast-platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.platform-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(15, 26, 43, 0.14);
  box-shadow: 0 10px 24px rgba(15, 26, 43, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.platform-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(15, 26, 43, 0.12);
}

.spotify-button {
  background: #1DB954;
  color: #ffffff;
  border-color: #1DB954;
}

.apple-button {
  background: #ffffff;
  color: #0f1a2b;
}

.compact-platform-links {
  margin-top: 10px;
  margin-bottom: 6px;
}

.compact-platform-links .platform-button {
  min-height: 36px;
  padding: 8px 14px;
  font-size: 0.92rem;
}

@media (max-width: 640px) {
  .podcast-platform-links {
    align-items: stretch;
  }
  .platform-button {
    width: 100%;
  }
}


/* GlobioHub footer social platform update */
.footer-socials,
.social-links,
.footer-podcast-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
  margin-top: 16px;
}

.footer-socials a,
.social-links a,
.footer-podcast-links a {
  text-decoration: none;
  font-weight: 700;
}

.footer-socials a:hover,
.social-links a:hover,
.footer-podcast-links a:hover {
  text-decoration: underline;
}


/* July 2026 content, legal, trust and SEO update */
.four-column{grid-template-columns:repeat(4,minmax(0,1fr));}
.editorial-split{display:grid;grid-template-columns:minmax(0,1fr) minmax(320px,.9fr);gap:56px;align-items:center;}
.editorial-split-reverse{grid-template-columns:minmax(320px,.9fr) minmax(0,1fr);}
.editorial-image img{width:100%;height:auto;border-radius:28px;box-shadow:0 22px 54px rgba(15,26,43,.12);}
.editorial-copy p{max-width:68ch;}
.process-list{display:grid;gap:14px;padding-left:1.25rem;}
.principle-callout,.future-direction,.article-takeaways{margin-top:32px;padding:28px;border-radius:24px;background:#fffaf0;border:1px solid rgba(200,146,43,.24);}
.episode-facts{font-size:.93rem;color:#596579;font-weight:600;}
.article-ending{margin-top:30px;padding-top:24px;border-top:1px solid rgba(15,26,43,.12);font-weight:600;}
.article-share-row{display:flex;flex-wrap:wrap;gap:12px;align-items:center;margin:20px 0 30px;}
.share-button,.copy-link-button,.text-button,.cookie-settings-link{font:inherit;border:0;background:transparent;color:inherit;text-decoration:underline;cursor:pointer;padding:0;}
.share-button,.copy-link-button{padding:9px 14px;border:1px solid rgba(15,26,43,.16);border-radius:999px;text-decoration:none;background:#fff;}
.form-consent{font-size:.88rem;line-height:1.5;color:#5b6473;margin-top:10px;}
.honeypot-field{position:absolute!important;left:-9999px!important;opacity:0!important;pointer-events:none!important;}
.legal-hero{padding-bottom:44px;}
.legal-content{max-width:850px;}
.legal-content h2{margin-top:34px;margin-bottom:10px;}
.legal-content h3{margin-top:25px;}
.legal-content ul,.legal-content ol{padding-left:1.4rem;display:grid;gap:8px;}
.legal-content details{padding:18px 0;border-bottom:1px solid rgba(15,26,43,.12);}
.legal-content summary{font-weight:700;cursor:pointer;}
.effective-date{font-weight:700;color:#775817;}
.footer-legal-links{display:flex;flex-wrap:wrap;gap:10px 18px;justify-content:center;padding:20px 0;border-top:1px solid rgba(15,26,43,.1);font-size:.9rem;}
.footer-legal-links a,.footer-legal-links button{color:inherit;}
.sitemap-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:32px 64px;}
.sitemap-grid ul{padding-left:1.15rem;display:grid;gap:8px;}
.cookie-consent{position:fixed;z-index:9999;left:18px;right:18px;bottom:18px;background:#fff;color:#0b1f3a;border:1px solid rgba(15,26,43,.15);border-radius:22px;box-shadow:0 22px 70px rgba(15,26,43,.24);}
.cookie-consent-inner{max-width:1180px;margin:auto;padding:20px 24px;display:grid;grid-template-columns:minmax(0,1fr) auto;gap:18px;align-items:center;}
.cookie-consent-inner p{margin:5px 0 0;max-width:74ch;font-size:.94rem;}
.cookie-consent-actions{display:flex;flex-wrap:wrap;gap:10px;align-items:center;}
.cookie-consent-actions .button{min-height:40px;padding:8px 14px;}
.cookie-manage{grid-column:1/-1;padding-top:12px;border-top:1px solid rgba(15,26,43,.1);}
.cookie-manage label{display:block;margin:8px 0;}
@media(max-width:1024px){.four-column{grid-template-columns:repeat(2,minmax(0,1fr));}.editorial-split,.editorial-split-reverse{grid-template-columns:1fr;}.cookie-consent-inner{grid-template-columns:1fr;}}
@media(max-width:640px){.four-column,.sitemap-grid{grid-template-columns:1fr;}.cookie-consent{left:8px;right:8px;bottom:8px}.cookie-consent-inner{padding:16px}.cookie-consent-actions{align-items:stretch}.cookie-consent-actions .button,.cookie-consent-actions .text-button{width:100%;}.footer-legal-links{justify-content:flex-start;}}

/* 2026-07 emergency layout repair: preserve the approved page structure while
   styling the new content wrappers introduced by the content/legal/SEO update. */
.about-hero-redesign-grid,
.advisory-hero-redesign-grid,
.edtech-hero-redesign-grid,
.writing-hero-redesign-grid,
.blogs-redesign-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}

.about-hero-redesign-copy,
.about-hero-redesign-grid > div:first-child,
.advisory-hero-redesign-grid > div:first-child,
.edtech-hero-redesign-grid > div:first-child,
.writing-hero-redesign-grid > div:first-child,
.blogs-redesign-hero-grid > div:first-child {
  min-width: 0;
  max-width: 680px;
}

.about-hero-redesign-image,
.about-hero-redesign-grid > div:last-child,
.advisory-hero-redesign-grid > div:last-child,
.edtech-hero-redesign-grid > div:last-child,
.writing-hero-redesign-grid > div:last-child,
.blogs-redesign-hero-grid > div:last-child {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 18px;
}

.about-hero-redesign-image img,
.about-hero-redesign-grid > div:last-child img,
.advisory-hero-redesign-grid > div:last-child img,
.edtech-hero-redesign-grid > div:last-child img,
.writing-hero-redesign-grid > div:last-child img,
.blogs-redesign-hero-grid > div:last-child img {
  display: block;
  width: 100%;
  max-width: 620px;
  max-height: 650px;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.edtech-hero-redesign-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
}
.edtech-hero-redesign-grid > div:last-child img {
  max-width: 760px;
  max-height: 570px;
}

.about-story-redesign-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}

.advisory-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.edtech-focus-card {
  min-height: 220px;
  padding: 30px 28px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(15,26,43,0.08);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(15,26,43,0.06);
}

.writing-book-feature-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}
.writing-book-cover {
  display: flex;
  justify-content: center;
}
.writing-book-cover .book-cover-image {
  width: min(100%, 430px);
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 22px 52px rgba(15,26,43,0.14);
}

.writing-theme-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}
.writing-theme-grid article {
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(15,26,43,0.08);
  border-radius: 12px;
}

.blogs-redesign-hero {
  padding: 72px 0 58px;
  background: var(--paper);
}
.blogs-redesign-hero-grid > div:last-child img {
  max-width: 560px;
  max-height: 610px;
}

.editorial-image img,
.quiet-visual img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 980px) {
  .about-hero-redesign-grid,
  .advisory-hero-redesign-grid,
  .edtech-hero-redesign-grid,
  .writing-hero-redesign-grid,
  .blogs-redesign-hero-grid,
  .about-story-redesign-grid,
  .writing-book-feature-grid {
    grid-template-columns: 1fr;
  }
  .about-hero-redesign-grid > div:last-child img,
  .advisory-hero-redesign-grid > div:last-child img,
  .edtech-hero-redesign-grid > div:last-child img,
  .writing-hero-redesign-grid > div:last-child img,
  .blogs-redesign-hero-grid > div:last-child img {
    max-width: min(100%, 680px);
    max-height: none;
  }
  .advisory-service-grid,
  .writing-theme-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .about-hero-redesign,
  .advisory-hero-redesign,
  .edtech-hero-redesign,
  .writing-hero-redesign,
  .blogs-redesign-hero {
    padding-top: 48px;
    padding-bottom: 42px;
  }
  .advisory-service-grid,
  .writing-theme-grid {
    grid-template-columns: 1fr;
  }
  .about-hero-redesign-grid > div:last-child,
  .advisory-hero-redesign-grid > div:last-child,
  .edtech-hero-redesign-grid > div:last-child,
  .writing-hero-redesign-grid > div:last-child,
  .blogs-redesign-hero-grid > div:last-child {
    border-radius: 12px;
  }
}


/* VIDEO REVIEW FINAL RESPONSIVE FIXES */
/* Keep the existing visual language while correcting balance at desktop, tablet and split-screen widths. */
.approved-hero-image {
  min-width: 0;
}

.approved-hero-image img {
  display: block;
  width: min(100%, 940px);
  height: 560px;
  object-fit: cover;
  object-position: center center;
}

@media (min-width: 981px) {
  /* Seven advisory cards: place the final card in the visual centre. */
  .advisory-service-grid .advisory-service-card:last-child {
    grid-column: 2;
  }

  /* Six EdTech cards: use a balanced 3 x 2 grid rather than 4 + 2. */
  .edtech-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    justify-self: stretch;
  }

  .edtech-focus-card {
    min-height: 220px;
  }
}

@media (max-width: 1100px) and (min-width: 701px) {
  /* Keep the book signup readable in iPad split-view without changing the section design. */
  .book-feature-simple {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 30px;
    align-items: center;
  }

  .book-cover-image {
    max-width: 180px;
  }

  .book-note {
    grid-column: 1 / -1;
    padding: 24px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.18);
  }
}

@media (max-width: 980px) {
  .approved-hero-image img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
  }

  .advisory-service-grid .advisory-service-card:last-child {
    grid-column: auto;
  }

  .edtech-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-self: stretch;
  }
}

@media (max-width: 700px) {
  .book-feature-simple {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .book-cover-wrap {
    display: flex;
    justify-content: center;
  }

  .book-cover-image {
    width: min(72vw, 260px);
    max-width: 260px;
  }

  .book-note {
    grid-column: auto;
  }

  .inline-form {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .edtech-card-grid {
    grid-template-columns: 1fr;
  }
}


/* HOMEPAGE PRECISION FIXES - featured book signup, path images, hero extension */
.home-path-grid {
  gap: 22px;
  align-items: stretch;
}

.path-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(15,26,43,0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.path-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(15,26,43,0.11);
}

.path-card-media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: #ebe8e1;
}

.path-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.88) contrast(1.02);
  transition: transform 240ms ease;
}

.path-card:nth-child(1) .path-card-media img,
.path-card:nth-child(3) .path-card-media img {
  object-position: center 22%;
}

.path-card:hover .path-card-media img {
  transform: scale(1.025);
}

.path-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 24px 26px;
}

.path-card-content h3 {
  margin-bottom: 10px;
}

.path-card-content p {
  flex: 1;
  margin-bottom: 12px;
}

.path-card-content > a {
  margin-top: auto;
  color: var(--gold);
  font-weight: 800;
}

/* Keep the book information and signup as three intentional panels on desktop. */
@media (min-width: 1101px) {
  .book-feature-simple {
    grid-template-columns: 205px minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 38px;
    align-items: stretch;
    padding: 42px;
  }
}

.book-cover-wrap {
  align-self: center;
}

.book-note {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.16);
  border-left: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255,255,255,0.085), rgba(255,255,255,0.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.book-note-kicker {
  margin: 0 0 8px;
  color: var(--gold-soft) !important;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.book-note h3 {
  margin-bottom: 10px;
  font-size: 1.7rem;
}

.book-note > p:not(.book-note-kicker) {
  margin-bottom: 0;
  line-height: 1.55;
}

.home-signup-form {
  width: 100%;
  margin-top: 18px;
}

.newsletter-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
}

.newsletter-controls input {
  min-width: 0;
  color: #fff;
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.25);
}

.newsletter-controls input::placeholder {
  color: rgba(255,255,255,0.7);
}

.newsletter-controls .button {
  min-width: 112px;
  padding-inline: 16px;
  white-space: nowrap;
}

.home-signup-form .form-consent {
  margin: 12px 0 0;
  color: rgba(255,255,255,0.64) !important;
  font-size: 0.78rem;
  line-height: 1.48;
}

.home-signup-form .form-consent a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Extend the approved hero image toward the open right side and restore the subtle frame. */
@media (min-width: 981px) {
  .hero-home .hero-grid {
    grid-template-columns: minmax(390px, 0.76fr) minmax(0, 1.24fr);
    gap: 26px;
  }

  .approved-hero-image {
    min-height: 520px;
    margin-right: -92px;
    padding: 0 18px 22px 0;
  }

  .approved-hero-image::after {
    content: "";
    position: absolute;
    top: 30px;
    right: 0;
    bottom: 0;
    left: 38px;
    z-index: 0;
    border: 1px solid rgba(200,161,90,0.46);
    background: rgba(255,255,255,0.08);
    pointer-events: none;
  }

  .approved-hero-image img {
    width: calc(100% + 74px);
    max-width: none;
    height: 470px;
    object-fit: cover;
    object-position: center center;
  }
}

@media (max-width: 1100px) and (min-width: 701px) {
  .book-note {
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.16);
    border-top: 1px solid rgba(255,255,255,0.16);
  }
}

@media (max-width: 780px) {
  .newsletter-controls {
    grid-template-columns: 1fr;
  }

  .newsletter-controls .button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .path-card-content {
    padding: 22px;
  }

  .book-note {
    padding: 24px;
  }
}


/* HOMEPAGE FINAL REFINEMENT - requested visual corrections */

/* 1. Hero image: remove the decorative rear frame, move the image right,
      and give it slightly more vertical presence without changing the section. */
@media (min-width: 981px) {
  .hero-home .hero-grid {
    grid-template-columns: minmax(410px, 0.79fr) minmax(0, 1.21fr);
    gap: 34px;
  }

  .approved-hero-image {
    position: relative;
    min-height: 555px;
    margin-left: 26px;
    margin-right: -122px;
    padding: 0;
    transform: translateX(16px);
  }

  .approved-hero-image::after,
  .approved-hero-image::before {
    content: none !important;
    display: none !important;
  }

  .approved-hero-image img {
    width: calc(100% + 92px);
    max-width: none;
    height: 535px;
    object-fit: cover;
    object-position: 52% center;
    border: 0;
    border-radius: 22px;
    box-shadow: 0 24px 58px rgba(15,26,43,0.14);
  }
}

/* 2. Home path cards: preserve the card slider/grid, but use clean,
      compact branded icons instead of repeating founder photos. */
.path-card-icon {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 148px;
  padding: 22px;
  color: var(--navy);
  background:
    radial-gradient(circle at 50% 22%, rgba(200,161,90,0.18), transparent 38%),
    linear-gradient(145deg, #fffdf8, #f3efe7);
  border-bottom: 1px solid rgba(15,26,43,0.08);
  text-decoration: none;
}

.path-icon-badge {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: var(--gold);
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(200,161,90,0.35);
  border-radius: 22px;
  box-shadow: 0 14px 32px rgba(15,26,43,0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.path-icon-badge svg {
  width: 44px;
  height: 44px;
}

.path-card:hover .path-icon-badge {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(15,26,43,0.12);
}

/* 3. Founder image: create a restrained 3D mockup treatment and align
      the portrait with the copy block. */
.founder-editorial-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.72fr);
  gap: clamp(42px, 6vw, 78px);
  align-items: center;
}

.founder-editorial-grid .editorial-copy {
  transform: translateY(-8px);
}

.founder-editorial-grid .editorial-image {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.founder-editorial-grid .editorial-image::before {
  content: "";
  position: absolute;
  inset: 9% 2% -5% 14%;
  z-index: 0;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(200,161,90,0.22), rgba(15,26,43,0.06));
  filter: blur(1px);
  transform: rotate(-2deg);
}

.founder-editorial-grid .editorial-image img {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  max-height: 575px;
  padding: 14px;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border: 1px solid rgba(15,26,43,0.10);
  border-radius: 26px;
  box-shadow:
    -18px 24px 48px rgba(15,26,43,0.14),
    0 6px 14px rgba(15,26,43,0.08);
  transform: rotateY(-4deg) rotateX(1deg);
  transform-origin: center;
}

/* 4. Featured book: reduce vertical bulk, keep the signup compact,
      and make both book buttons equal and white. */
@media (min-width: 1101px) {
  .home-book-section .book-feature-simple {
    grid-template-columns: 190px minmax(0, 1fr) minmax(300px, 0.80fr);
    gap: 30px;
    align-items: center;
    padding: 30px 34px;
  }
}

.home-book-section .book-note {
  padding: 20px 22px;
}

.home-book-section .book-note h3 {
  margin-bottom: 7px;
  font-size: 1.52rem;
}

.home-book-section .book-note > p:not(.book-note-kicker) {
  font-size: 0.94rem;
  line-height: 1.45;
}

.home-book-section .home-signup-form {
  margin-top: 12px;
}

.home-book-section .newsletter-controls input,
.home-book-section .newsletter-controls .button {
  min-height: 42px;
}

.home-book-section .home-signup-form .form-consent {
  margin-top: 9px;
  font-size: 0.75rem;
  line-height: 1.38;
}

.home-book-section .book-copy .hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
  max-width: 430px;
}

.home-book-section .book-copy .hero-actions .button {
  width: 100%;
  min-height: 44px;
  padding: 10px 15px;
  color: var(--navy);
  background: #fff;
  border-color: rgba(255,255,255,0.80);
}

.home-book-section .book-copy .hero-actions .button:hover {
  color: var(--navy);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

/* 5. Final CTA: use a slimmer button that fills the right action column. */
.final-connect-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr) minmax(230px, 0.52fr);
  gap: 30px;
  align-items: center;
}

.final-cta-action {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}

.final-cta-action .button {
  width: 100%;
  min-height: 42px;
  padding: 9px 24px;
  border-radius: 7px;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .founder-editorial-grid {
    grid-template-columns: 1fr;
  }

  .founder-editorial-grid .editorial-copy {
    transform: none;
  }

  .founder-editorial-grid .editorial-image img {
    width: min(86vw, 430px);
    transform: none;
  }

  .final-connect-cta {
    grid-template-columns: 1fr;
  }

  .final-cta-action {
    justify-content: flex-start;
  }

  .final-cta-action .button {
    width: min(100%, 320px);
  }
}

@media (max-width: 700px) {
  .home-book-section .book-copy .hero-actions {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .path-card-icon {
    min-height: 132px;
  }

  .path-icon-badge {
    width: 68px;
    height: 68px;
    border-radius: 19px;
  }

  .path-icon-badge svg {
    width: 40px;
    height: 40px;
  }
}


/* ABOUT PAGE FINAL REDESIGN - preserves global navigation, footer and page content */

/* Hero: smaller two-line headline and a layered 3D editorial mockup. */
.about-hero-final {
  padding: 76px 0 72px;
}

.about-hero-final-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(350px, 0.76fr);
  gap: clamp(46px, 7vw, 96px);
  align-items: center;
}

.about-hero-final-copy {
  max-width: 700px;
}

.about-hero-final-copy h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 4.25vw, 4.45rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.about-hero-final-copy h1 span {
  display: block;
}

.about-hero-final-copy .section-lead {
  max-width: 620px;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(1.18rem, 1.7vw, 1.42rem);
  line-height: 1.55;
}

.about-hero-final-copy > p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.about-portrait-mockup {
  position: relative;
  min-height: 560px;
  overflow: visible;
  border-radius: 0;
  perspective: 1200px;
}

.about-mockup-back {
  position: absolute;
  top: 46px;
  right: 10px;
  width: 78%;
  height: 82%;
  border: 1px solid rgba(200,161,90,0.45);
  border-radius: 30px;
  background:
    radial-gradient(circle at 74% 20%, rgba(200,161,90,0.24), transparent 34%),
    linear-gradient(145deg, rgba(15,26,43,0.08), rgba(255,255,255,0.84));
  transform: rotate(5deg) translateZ(-40px);
  box-shadow: 0 28px 60px rgba(15,26,43,0.10);
}

.about-mockup-card {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  padding: 16px 16px 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15,26,43,0.10);
  border-radius: 28px;
  box-shadow:
    -24px 30px 70px rgba(15,26,43,0.16),
    0 8px 20px rgba(15,26,43,0.08);
  transform: rotateY(-5deg) rotateZ(-1.5deg);
  transform-origin: center;
}

.about-mockup-label {
  display: inline-flex;
  margin: 2px 0 12px 4px;
  color: var(--gold);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-mockup-card img {
  display: block;
  width: 100%;
  height: 410px;
  object-fit: cover;
  object-position: center 18%;
  background: #f3f1ec;
  border-radius: 20px;
  filter: grayscale(1) contrast(1.03);
}

.about-mockup-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 4px 0;
}

.about-mockup-caption strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.about-mockup-caption span {
  color: var(--muted);
  font-size: 0.82rem;
}

/* Four equal story cards. Desktop = equal four-card row.
   Tablet/mobile = horizontal scroll-snap slider without breaking the page. */
.about-journey-section {
  padding: 78px 0 86px;
  background:
    linear-gradient(180deg, #f7f7f8 0%, #f2efe8 100%);
  border-top: 1px solid rgba(15,26,43,0.06);
  border-bottom: 1px solid rgba(15,26,43,0.06);
}

.about-journey-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.about-journey-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(2.35rem, 4.2vw, 4rem);
}

.about-journey-heading p:last-child {
  max-width: 660px;
  margin-inline: auto;
  color: var(--muted);
}

.about-journey-slider {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.about-journey-card {
  display: flex;
  min-width: 0;
  min-height: 520px;
  flex-direction: column;
  padding: 28px 25px 30px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(15,26,43,0.08);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(15,26,43,0.065);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.about-journey-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 54px rgba(15,26,43,0.10);
}

.about-journey-icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  margin-bottom: 22px;
  color: var(--gold);
  background: linear-gradient(145deg, #fff, #f7f0e3);
  border: 1px solid rgba(200,161,90,0.36);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(15,26,43,0.07);
}

.about-journey-icon svg {
  width: 40px;
  height: 40px;
}

.about-journey-card .eyebrow {
  min-height: 34px;
  margin-bottom: 7px;
  font-size: 0.69rem;
}

.about-journey-card h3 {
  min-height: 112px;
  margin-bottom: 18px;
  font-size: clamp(1.34rem, 1.8vw, 1.72rem);
  line-height: 1.16;
}

.about-journey-card p:not(.eyebrow) {
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

/* Purpose + experience proof layout. */
.about-purpose-section {
  padding: 88px 0 96px;
  background:
    radial-gradient(circle at 82% 20%, rgba(200,161,90,0.14), transparent 28%),
    var(--paper);
}

.about-purpose-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(46px, 7vw, 88px);
  align-items: center;
}

.about-purpose-copy {
  max-width: 610px;
}

.about-purpose-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 4.4vw, 4.25rem);
  line-height: 1.04;
}

.about-purpose-copy p {
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.7;
}

.about-purpose-copy .about-purpose-lead {
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 700;
}

.about-purpose-copy .button {
  margin-top: 12px;
}

.about-proof-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
  background: var(--navy);
  border-radius: 28px;
  box-shadow: 0 28px 66px rgba(15,26,43,0.18);
}

.about-proof-card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
}

.about-proof-card-wide {
  grid-column: 1 / -1;
  min-height: 160px;
}

.about-proof-number {
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 5.5vw, 5.4rem);
  line-height: 0.95;
}

.about-proof-label {
  max-width: 31ch;
  color: rgba(255,255,255,0.84);
  font-size: 0.92rem;
  line-height: 1.48;
}

.about-proof-note {
  grid-column: 1 / -1;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  color: rgba(255,255,255,0.78);
  border-top: 1px solid rgba(255,255,255,0.12);
}

.about-proof-note span {
  color: var(--gold-soft);
  font-size: 1.25rem;
}

.about-proof-note p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

@media (max-width: 1120px) {
  .about-journey-slider {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 2px 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .about-journey-card {
    flex: 0 0 min(78vw, 360px);
    min-height: 500px;
    scroll-snap-align: start;
  }
}

@media (max-width: 980px) {
  .about-hero-final-grid,
  .about-purpose-layout {
    grid-template-columns: 1fr;
  }

  .about-hero-final-copy h1 {
    max-width: 760px;
  }

  .about-portrait-mockup {
    min-height: 540px;
  }

  .about-mockup-card {
    width: min(88vw, 430px);
    transform: rotateZ(-1deg);
  }

  .about-purpose-copy {
    max-width: 720px;
  }
}

@media (max-width: 640px) {
  .about-hero-final {
    padding-top: 52px;
    padding-bottom: 54px;
  }

  .about-hero-final-copy h1 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }

  .about-hero-final-copy h1 span {
    display: inline;
  }

  .about-hero-final-copy h1 span:first-child::after {
    content: " ";
  }

  .about-portrait-mockup {
    min-height: 470px;
  }

  .about-mockup-back {
    top: 34px;
    right: 4%;
    width: 82%;
    height: 82%;
  }

  .about-mockup-card {
    width: min(92vw, 370px);
    padding: 12px 12px 15px;
    border-radius: 23px;
  }

  .about-mockup-card img {
    height: 350px;
    border-radius: 17px;
  }

  .about-mockup-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .about-journey-section {
    padding: 62px 0 66px;
  }

  .about-journey-card {
    flex-basis: 86vw;
    min-height: 0;
  }

  .about-journey-card h3 {
    min-height: 0;
  }

  .about-purpose-section {
    padding: 66px 0 72px;
  }

  .about-proof-panel {
    grid-template-columns: 1fr;
    padding: 16px;
    border-radius: 22px;
  }

  .about-proof-card,
  .about-proof-card-wide {
    grid-column: auto;
    min-height: 155px;
  }
}


/* HOMEPAGE FINAL DOCUMENT UPDATE - exact copy/order from July 27, 2026 brief */
.home-path-grid.three-column {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1120px;
  margin-inline: auto;
}

.home-latest-podcasts {
  padding-top: 82px;
  padding-bottom: 86px;
  background:
    radial-gradient(circle at 85% 12%, rgba(200,161,90,0.12), transparent 28%),
    var(--paper);
  border-top: 1px solid rgba(15,26,43,0.06);
  border-bottom: 1px solid rgba(15,26,43,0.06);
}

.home-podcast-heading {
  max-width: 800px;
  margin: 0 auto 34px;
  text-align: center;
}

.home-podcast-heading h2 {
  margin-bottom: 14px;
}

.home-podcast-heading p:last-child {
  max-width: 720px;
  margin-inline: auto;
  color: var(--muted);
}

.home-podcast-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.home-podcast-card {
  padding: 16px;
  border-radius: 24px;
}

.home-podcast-card .podcast-slide-copy {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 18px 6px 6px;
}

.home-podcast-card .podcast-slide-copy h3 {
  min-height: 76px;
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  line-height: 1.18;
}

.home-podcast-card .episode-facts {
  margin-bottom: 10px;
}

.home-podcast-card .podcast-slide-copy > p:not(.eyebrow):not(.episode-facts) {
  flex: 1;
}

.home-podcast-actions {
  display: grid;
  grid-template-columns: minmax(86px, 0.62fr) minmax(138px, 1.38fr);
  gap: 10px;
  margin-top: 12px;
}

.home-podcast-actions .button {
  width: 100%;
  min-height: 42px;
  padding-inline: 12px;
}

.home-podcast-view-all {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.home-podcast-view-all .button {
  min-width: 210px;
}

/* Keep the official cover fully visible and slightly dimensional. */
.home-book-section .book-cover-wrap {
  perspective: 1000px;
}

.home-book-section .book-cover-image {
  object-fit: contain;
  transform: rotateY(-3deg);
  transform-origin: center;
}

/* The updated book copy is shorter; keep the three panels visually balanced. */
.home-book-section .book-copy {
  align-self: center;
}

@media (max-width: 1024px) {
  .home-path-grid.three-column {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-podcast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-podcast-card:last-child {
    grid-column: 1 / -1;
    width: min(100%, 520px);
    justify-self: center;
  }
}

@media (max-width: 820px) {
  .home-path-grid.three-column {
    grid-template-columns: 1fr;
  }

  .home-podcast-grid {
    grid-template-columns: 1fr;
  }

  .home-podcast-card,
  .home-podcast-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .home-podcast-card .podcast-slide-copy {
    min-height: 0;
  }

  .home-podcast-card .podcast-slide-copy h3 {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .home-podcast-actions {
    grid-template-columns: 1fr;
  }
}


/* ABOUT + EDUCATION ADVISORY DOCUMENT-APPROVED FINAL COPY UPDATE */
.about-journey-card h3 {
  min-height: 88px;
}
.about-journey-card p {
  text-wrap: pretty;
}
.about-closing-statement {
  margin-top: 20px;
  color: var(--navy) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.32rem, 2vw, 1.72rem);
  line-height: 1.36 !important;
}
.about-proof-panel .about-proof-card {
  grid-column: auto;
  min-height: 180px;
}
.about-proof-word {
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  line-height: 1;
}

.advisory-audience-heading {
  max-width: 820px;
  margin-bottom: 48px;
}
.advisory-areas-heading {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}
.advisory-areas-heading h2 {
  font-size: clamp(2.1rem, 3.5vw, 3.35rem);
}
.advisory-service-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.advisory-service-card h2 {
  font-size: clamp(1.34rem, 1.85vw, 1.72rem);
}
.advisory-experience-section {
  padding: 24px 0 52px;
  background: var(--paper);
}
.advisory-experience-card {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 34px 38px;
  background: linear-gradient(135deg, #0f1a2b, #182a45);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  box-shadow: 0 24px 58px rgba(15,26,43,0.16);
}
.advisory-experience-mark {
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 7vw, 6.2rem);
  line-height: 1;
  text-align: center;
}
.advisory-experience-card .eyebrow {
  color: var(--gold-soft);
}
.advisory-experience-card p:not(.eyebrow) {
  max-width: 76ch;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.84);
  line-height: 1.65;
}
.advisory-process-final {
  align-items: start;
}
.advisory-founder-note {
  margin-bottom: 24px;
  padding: 20px 22px;
  color: var(--navy);
  background: #fffaf0;
  border: 1px solid rgba(200,146,43,0.26);
  border-radius: 14px;
  line-height: 1.62;
}
.advisory-five-steps {
  list-style: none;
  padding-left: 0;
  counter-reset: none;
}
.advisory-five-steps li {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(15,26,43,0.09);
}
.advisory-five-steps li:last-child {
  border-bottom: 0;
}
.advisory-five-steps strong {
  color: var(--navy);
}
.advisory-five-steps span {
  color: var(--muted);
  line-height: 1.52;
}
.advisory-final-cta {
  align-items: center;
}
.advisory-final-cta > div {
  max-width: 820px;
}

@media (max-width: 980px) {
  .advisory-experience-card {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .advisory-experience-mark {
    text-align: left;
  }
}
@media (max-width: 640px) {
  .about-journey-card h3 {
    min-height: 0;
  }
  .advisory-experience-card {
    gap: 14px;
    padding: 28px 24px;
  }
  .advisory-five-steps li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}


/* EDTECH & WRITING/BOOKS FINAL DOCUMENT UPDATE */

/* EdTech */
.edtech-final-hero p:not(.eyebrow):not(.section-lead) {
  max-width: 66ch;
}

.edtech-point-heading {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.edtech-final-card-grid {
  margin-top: 38px;
}

.edtech-final-card-grid .edtech-focus-card {
  position: relative;
  min-height: 245px;
  overflow: hidden;
}

.edtech-card-number {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.edtech-final-card-grid .edtech-focus-card::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -34px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(200,161,90,0.22);
  border-radius: 50%;
}

.edtech-principle-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 36px;
}

.edtech-core-principle {
  height: 100%;
  margin-top: 0;
}

.edtech-workflow {
  display: grid;
  grid-template-columns: repeat(7, auto);
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid rgba(15,26,43,0.09);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(15,26,43,0.06);
}

.edtech-workflow-step {
  display: grid;
  min-width: 118px;
  min-height: 104px;
  place-items: center;
  padding: 14px 12px;
  text-align: center;
  background: #f8f5ee;
  border: 1px solid rgba(200,161,90,0.22);
  border-radius: 18px;
}

.edtech-workflow-step span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.edtech-workflow-step strong {
  color: var(--navy);
  font-size: 0.92rem;
  line-height: 1.3;
}

.edtech-workflow-step.human-review-step {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.edtech-workflow-step.human-review-step strong {
  color: #fff;
}

.edtech-workflow-arrow {
  color: var(--gold);
  font-size: 1.35rem;
}

.edtech-responsibility-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: center;
  margin-top: 32px;
  padding: 38px 40px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 16%, rgba(200,161,90,0.20), transparent 30%),
    var(--navy);
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(15,26,43,0.16);
}

.edtech-responsibility-panel h2,
.edtech-responsibility-panel .eyebrow {
  color: #fff;
}

.edtech-responsibility-panel p:last-child {
  margin: 0;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}

.edtech-future-final {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: center;
}

.edtech-final-cta {
  padding: 26px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(15,26,43,0.08);
  border-radius: 20px;
}

.edtech-final-cta h3 {
  margin-bottom: 10px;
}

.edtech-final-cta .button {
  margin-top: 8px;
}

/* Writing & Books */
.writing-final-hero p:not(.eyebrow):not(.section-lead) {
  max-width: 64ch;
}

.writing-feature-final {
  background:
    linear-gradient(180deg, #f7f7f8, #f2efe8);
}

.writing-book-mockup {
  position: relative;
  perspective: 1200px;
}

.writing-book-shadow {
  position: absolute;
  inset: 12% 4% -4% 16%;
  z-index: 0;
  background: rgba(15,26,43,0.16);
  border-radius: 18px;
  filter: blur(18px);
  transform: rotate(-5deg);
}

.writing-book-mockup .book-cover-image {
  position: relative;
  z-index: 1;
  width: min(100%, 410px);
  max-width: 410px;
  border-radius: 8px;
  box-shadow: -20px 28px 54px rgba(15,26,43,0.18);
  transform: rotateY(-7deg) rotateZ(-1deg);
  transform-origin: center;
}

.writing-feature-copy {
  min-width: 0;
}

.writing-feature-copy h2 {
  margin-bottom: 12px;
}

.writing-book-line {
  margin: 28px 0;
  padding: 20px 24px;
  color: var(--navy);
  background: rgba(255,255,255,0.86);
  border-left: 4px solid var(--gold);
  border-radius: 0 16px 16px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.32rem, 2.2vw, 1.9rem);
  line-height: 1.35;
}

.writing-isbn-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0;
}

.writing-isbn-grid > div {
  min-width: 0;
  padding: 16px 14px;
  background: #fff;
  border: 1px solid rgba(15,26,43,0.09);
  border-radius: 15px;
}

.writing-isbn-grid span,
.writing-isbn-grid strong {
  display: block;
}

.writing-isbn-grid span {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.writing-isbn-grid strong {
  color: var(--navy);
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.writing-availability {
  color: var(--muted);
}

.writing-book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.writing-book-actions .button {
  min-height: 44px;
}

.writing-author-section {
  padding: 84px 0;
  background: var(--paper);
}

.writing-author-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 6vw, 78px);
  align-items: center;
}

.writing-author-image img {
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 26px;
  box-shadow: 0 24px 58px rgba(15,26,43,0.13);
}

.writing-author-copy {
  max-width: 660px;
}

.writing-author-copy h2 {
  margin-bottom: 18px;
}

.writing-author-copy p {
  color: var(--muted);
  line-height: 1.72;
}

.writing-second-book-section {
  padding: 0 0 82px;
  background: var(--paper);
}

.writing-second-book-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: center;
  padding: 36px 40px;
  color: #fff;
  background: var(--navy);
  border-radius: 26px;
  box-shadow: 0 22px 54px rgba(15,26,43,0.15);
}

.writing-second-book-card h2,
.writing-second-book-card .eyebrow {
  color: #fff;
}

.writing-second-book-card > p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}

.writing-faq-section {
  padding: 82px 0 92px;
  background:
    linear-gradient(180deg, #f3f0e9, #f7f7f8);
}

.writing-faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(38px, 6vw, 76px);
  align-items: start;
}

.writing-faq-intro {
  position: sticky;
  top: 110px;
}

.writing-faq-intro p:last-child {
  color: var(--muted);
}

.writing-faq-list {
  display: grid;
  gap: 12px;
}

.writing-faq-list details {
  padding: 0 22px;
  background: #fff;
  border: 1px solid rgba(15,26,43,0.09);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(15,26,43,0.04);
}

.writing-faq-list summary {
  padding: 20px 0;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

.writing-faq-list details p {
  padding: 0 0 20px;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 1080px) {
  .edtech-principle-grid,
  .edtech-responsibility-panel,
  .edtech-future-final,
  .writing-author-grid,
  .writing-second-book-card,
  .writing-faq-layout {
    grid-template-columns: 1fr;
  }

  .edtech-workflow {
    grid-template-columns: repeat(4, minmax(110px, 1fr));
  }

  .edtech-workflow-arrow {
    display: none;
  }

  .writing-faq-intro {
    position: static;
  }
}

@media (max-width: 780px) {
  .writing-isbn-grid {
    grid-template-columns: 1fr;
  }

  .edtech-workflow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .writing-book-mockup .book-cover-image {
    transform: none;
  }
}

@media (max-width: 640px) {
  .edtech-responsibility-panel,
  .writing-second-book-card {
    padding: 28px 24px;
  }

  .edtech-workflow {
    grid-template-columns: 1fr;
  }

  .edtech-workflow-step {
    min-width: 0;
    min-height: 88px;
  }

  .writing-book-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .writing-book-actions .button {
    width: 100%;
  }
}


/* PODCAST + BLOGS/ARTICLES FINAL DOCUMENT UPDATE */

/* Blog listing */
.blogs-final-hero p:not(.eyebrow):not(.section-lead) {
  max-width: 66ch;
}

.article-listing-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.article-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 28px 0 36px;
}

.article-filter-button {
  min-height: 42px;
  padding: 9px 16px;
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(15,26,43,0.14);
  border-radius: 999px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.article-filter-button:hover,
.article-filter-button.is-active {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.article-final-grid {
  align-items: stretch;
}

.article-listing-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
}

.article-listing-card[hidden] {
  display: none !important;
}

.article-card-image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.article-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.article-listing-card:hover .article-card-image img {
  transform: scale(1.025);
}

.article-listing-card .article-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.article-listing-card .article-card-copy h3 a {
  color: inherit;
  text-decoration: none;
}

.article-listing-card .article-card-copy > p:not(.eyebrow):not(.article-card-meta) {
  flex: 1;
}

.article-card-meta {
  color: var(--muted);
  font-size: 0.84rem;
}

.article-card-button {
  align-self: flex-start;
  margin-top: 8px;
}

.article-filter-empty {
  padding: 30px;
  text-align: center;
  color: var(--muted);
}

/* Standard article template */
.article-final-hero {
  padding: 72px 0 58px;
}

.article-final-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  gap: clamp(38px, 6vw, 78px);
  align-items: center;
}

.article-final-hero-copy {
  min-width: 0;
}

.article-final-hero-copy h1 {
  margin-bottom: 20px;
  font-size: clamp(2.65rem, 5vw, 5.25rem);
  line-height: 1.02;
}

.article-back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.article-back-link:hover {
  color: var(--gold);
}

.article-final-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 24px;
}

.article-final-meta span,
.article-final-meta time {
  position: relative;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 650;
}

.article-final-meta span:not(:last-child)::after,
.article-final-meta time:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
}

.article-top-share {
  margin-bottom: 0;
}

.article-final-hero-image {
  margin: 0;
}

.article-final-hero-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 58px rgba(15,26,43,0.13);
}

.article-final-body-section {
  padding-top: 68px;
}

.article-final-layout {
  max-width: 920px;
}

.article-final-body {
  width: 100%;
  max-width: 820px;
  margin-inline: auto;
}

.article-copy-section {
  margin-bottom: 44px;
}

.article-copy-section h2 {
  margin-bottom: 18px;
  font-size: clamp(1.85rem, 3.2vw, 2.8rem);
}

.article-copy-section p {
  margin-bottom: 15px;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.78;
}

.article-takeaway-final {
  padding: 30px 32px;
  background: #fffaf0;
  border: 1px solid rgba(200,146,43,0.24);
  border-radius: 22px;
}

.article-takeaway-final ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 1.35rem;
}

.article-takeaway-final li {
  padding-left: 6px;
  color: var(--text);
  line-height: 1.65;
}

.article-related-episode {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 28px;
  align-items: center;
  margin: 56px 0 36px;
  padding: 30px;
  color: #fff;
  background: var(--navy);
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(15,26,43,0.16);
}

.article-related-episode h2,
.article-related-episode .eyebrow {
  color: #fff;
}

.article-related-episode p {
  color: rgba(255,255,255,0.82);
}

.article-related-episode .episode-facts {
  color: rgba(255,255,255,0.66);
}

.article-related-episode img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
}

.article-related-episode .podcast-action-row {
  align-items: center;
}

.article-related-episode .text-link {
  color: var(--gold-soft);
}

.article-standard-ending {
  margin: 30px 0 46px;
  padding: 22px 0;
  border-top: 1px solid rgba(15,26,43,0.10);
  border-bottom: 1px solid rgba(15,26,43,0.10);
}

.article-standard-ending p {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.55;
}

.article-author-box {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(15,26,43,0.09);
  border-radius: 22px;
  box-shadow: 0 14px 38px rgba(15,26,43,0.055);
}

.article-author-box img {
  display: block;
  width: 112px;
  height: 112px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 50%;
}

.article-author-box h2 {
  margin-bottom: 8px;
  font-size: 1.75rem;
}

.article-author-box p:not(.eyebrow) {
  margin-bottom: 8px;
  color: var(--muted);
}

.article-ending-navigation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: 28px;
}

.article-next-card {
  display: flex;
  min-height: 94px;
  flex-direction: column;
  justify-content: center;
  padding: 20px 24px;
  color: var(--navy);
  background: #f5f2eb;
  border: 1px solid rgba(15,26,43,0.08);
  border-radius: 18px;
  text-decoration: none;
}

.article-next-card span {
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-next-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
}

/* Podcast page */
.podcast-final-hero .podcast-hero-copy > p:not(.eyebrow):not(.section-lead) {
  max-width: 64ch;
}

.podcast-follow-links {
  align-items: stretch;
}

.podcast-founder-note-section {
  padding: 54px 0;
  background: #f3efe7;
  border-top: 1px solid rgba(15,26,43,0.06);
  border-bottom: 1px solid rgba(15,26,43,0.06);
}

.podcast-founder-note {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  max-width: 920px;
}

.podcast-founder-note img {
  display: block;
  width: 150px;
  height: 150px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 26px;
  box-shadow: 0 18px 42px rgba(15,26,43,0.11);
}

.podcast-founder-note h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
}

.podcast-founder-note p:last-child {
  max-width: 68ch;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.podcast-standard-card {
  align-items: stretch;
}

.podcast-standard-card .podcast-slide-cover img {
  object-fit: cover;
}

.podcast-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 16px;
  margin-bottom: 13px;
}

.podcast-card-meta span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.podcast-standard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
}

.podcast-standard-actions .button,
.podcast-standard-actions .share-button,
.podcast-standard-actions .copy-link-button {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 0.84rem;
}

.podcast-standard-ending {
  margin: 18px 0 0 !important;
  padding-top: 16px;
  color: var(--muted) !important;
  border-top: 1px solid rgba(15,26,43,0.09);
  font-size: 0.82rem;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .article-final-hero-grid,
  .article-related-episode {
    grid-template-columns: 1fr;
  }

  .article-final-hero-image {
    max-width: 760px;
  }
}

@media (max-width: 700px) {
  .article-final-hero {
    padding-top: 48px;
  }

  .article-final-meta {
    display: grid;
    gap: 6px;
  }

  .article-final-meta span::after,
  .article-final-meta time::after {
    display: none;
  }

  .article-related-episode,
  .article-takeaway-final {
    padding: 24px;
  }

  .article-author-box {
    grid-template-columns: 1fr;
  }

  .article-author-box img {
    width: 92px;
    height: 92px;
  }

  .article-ending-navigation {
    grid-template-columns: 1fr;
  }

  .article-ending-navigation .button {
    width: 100%;
  }

  .podcast-founder-note {
    grid-template-columns: 1fr;
  }

  .podcast-founder-note img {
    width: 120px;
    height: 120px;
  }
}
