@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Hebrew:wght@400;500;600&family=Source+Sans+3:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Source+Serif+4:ital,wght@0,400;0,500;1,400;1,500&display=swap");

:root {
  --navy: #082b5b;
  --cobalt: #3564e8;
  --cobalt-dark: #244cc8;
  --teal: #11b5a4;
  --teal-dark: #087c73;
  --green: #138a6a;
  --green-dark: #0f7057;
  --yellow: #ffc633;
  --coral: #f2537d;
  --coral-dark: #c92f5c;
  --purple: #6b45d8;
  --page: #fbfcfd;
  --white: #fff;
  --aqua-50: #eaf8f7;
  --yellow-50: #fde2c4;
  --coral-50: #fff0f4;
  --cobalt-50: #eef2fe;
  --purple-50: #f3effc;
  --text: #263247;
  --muted: #5d6674;
  --border: #d7e0e8;
  --font-sans: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  --font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --container: 1200px;
  --readable: 720px;
  --radius: 6px;
  --focus: 0 0 0 3px #fff, 0 0 0 6px var(--purple);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.tb-site {
  margin: 0 !important;
  background: var(--page) !important;
  color: var(--text) !important;
  font-family: var(--font-sans) !important;
  font-size: 18px;
  line-height: 1.56;
  overflow-x: hidden;
}

body.tb-site x-dc,
body.tb-site [data-screen-label] { display: block; }

body.tb-site [data-screen-label] {
  background: var(--page) !important;
  color: var(--text) !important;
  font-family: var(--font-sans) !important;
}

body.tb-site img { max-width: 100%; }

body.tb-site a {
  color: var(--cobalt-dark);
  text-underline-offset: 3px;
}

body.tb-site a:hover { color: var(--navy); }

body.tb-site :focus-visible {
  outline: 0;
  box-shadow: var(--focus);
  border-radius: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-160%);
  padding: 10px 16px;
  background: var(--navy);
  color: #fff !important;
  text-decoration: none;
  border-radius: 4px;
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(var(--container), calc(100% - 128px));
  margin-inline: auto;
}

.readable {
  width: min(var(--readable), 100%);
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font: 600 14px/1.4 var(--font-sans);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.display-title,
.page-title,
.section-title {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
}

.display-title { font-size: 56px; line-height: 1.07; }
.page-title { font-size: 46px; line-height: 1.13; }
.section-title { font-size: 34px; line-height: 1.18; }
.heading-accent { color: var(--cobalt); }
.home-hero .heading-accent { display: block; }

.lead {
  max-width: 52ch;
  margin: 22px 0 0;
  color: var(--text);
  font-size: 20px;
  line-height: 1.5;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font: 600 16px/1 var(--font-sans);
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover { transform: translateY(-1px); }

.button-primary {
  background: var(--cobalt);
  color: #fff !important;
}

.button-primary:hover { background: var(--cobalt-dark); }

.button-secondary {
  background: #fff;
  border-color: var(--cobalt);
  color: var(--cobalt-dark) !important;
}

.button-secondary:hover { background: var(--aqua-50); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cobalt-dark) !important;
  font-weight: 600;
  text-decoration: none;
}

.text-link:hover { text-decoration: underline; }

.site-header,
body.tb-site header {
  position: sticky !important;
  top: 0;
  z-index: 100 !important;
  min-height: 78px;
  background: rgba(255,255,255,.98) !important;
  border-bottom: 1px solid var(--border) !important;
  box-shadow: none !important;
}

.site-header__inner,
body.tb-site header > div {
  width: min(var(--container), calc(100% - 128px));
  min-height: 78px !important;
  margin-inline: auto !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 32px !important;
}

.brand,
body.tb-site header > div > a:first-child {
  display: flex !important;
  flex-direction: column !important;
  flex: none;
  color: var(--navy) !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

.brand__name,
body.tb-site header > div > a:first-child span:first-child {
  color: var(--navy) !important;
  font: 700 26px/1 var(--font-sans) !important;
  letter-spacing: 0 !important;
}

.brand__tagline,
body.tb-site header > div > a:first-child span:last-child {
  margin-top: 5px !important;
  color: var(--teal-dark) !important;
  font: 600 11px/1 var(--font-sans) !important;
  letter-spacing: .16em !important;
  text-transform: uppercase;
}

.site-nav,
body.tb-site header nav {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
}

.nav-group {
  position: relative;
  flex: none;
  padding: 10px 14px;
  margin: -10px -14px;
}

.nav-primary-row {
  display: flex;
  align-items: center;
}

.submenu-toggle {
  width: 26px;
  height: 42px;
  display: none;
  place-items: center;
  margin-left: -2px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
}

.submenu-toggle span {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.nav-group.is-submenu-open .submenu-toggle span {
  transform: translateY(2px) rotate(225deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: -18px;
  z-index: 110;
  width: max-content;
  min-width: 250px;
  max-width: 340px;
  padding: 9px;
  display: grid;
  gap: 2px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-6px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(8, 43, 91, .12);
  transition: opacity 100ms ease 0s, transform 100ms ease 0s, visibility 100ms ease 0s;
}

.nav-submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 14px;
}

.nav-group:hover .nav-submenu,
.nav-group:focus-within .nav-submenu,
.nav-group.is-submenu-open .nav-submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.site-nav .nav-submenu a,
body.tb-site header nav .nav-submenu a {
  min-height: 42px;
  padding: 10px 12px !important;
  align-items: center;
  color: var(--text) !important;
  border: 0 !important;
  border-radius: 4px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.28 !important;
  white-space: normal;
}

.site-nav .nav-submenu a:hover,
.site-nav .nav-submenu a[aria-current="page"],
body.tb-site header nav .nav-submenu a:hover,
body.tb-site header nav .nav-submenu a[aria-current="page"] {
  color: var(--cobalt-dark) !important;
  background: var(--aqua-50) !important;
}

.nav-group.is-current-section .nav-parent {
  color: var(--cobalt-dark) !important;
  border-bottom-color: var(--cobalt) !important;
}

.site-nav a,
body.tb-site header nav a {
  padding: 8px 0 !important;
  color: var(--navy) !important;
  background: transparent !important;
  border: 0 !important;
  border-bottom: 2px solid transparent !important;
  border-radius: 0 !important;
  font: 600 14px/1.2 var(--font-sans) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  text-decoration: none !important;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
body.tb-site header nav a:hover,
body.tb-site header nav a[aria-current="page"] {
  color: var(--cobalt-dark) !important;
  border-bottom-color: var(--cobalt) !important;
}

.site-nav .nav-contact,
body.tb-site header nav > a:last-child {
  padding: 11px 18px !important;
  color: #fff !important;
  background: var(--green) !important;
  border: 0 !important;
  border-radius: var(--radius) !important;
}

.site-nav .nav-contact:hover,
body.tb-site header nav > a:last-child:hover {
  background: var(--green-dark) !important;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  flex: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
}

.home-hero {
  position: relative;
  background: #fff;
}

.home-hero__inner {
  min-height: 440px;
  padding-block: 28px 24px;
  display: grid;
  grid-template-columns: 4.5fr 7.5fr;
  gap: 30px;
  align-items: center;
}

.home-hero__copy { max-width: 450px; }
.home-hero .display-title { font-size: 48px; }
.home-hero .lead { margin-top: 16px; font-size: 18px; line-height: 1.45; }
.home-hero .button-row { margin-top: 22px; }

.illustration-frame {
  position: relative;
  width: 100%;
  min-width: 0;
}

.illustration-art {
  position: relative;
  z-index: 2;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.site-illustration {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-illustration--hero {
  max-width: 780px;
  margin-inline: auto;
}

.site-illustration--portrait {
  width: min(100%, 520px);
  max-height: 660px;
  margin-inline: auto;
}

.site-illustration--support {
  width: min(100%, 520px);
  margin-inline: auto;
}

.educators-hero-illustration {
  width: min(100%, 760px);
  margin: 40px auto 0;
}

.shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.shape-square {
  width: 28px;
  height: 28px;
  border: 4px solid var(--coral);
}

.shape-triangle {
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-bottom: 38px solid var(--teal);
  transform: rotate(18deg);
}

.shape-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--yellow);
}

.hero-shape-1 { top: 10%; left: 8%; }
.hero-shape-2 { top: 16%; right: 8%; }
.hero-shape-3 { bottom: 16%; right: 2%; }

.trust-strip {
  border-block: 1px solid #e8dcc8;
  background: #f7f1e6;
  margin-top: 40px;
}

.trust-strip__inner {
  padding-block: 24px 32px;
  text-align: center;
}

.trust-label {
  margin: 0 0 8px;
  color: var(--navy);
  font: 500 15px/1.2 var(--font-sans);
}

.school-list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 6px 14px;
  color: var(--navy);
  font: 600 15px/1.35 var(--font-sans);
  white-space: nowrap;
  overflow: hidden;
}

.school-list span:not(:last-child)::after {
  content: "";
  width: 5px;
  height: 5px;
  display: inline-block;
  margin-left: 16px;
  border-radius: 50%;
  background: var(--yellow);
  vertical-align: middle;
}

.mission {
  padding-block: 92px 78px;
  background: #fff;
}

.mission__inner {
  display: grid;
  grid-template-columns: 4.5fr 7.5fr;
  gap: 44px;
  align-items: center;
}

.mission__copy { max-width: 480px; }
.mission .illustration-art { max-width: 620px; margin-inline: auto; }

.audience-band {
  padding-block: 62px;
  background: #e8f1fe;
}

.audience-title {
  margin-bottom: 36px;
  text-align: center;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.audience-path {
  min-height: 178px;
  padding: 10px 34px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-content: start;
  gap: 14px 18px;
}

.audience-path + .audience-path { border-left: 1px solid var(--border); }

.audience-path svg {
  width: 36px;
  height: 36px;
  color: var(--teal-dark);
  stroke-width: 1.8;
}

.audience-path h3 {
  margin: 0;
  color: var(--navy);
  font: 700 24px/1.2 var(--font-sans);
}

.audience-path p {
  grid-column: 2;
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.5;
}

.audience-path .text-link { grid-column: 2; }

.process-band {
  padding-block: 68px 74px;
  background: #eaf9f4;
}

.process-title {
  margin-bottom: 40px;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 70px 1fr 70px 1fr;
  align-items: start;
}

.process-step { text-align: center; }

.process-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--teal);
  border-radius: 50%;
  color: var(--teal-dark);
}

.process-icon svg { width: 30px; height: 30px; stroke-width: 1.8; }

.process-heading {
  margin: 0;
  color: var(--navy);
  font: 700 22px/1.25 var(--font-sans);
}

.process-heading span {
  width: 25px;
  height: 25px;
  display: inline-grid;
  place-items: center;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 14px;
  vertical-align: middle;
}

.process-step p {
  max-width: 27ch;
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.process-arrow {
  padding-top: 31px;
  color: var(--teal);
  text-align: center;
}

.process-arrow svg { width: 34px; height: 34px; stroke-width: 1.5; }

.feedback-band {
  padding-block: 82px 88px;
  background: #fff;
}

.feedback-inner {
  max-width: 1120px;
}

.feedback-kicker {
  margin: 0;
  text-align: center;
}

body.tb-site .feedback-title {
  max-width: 20ch;
  margin: 10px auto 0;
  text-align: center;
  font-size: 44px !important;
  line-height: 1.1 !important;
  font-weight: 700;
}

.feedback-featured {
  max-width: 900px;
  margin: 34px auto 0;
  padding-bottom: 46px;
  border-bottom: 1px solid #f1c9a8;
}

.feedback-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.feedback-quote {
  position: relative;
  margin: 0;
  padding: 4px 30px 0 46px;
  color: var(--navy);
  font: 500 italic 22px/1.42 var(--font-serif);
}

.feedback-grid .feedback-quote + .feedback-quote {
  border-left: 1px solid #f1c9a8;
}

.feedback-quote--featured {
  max-width: 22ch;
  margin-inline: auto;
  padding: 0 64px;
  text-align: center;
  font-size: 36px;
  line-height: 1.3;
}

.feedback-mark {
  position: absolute;
  left: 14px;
  top: -3px;
  color: var(--coral);
  font: 600 40px/1 var(--font-sans);
}

.feedback-quote--featured .feedback-mark {
  left: 10px;
  top: -8px;
  font-size: 58px;
}

.feedback-quote cite {
  display: block;
  margin-top: 16px;
  color: var(--teal-dark);
  font: 600 13px/1.3 var(--font-sans);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.feedback-readmore {
  margin-top: 36px;
  text-align: center;
}

.closing-cta {
  padding-block: 78px;
  background: #fff;
  text-align: center;
}

.closing-cta .section-title {
  max-width: 22ch;
  margin-inline: auto;
}

.closing-cta p {
  max-width: 56ch;
  margin: 18px auto 0;
  color: var(--muted);
}

.closing-cta .button-row { justify-content: center; }

.filter-teaser {
  border-block: 1px solid var(--border);
  background: var(--aqua-50);
}

.filter-teaser__inner {
  padding-block: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.filter-teaser p {
  max-width: 60ch;
  margin: 10px 0 0;
  color: var(--muted);
}

.site-footer,
body.tb-site footer {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('/uploads/ChatGPT Image Aug 9, 2026, 03_00_42 PM.png') center / cover no-repeat !important;
  color: #fff !important;
}

.site-footer__grid,
body.tb-site footer > div:first-child {
  width: min(var(--container), calc(100% - 128px));
  margin-inline: auto !important;
  padding: 36px 0 24px !important;
  display: grid !important;
  grid-template-columns: 1.6fr 1fr 1fr !important;
  gap: 36px !important;
}

.footer-brand { color: #fff; font: 700 24px/1 var(--font-sans); }
.footer-tagline { margin-top: 5px; color: #7de0d6; font: 600 11px/1 var(--font-sans); letter-spacing: .16em; text-transform: uppercase; }
.footer-copy { max-width: 38ch; margin: 18px 0 0; color: #d7e4f0; font-size: 15px; line-height: 1.55; }
.footer-heading,
body.tb-site footer > div:first-child > div:not(:first-child) > div:first-child {
  margin-bottom: 15px !important;
  color: #95aeca !important;
  font: 600 12px/1.3 var(--font-sans) !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
}

.footer-links,
body.tb-site footer [style*="flex-direction: column"] {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.site-footer a,
body.tb-site footer a {
  color: #fff !important;
  font-family: var(--font-sans) !important;
  font-size: 15px !important;
  text-decoration: none !important;
}

.site-footer a:hover,
body.tb-site footer a:hover { text-decoration: underline !important; }

.site-footer__bottom,
body.tb-site footer > div:last-child {
  width: min(var(--container), calc(100% - 128px));
  margin-inline: auto !important;
  padding: 14px 0 20px !important;
  display: flex !important;
  justify-content: space-between !important;
  gap: 16px !important;
  border-top: 1px solid rgba(255,255,255,.18) !important;
  color: #abc0d6 !important;
  font-size: 13px !important;
}

/* Humanist Sans treatment for existing interior pages */
body.tb-site [style*="Cormorant Garamond"],
body.tb-site [style*="EB Garamond"] {
  font-family: var(--font-sans) !important;
  letter-spacing: 0 !important;
}

body.tb-site [style*="Cormorant Garamond"] i,
body.tb-site [style*="Cormorant Garamond"] em {
  color: var(--cobalt) !important;
  font-style: normal !important;
}

body.tb-site h1,
body.tb-site h2,
body.tb-site h3,
body.tb-site h4 {
  color: var(--navy) !important;
  font-family: var(--font-sans) !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-wrap: balance;
}

body.tb-site:not(.article-page) [style*="Cormorant Garamond"] {
  font-weight: 700 !important;
}

body.tb-site h1 { font-size: 46px !important; line-height: 1.13 !important; }
body.tb-site h2 { font-size: 34px !important; line-height: 1.18 !important; }
body.tb-site h3 { font-size: 25px !important; line-height: 1.25 !important; }
body.tb-site h4 { font-size: 20px !important; line-height: 1.3 !important; }

body.tb-site .home-hero .display-title {
  font-size: 56px !important;
  line-height: 1.07 !important;
  font-weight: 700 !important;
}

body.tb-site p,
body.tb-site li,
body.tb-site label,
body.tb-site input,
body.tb-site textarea,
body.tb-site button {
  font-family: var(--font-sans) !important;
  letter-spacing: 0 !important;
}

body.tb-site p { color: var(--text) !important; }
body.tb-site blockquote { color: var(--navy) !important; font-family: var(--font-serif) !important; font-weight: 500 !important; }
body.tb-site [style*="box-shadow"] { box-shadow: none !important; }
body.tb-site [style*="border-radius"] { border-radius: var(--radius) !important; }
body.tb-site [style*="background-color: #f7ffff" i],
body.tb-site [style*="background: #f7ffff" i] { background: var(--page) !important; }
body.tb-site img { background: transparent !important; }
body.tb-site [style*="background: #F7F3EA" i],
body.tb-site [style*="background-color: #F7F3EA" i],
body.tb-site [style*="background: #F0EBDF" i] { background: var(--yellow-50) !important; }
body.tb-site [style*="background: #E9E3D7" i],
body.tb-site [style*="background-color: #E9E3D7" i] { background: var(--aqua-50) !important; }
body.tb-site [style*="background: #263650" i],
body.tb-site [style*="background-color: #263650" i] { background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('/uploads/ChatGPT Image Aug 9, 2026, 03_00_42 PM.png') center / cover no-repeat !important; }
body.tb-site [style*="color: #1C1A17" i],
body.tb-site [style*="color: rgb(23, 23, 28)" i] { color: var(--navy) !important; }
body.tb-site [style*="color: #4A443A" i] { color: var(--text) !important; }
body.tb-site [style*="color: #6A6256" i] { color: var(--muted) !important; }
body.tb-site [style*="--accent"] { --accent: var(--cobalt) !important; --accent-deep: var(--cobalt-dark) !important; }

body.tb-site main,
body.tb-site [role="main"] { display: block; }

body.tb-site article p,
body.article-page p,
body.tb-site [data-screen-label*="Article" i] p {
  max-width: 72ch;
  font-family: var(--font-serif) !important;
  font-size: 19px !important;
  line-height: 1.72 !important;
}

body.tb-site article h1,
body.tb-site article h2,
body.tb-site article h3,
body.article-page h1,
body.article-page h2,
body.article-page h3,
body.article-page h4 {
  font-family: var(--font-sans) !important;
  font-weight: 600 !important;
}

body.article-page p,
body.article-page li { max-width: 72ch; }

body.article-page nav p,
body.article-page header p,
body.article-page footer p,
body.article-page button,
body.article-page .button { font-family: var(--font-sans) !important; }

body.article-page .eyebrow {
  font-family: var(--font-sans) !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
}

body.article-page .article-hero {
  position: relative;
  overflow: hidden;
  background: var(--page) !important;
  border-bottom: 1px solid var(--border);
}

body.article-page .article-hero--aqua {
  background: var(--aqua-50) !important;
  border-bottom-color: #ccebe8;
}

.article-hero__inner {
  width: min(760px, calc(100% - 128px));
  margin-inline: auto;
  padding-block: 32px 28px;
}

body.article-page .article-hero__inner .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

body.article-page .article-hero__inner .eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--teal-dark);
}

body.article-page .article-hero--aqua .eyebrow::before {
  background: var(--cobalt);
}

.article-hero__inner .page-title { max-width: 22ch; }

body.article-page h1,
body.article-page .page-title {
  max-width: 22ch;
  font-size: 32px !important;
  line-height: 1.18 !important;
}

body.article-page .article-hero__inner--rich {
  width: min(760px, calc(100% - 128px)) !important;
  padding: 36px 0 32px !important;
}

body.article-page .article-hero__label {
  margin-bottom: 14px !important;
}

body.article-page .article-hero__label > span:first-child {
  background: var(--teal-dark) !important;
}

body.article-page .article-hero__inner > a + .eyebrow {
  margin-top: 20px !important;
}

body.article-page .article-hero__inner--rich > .article-dek {
  max-width: 60ch;
  margin-top: 18px !important;
  font-family: var(--font-sans) !important;
  font-size: 18px !important;
  line-height: 1.55 !important;
}

body.article-page .article-hero__inner--rich > .article-meta {
  margin-top: 22px !important;
  padding-top: 16px !important;
}

body.article-page [data-screen-label] > section:first-of-type > div:first-child {
  padding-top: 48px !important;
  padding-bottom: 34px !important;
}

.article-body {
  width: min(var(--readable), calc(100% - 128px));
  margin-inline: auto;
  padding-block: 62px 88px;
}

.article-body > :first-child { margin-top: 0 !important; }
.article-body > :last-child { margin-bottom: 0 !important; }
.article-body p { margin: 0 0 1.25em; }

.article-body h2 {
  margin: 2.1em 0 .7em;
  font-size: 28px !important;
  line-height: 1.2 !important;
}

.article-body h2:first-child { margin-top: 0; }

.article-body h3 {
  margin: 1.8em 0 .5em;
  font-size: 22px !important;
  line-height: 1.25 !important;
}

.article-body ul,
.article-body ol {
  margin: -.35em 0 1.6em;
  padding-left: 1.25em;
}

.article-body li {
  margin: .45em 0;
  font-family: var(--font-serif) !important;
  font-size: 19px;
  line-height: 1.62;
}

.article-body blockquote {
  margin: 2.1em 0;
  padding: 24px 0 24px 26px;
  border-left: 4px solid var(--teal);
  font-size: 21px;
  line-height: 1.58;
}

.article-body blockquote p { font: inherit !important; }

.article-note {
  padding: 18px 20px;
  background: var(--aqua-50);
  border-left: 4px solid var(--teal);
}

body.article-page .article-note p {
  margin: 0;
  font-family: var(--font-sans) !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
}

.article-manifesto {
  margin: 2em 0;
  padding: 30px;
  background: var(--navy);
  color: #fff;
}

.article-manifesto p {
  margin: 0 0 14px;
  color: #fff !important;
  font-family: var(--font-sans) !important;
  font-size: 17px !important;
  font-weight: 600;
  line-height: 1.45 !important;
  letter-spacing: .03em !important;
}

.article-manifesto p:last-child { margin-bottom: 0; }
.article-empty { min-height: 360px; }

.rebbeim-gate {
  width: min(520px, calc(100% - 48px));
  margin: 0 auto;
  padding-block: 72px 96px;
}

.rebbeim-gate__panel {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 5px solid var(--cobalt);
}

.rebbeim-gate label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-weight: 600;
}

.rebbeim-gate input {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  background: #fff;
  font-size: 17px;
}

.rebbeim-gate .button { width: 100%; margin-top: 14px; }
.rebbeim-gate__error { margin: 12px 0 0; color: #9b2147 !important; font-size: 15px !important; }
[hidden] { display: none !important; }

@media (max-width: 899px) {
  .container,
  .site-header__inner,
  body.tb-site header > div,
  .site-footer__grid,
  .site-footer__bottom,
  body.tb-site footer > div:first-child,
  body.tb-site footer > div:last-child {
    width: min(100% - 48px, var(--container));
  }

  .nav-toggle { display: inline-flex; }

  .site-nav,
  body.tb-site header nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    display: none !important;
    padding: 14px 24px 24px;
    flex-direction: column;
    align-items: stretch !important;
    gap: 0 !important;
    background: #fff;
    border-bottom: 1px solid var(--border);
  }

  .site-nav.is-open,
  body.tb-site header nav.is-open { display: flex !important; }

  .nav-group { width: 100%; }

  .nav-primary-row {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 48px;
  }

  .submenu-toggle {
    width: 48px;
    height: 48px;
    justify-self: end;
  }

  .site-nav .nav-parent,
  body.tb-site header nav .nav-parent { width: 100%; }

  .nav-submenu {
    position: static;
    width: 100%;
    min-width: 0;
    max-width: none;
    display: grid;
    margin: 0 0 8px;
    padding: 2px 0 6px 16px;
    visibility: visible;
    opacity: 1;
    transform: none;
    border: 0;
    border-left: 2px solid var(--border);
    border-radius: 0;
    box-shadow: none;
    transition: none;
  }

  .site-nav .nav-submenu a,
  body.tb-site header nav .nav-submenu a { min-height: 44px; }

  .site-nav a,
  body.tb-site header nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 12px 4px !important;
  }

  .site-nav .nav-contact,
  body.tb-site header nav > a:last-child {
    justify-content: center;
    margin-top: 8px;
  }

  .home-hero__inner,
  .mission__inner {
    grid-template-columns: 1fr;
  }

  .home-hero__inner { min-height: 0; }
  .home-hero__copy { max-width: 620px; }
  .illustration-frame { max-width: 680px; margin-inline: auto; }
  .mission__copy { max-width: 620px; }
  .audience-path { padding-inline: 22px; }

  .site-footer__grid,
  body.tb-site footer > div:first-child { grid-template-columns: 1.4fr 1fr !important; }
}

@media (max-width: 639px) {
  body.tb-site { font-size: 17px; }

  .container,
  .site-header__inner,
  body.tb-site header > div,
  .site-footer__grid,
  .site-footer__bottom,
  body.tb-site footer > div:first-child,
  body.tb-site footer > div:last-child {
    width: min(100% - 40px, var(--container));
  }

  .display-title { font-size: 40px; line-height: 1.1; }
  body.tb-site .home-hero .display-title {
    font-size: 40px !important;
    line-height: 1.1 !important;
  }
  .page-title,
  body.tb-site h1 { font-size: 36px !important; line-height: 1.16 !important; }
  .section-title,
  body.tb-site h2 { font-size: 29px !important; line-height: 1.2 !important; }
  body.tb-site h3 { font-size: 23px !important; }
  .lead { font-size: 19px; }

  .article-hero__inner,
  .article-body {
    width: min(100% - 40px, 920px);
  }

  .article-hero__inner { padding-block: 26px 22px; }
  body.article-page h1,
  body.article-page .page-title { font-size: 27px !important; line-height: 1.2 !important; }
  body.article-page .article-hero__inner--rich {
    padding: 28px 0 24px !important;
  }
  body.article-page .article-hero__inner--rich > .article-dek {
    margin-top: 14px !important;
    font-size: 17px !important;
    line-height: 1.5 !important;
  }
  body.article-page .article-hero__inner--rich > .article-meta {
    margin-top: 18px !important;
    padding-top: 14px !important;
    flex-wrap: wrap;
    gap: 10px 16px !important;
  }
  body.article-page [data-screen-label] > section:first-of-type > div:first-child {
    padding-top: 34px !important;
    padding-bottom: 26px !important;
  }
  .article-body { padding-block: 44px 64px; }
  .article-body h2 { font-size: 25px !important; }
  .article-body h3 { font-size: 20px !important; }
  .article-manifesto { padding: 24px 20px; }

  .home-hero__inner { padding-block: 52px 44px; gap: 30px; }
  .home-hero .illustration-frame,
  .mission .illustration-frame {
    width: calc(100% + 24px);
    max-width: none;
    margin-left: -12px;
  }
  .button-row { align-items: stretch; }
  .button { width: 100%; }
  .trust-strip__inner { padding-block: 24px; }
  .school-list { justify-content: flex-start; text-align: left; gap: 9px 0; }
  .school-list span { width: 50%; }
  .school-list span:not(:last-child)::after { display: none; }

  .mission { padding-block: 62px; }
  .mission__inner { gap: 28px; }
  .audience-band { padding-block: 48px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-path { min-height: 0; padding: 24px 0; }
  .audience-path + .audience-path { border-left: 0; border-top: 1px solid var(--border); }

  .process-band { padding-block: 50px; }
  .process-grid { grid-template-columns: 1fr; gap: 30px; }
  .process-arrow { display: none; }
  .feedback-band { padding-block: 60px; }
  body.tb-site .feedback-title { font-size: 34px !important; line-height: 1.15 !important; }
  .feedback-featured { margin-top: 28px; padding-bottom: 34px; }
  body.tb-site .feedback-quote--featured {
    padding-inline: 34px;
    font-size: 30px;
    line-height: 1.34;
  }
  .feedback-quote--featured .feedback-mark { left: 0; top: -5px; font-size: 50px; }
  .feedback-grid { grid-template-columns: 1fr; margin-top: 18px; }
  .feedback-quote { padding: 22px 20px 22px 42px; font-size: 21px; }
  .feedback-grid .feedback-quote + .feedback-quote {
    border-left: 0;
    border-top: 1px solid #f1c9a8;
  }
  .feedback-mark { left: 8px; top: 17px; }

  .closing-cta { padding-block: 56px; }
  .filter-teaser__inner { align-items: flex-start; flex-direction: column; }

  .site-footer__grid,
  body.tb-site footer > div:first-child { grid-template-columns: 1fr !important; gap: 32px !important; }
  .site-footer__bottom,
  body.tb-site footer > div:last-child { align-items: flex-start !important; flex-direction: column !important; }

  body.tb-site article p,
  body.article-page p,
  body.tb-site [data-screen-label*="Article" i] p {
    font-size: 18px !important;
    line-height: 1.68 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}


/* Dark-surface contrast and parent reading collections */
:root {
  --on-dark: #FFFFFF;
  --on-dark-muted: #DFE7F0;
}

.site-footer,
.site-footer .footer-brand,
.site-footer .footer-tagline,
.site-footer .footer-heading,
.site-footer .footer-links a,
.site-footer__bottom,
.site-footer__bottom span {
  color: var(--on-dark) !important;
}

.site-footer .footer-copy {
  color: var(--on-dark-muted) !important;
}

.site-footer__bottom span:last-child {
  opacity: 0.6;
}

body.tb-site [style*="background: var(--accent)" i],
body.tb-site [style*="background:var(--accent)" i],
body.tb-site [style*="background: var(--accent-deep)" i],
body.tb-site [style*="background:var(--accent-deep)" i],
body.tb-site [style*="background: #263650" i],
body.tb-site [style*="background:#263650" i] {
  color: var(--on-dark) !important;
}

body.tb-site [style*="background: var(--accent)" i] :is(h1, h2, h3, h4, p, li, blockquote, a, button, small, strong, em, span),
body.tb-site [style*="background:var(--accent)" i] :is(h1, h2, h3, h4, p, li, blockquote, a, button, small, strong, em, span),
body.tb-site [style*="background: var(--accent-deep)" i] :is(h1, h2, h3, h4, p, li, blockquote, a, button, small, strong, em, span),
body.tb-site [style*="background:var(--accent-deep)" i] :is(h1, h2, h3, h4, p, li, blockquote, a, button, small, strong, em, span),
body.tb-site [style*="background: #263650" i] :is(h1, h2, h3, h4, p, li, blockquote, a, button, small, strong, em, span),
body.tb-site [style*="background:#263650" i] :is(h1, h2, h3, h4, p, li, blockquote, a, button, small, strong, em, span) {
  color: var(--on-dark) !important;
}

.short-reads-body,
.long-reads-body {
  width: min(1120px, calc(100% - 128px));
  max-width: none;
  padding-top: 54px;
}

.short-reads-topic__header,
.reading-list-heading {
  max-width: 700px;
  margin-bottom: 28px;
}

.short-reads-topic__header .eyebrow,
.reading-list-heading .eyebrow {
  margin-bottom: 12px !important;
}

.short-reads-topic__header h2,
.reading-list-heading h2 {
  margin: 0 !important;
  color: var(--navy) !important;
  font-family: var(--font-sans) !important;
  font-size: 30px !important;
  font-weight: 600 !important;
  line-height: 1.22 !important;
}

.short-reads-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.short-read {
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--teal);
  background: #fff;
}

.short-read:nth-child(2n) {
  border-top-color: var(--cobalt);
}

.short-read p {
  margin: 0 !important;
  color: var(--text) !important;
  font-family: var(--font-serif) !important;
  font-size: 19px !important;
  line-height: 1.62 !important;
}

.short-read--quote {
  border-top-color: var(--coral) !important;
  background: var(--yellow-50);
}

.short-read--quote blockquote {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  color: var(--navy) !important;
  font-family: var(--font-serif) !important;
  font-size: 20px !important;
  line-height: 1.55 !important;
}

.short-read--quote blockquote p + p {
  margin-top: 1em !important;
}

.short-reads-manifesto {
  margin: 68px 0;
  padding: 44px 0 0;
  border-top: 1px solid var(--border);
}

.short-reads-manifesto__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.short-read-manifesto__item {
  display: flex;
  min-height: 146px;
  padding: 22px;
  align-items: flex-end;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.short-read-manifesto__item:nth-child(4n + 1) { background: var(--aqua-50); }
.short-read-manifesto__item:nth-child(4n + 2) { background: var(--yellow-50); }

.short-read-manifesto__item p {
  margin: 0 !important;
  color: var(--navy) !important;
  font-family: var(--font-sans) !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  line-height: 1.42 !important;
}

.short-reads-reflections {
  margin-top: 8px;
}

.short-read--wide {
  grid-column: 1 / -1;
  padding-inline: clamp(28px, 7vw, 96px);
}

.short-read--statement {
  grid-column: 1 / -1;
  border-top-color: var(--coral) !important;
  background: var(--coral-50);
  text-align: center;
}

.short-read--statement p {
  max-width: 760px;
  margin-inline: auto !important;
  color: var(--navy) !important;
  font-family: var(--font-sans) !important;
  font-size: 25px !important;
  font-weight: 600 !important;
  line-height: 1.32 !important;
}

.book-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.book-recommendation {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 26px;
  min-height: 310px;
  padding: 24px;
  border: 1px solid var(--border);
  background: #fff;
}

.book-cover {
  display: flex;
  min-height: 224px;
  padding: 12px;
  align-items: center;
  justify-content: center;
}

.book-cover--yellow { background: var(--yellow-50); }
.book-cover--aqua { background: var(--aqua-50); }
.book-cover--coral { background: var(--coral-50); }
.book-cover--purple { background: var(--purple-50); }

.book-cover img {
  display: block;
  width: 100%;
  max-height: 236px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(8, 43, 91, .18);
}

.book-recommendation__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.book-recommendation__author {
  margin: 0 0 8px !important;
  color: var(--teal-dark) !important;
  font-family: var(--font-sans) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
}

.book-recommendation h2 {
  margin: 0 0 13px !important;
  color: var(--navy) !important;
  font-family: var(--font-sans) !important;
  font-size: 25px !important;
  font-weight: 600 !important;
  line-height: 1.18 !important;
}

.book-recommendation__content > p:not(.book-recommendation__author) {
  margin: 0 !important;
  color: var(--text) !important;
  font-family: var(--font-sans) !important;
  font-size: 17px !important;
  line-height: 1.52 !important;
}

.book-recommendation__link {
  display: inline-flex;
  min-height: 44px;
  margin-top: auto;
  padding-top: 20px;
  align-items: center;
  gap: 8px;
  color: var(--cobalt) !important;
  font-family: var(--font-sans) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.book-recommendation__link:hover {
  color: var(--cobalt-dark) !important;
}

@media (max-width: 899px) {
  .short-reads-body,
  .long-reads-body {
    width: min(100% - 48px, 1120px);
  }

  .short-reads-manifesto__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .short-read-manifesto__item:nth-child(4n + 1),
  .short-read-manifesto__item:nth-child(4n + 2) {
    background: #fff;
  }

  .short-read-manifesto__item:nth-child(4n + 1),
  .short-read-manifesto__item:nth-child(4n + 2) {
    background: var(--aqua-50);
  }

  .short-read-manifesto__item:nth-child(4n + 2),
  .short-read-manifesto__item:nth-child(4n + 3) {
    background: var(--yellow-50);
  }

  .book-recommendation {
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 22px;
  }

  .book-cover {
    min-height: 198px;
  }
}

@media (max-width: 639px) {
  .short-reads-body,
  .long-reads-body {
    width: min(100% - 40px, 1120px);
  }

  .short-reads-topic__header h2,
  .reading-list-heading h2 {
    font-size: 26px !important;
  }

  .short-reads-grid,
  .book-list {
    grid-template-columns: 1fr;
  }

  .short-read {
    padding: 24px 22px;
  }

  .short-read p,
  .short-read--quote blockquote {
    font-size: 18px !important;
  }

  .short-reads-manifesto {
    margin: 52px 0;
    padding-top: 36px;
  }

  .short-reads-manifesto__grid {
    grid-template-columns: 1fr;
  }

  .short-read-manifesto__item {
    min-height: 0;
    padding: 20px;
  }

  .short-read--wide {
    padding-inline: 22px;
  }

  .short-read--statement p {
    font-size: 23px !important;
  }

  .book-recommendation {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 18px;
    min-height: 0;
    padding: 20px;
  }

  .book-cover {
    min-height: 164px;
    padding: 8px;
  }

  .book-cover img {
    max-height: 172px;
  }

  .book-recommendation h2 {
    font-size: 22px !important;
  }

  .book-recommendation__content > p:not(.book-recommendation__author) {
    font-size: 16px !important;
  }

  .book-recommendation__link {
    margin-top: 14px;
    padding-top: 0;
  }
}


/* Older page templates use a different footer and light cards inside dark bands. */
body.tb-site footer:not(.site-footer),
body.tb-site footer:not(.site-footer) *,
body.tb-site footer:not(.site-footer) > div:last-child > div:first-child {
  color: #fff !important;
}

body.tb-site footer:not(.site-footer) > div:last-child > div:last-child {
  opacity: 0.6;
}

body.tb-site [style*="background: rgb(244, 239, 227)" i] :is(h1, h2, h3, h4, a, button, strong, em, span),
body.tb-site [style*="background: rgb(246, 241, 230)" i] :is(h1, h2, h3, h4, a, button, strong, em, span),
body.tb-site [style*="background: rgb(247, 243, 234)" i] :is(h1, h2, h3, h4, a, button, strong, em, span) {
  color: var(--navy) !important;
}

body.tb-site [style*="background: rgb(244, 239, 227)" i] :is(p, li, blockquote, small),
body.tb-site [style*="background: rgb(246, 241, 230)" i] :is(p, li, blockquote, small),
body.tb-site [style*="background: rgb(247, 243, 234)" i] :is(p, li, blockquote, small) {
  color: var(--text) !important;
}


body.tb-site a[style*="background: rgb(244, 239, 227)" i],
body.tb-site a[style*="background: rgb(246, 241, 230)" i],
body.tb-site a[style*="background: rgb(247, 243, 234)" i] {
  color: var(--navy) !important;
}


/* Reading collection refinement: compact headers, grouped short reads, and bare book covers. */
.article-hero--compact .article-hero__inner { width: min(760px, calc(100% - 128px)); padding: 24px 0 22px; }
.article-hero--compact .eyebrow { margin-bottom: 8px; }
body.article-page .article-hero--compact .page-title { font-size: 30px; line-height: 1.15; }
.short-reads-body { width: min(900px, calc(100% - 128px)); padding-top: 32px; }
.short-reads-art { margin: 0 0 52px; }
.short-reads-art img { display: block; width: 100%; height: auto; }
.short-reads-topic__header { max-width: 760px; margin-bottom: 24px; }
.short-reads-topic__header h2, .reading-list-heading h2 { font-size: 25px; line-height: 1.25; }
.short-reads-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 26px; }
.short-reads-body .short-read, .short-reads-body .short-read:nth-child(2n) { min-height: 0; padding: 0 0 0 28px; border: 0; border-left: 3px solid var(--teal); border-radius: 0; background: transparent; box-shadow: none; }
.short-reads-body .short-read p { max-width: 760px; margin: 0; color: var(--text); font-family: var(--font-serif); font-size: 16px; line-height: 1.7; font-weight: 400 !important; }
.short-reads-body .short-read p + p { margin-top: 1.15em; }
.short-reads-body .short-read--quote { border-left-color: var(--coral); }
.short-reads-body .short-read--quote blockquote { margin: 0; font-weight: 400 !important; }
.short-reads-body .short-read--quote blockquote p { color: var(--navy); font-size: 18px; line-height: 1.55; font-weight: 400 !important; }
.short-reads-body .short-read strong { font-weight: 400 !important; }
.short-reads-manifesto { margin: 68px 0; padding: 0; border: 0; }
.short-reads-body .short-read--manifesto { max-width: 820px; padding: 32px 38px; border-left: 0; background: var(--navy); }
.short-reads-body .short-read--manifesto p { max-width: none; color: var(--white); font-family: var(--font-serif) !important; font-size: 15px; font-weight: 400; line-height: 1.55; }
.short-reads-body .short-read--manifesto p + p { margin-top: 10px; }
.short-reads-body .short-read p.short-read__source {
  margin: 10px 0 0 -28px;
  max-width: 760px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.4;
  letter-spacing: .02em;
}
.short-reads-body .short-read--manifesto p.short-read__source {
  margin-left: 0;
  color: #DFE7F0;
  font-weight: 700;
  font-style: italic;
  font-size: 11px;
}
.short-reads-body .short-read--manifesto p.short-read__explain {
  color: #DFE7F0;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
}
.short-reads-reflections { margin: 0 0 20px; }
.short-reads-body .short-read--reflection { border-left-color: var(--cobalt); }
.long-reads-body { width: min(1040px, calc(100% - 128px)); padding-top: 38px; }
.long-reads-body .book-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 66px 74px; margin-top: 34px; }
.long-reads-body .book-recommendation { display: grid; grid-template-columns: 148px minmax(0, 1fr); align-items: start; gap: 30px; min-height: 0; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.long-reads-body .book-cover { display: block; min-height: 0; padding: 0; border: 0; border-radius: 0; background: transparent; }
.long-reads-body .book-cover img { display: block; width: 148px; height: auto; max-height: none; aspect-ratio: auto; object-fit: contain; border-radius: 1px; box-shadow: 0 10px 22px rgba(8, 43, 91, 0.16); }
.long-reads-body .book-recommendation__author { margin: 0 0 6px; color: var(--text-muted); font-size: 13px; font-weight: 400; letter-spacing: 0; }
.long-reads-body .book-recommendation h2 { margin: 0 0 10px; color: var(--navy); font-size: 22px; font-weight: 600; line-height: 1.25; }
.long-reads-body .book-recommendation__content > p:not(.book-recommendation__author) { margin: 0; color: var(--text); font-size: 16px; line-height: 1.6; }
.long-reads-body .book-recommendation__link { margin-top: 15px; }
@media (max-width: 899px) {
  .article-hero--compact .article-hero__inner, .short-reads-body, .long-reads-body { width: min(100% - 64px, 900px); }
  .long-reads-body .book-list { gap: 52px 42px; }
  .long-reads-body .book-recommendation { grid-template-columns: 128px minmax(0, 1fr); gap: 24px; }
  .long-reads-body .book-cover img { width: 128px; }
}
@media (max-width: 639px) {
  .article-hero--compact .article-hero__inner { width: calc(100% - 40px); padding: 20px 0 18px; }
  body.article-page .article-hero--compact .page-title { font-size: 27px; }
  .short-reads-body, .long-reads-body { width: calc(100% - 40px); }
  .short-reads-body { padding-top: 24px; }
  .short-reads-art { margin-bottom: 36px; }
  .short-reads-topic__header h2, .reading-list-heading h2 { font-size: 22px; }
  .short-reads-body .short-read, .short-reads-body .short-read:nth-child(2n) { padding-left: 20px; }
  .short-reads-body .short-read p.short-read__source { margin-left: -20px; }
  .short-reads-body .short-read p { font-size: 17px; }
  .short-reads-body .short-read--quote blockquote p { font-size: 18px; }
  .short-reads-body .short-read--manifesto { padding: 26px 24px; }
  .short-reads-body .short-read--manifesto p { font-size: 15px; }
  .short-reads-manifesto { margin: 48px 0; }
  .long-reads-body { padding-top: 28px; }
  .long-reads-body .book-list { grid-template-columns: minmax(0, 1fr); gap: 42px; margin-top: 28px; }
  .long-reads-body .book-recommendation { grid-template-columns: 96px minmax(0, 1fr); gap: 20px; }
  .long-reads-body .book-cover img { width: 96px; }
  .long-reads-body .book-recommendation__author { margin-bottom: 4px; font-size: 12px; }
  .long-reads-body .book-recommendation h2 { font-size: 20px; }
  .long-reads-body .book-recommendation__content > p:not(.book-recommendation__author) { font-size: 15px; }
}


/* Quiet author metadata must outrank the original reading-list rule. */
.long-reads-body .book-recommendation__author {
  margin: 0 0 6px !important;
  color: var(--text-muted) !important;
  font-family: var(--font-sans) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
}
.long-reads-body .book-recommendation h2 {
  margin: 0 0 10px !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
}
.long-reads-body .book-recommendation__content > p:not(.book-recommendation__author) {
  font-size: 16px !important;
  line-height: 1.6 !important;
}
@media (max-width: 639px) {
  .long-reads-body .book-recommendation__author { font-size: 12px !important; }
  .long-reads-body .book-recommendation h2 { font-size: 20px !important; }
  .long-reads-body .book-recommendation__content > p:not(.book-recommendation__author) { font-size: 15px !important; }
}


/* Reading-page simplification: direct content, independent nuggets, and uniform book covers. */
.short-reads-body { padding-top: 56px; }
.short-reads-opening { display: grid; grid-template-columns: minmax(0, 1fr) 210px; align-items: start; gap: 48px; }
.short-reads-opening .short-reads-topic__header { margin-bottom: 30px; }
.short-reads-opening .short-reads-grid { gap: 40px; }
.short-reads-art--parents { width: 210px; margin: 4px 0 0; }
.short-reads-art--parents img { width: 100%; }
.short-reads-manifesto, .short-reads-reflections { margin: 58px 0 0; padding: 0; }
.short-reads-body .short-read--manifesto { max-width: 760px; padding: 0 0 0 28px; border-left: 3px solid var(--purple); background: transparent !important; }
.short-reads-body .short-read--manifesto p { max-width: 760px; color: var(--text) !important; font-family: var(--font-serif); font-size: 16px; font-weight: 400; line-height: 1.7; }
.short-reads-body .short-read--manifesto p + p { margin-top: 1.15em; }
.short-reads-body .short-read__label { margin-bottom: 15px !important; color: var(--text-muted) !important; font-family: var(--font-sans) !important; font-size: 13px !important; font-weight: 600 !important; letter-spacing: 0.04em; line-height: 1.2 !important; text-transform: uppercase; }
.long-reads-body { padding-top: 64px; }
.reading-list-heading { margin-bottom: 38px; }
.reading-list-heading h1 { max-width: 620px; margin: 0; color: var(--navy); font-family: var(--font-sans); font-size: 28px; font-weight: 600; line-height: 1.25; }
.long-reads-body .book-list { margin-top: 0; }
.long-reads-body .book-recommendation { grid-template-columns: 148px minmax(0, 1fr); }
.long-reads-body .book-cover, .long-reads-body .book-cover img { width: 148px; height: 222px; }
.long-reads-body .book-cover img { object-fit: cover; box-shadow: 0 10px 22px rgba(8, 43, 91, 0.16); }
@media (max-width: 899px) {
  .short-reads-opening { grid-template-columns: minmax(0, 1fr) 184px; gap: 36px; }
  .short-reads-art--parents { width: 184px; }
  .long-reads-body .book-recommendation { grid-template-columns: 128px minmax(0, 1fr); }
  .long-reads-body .book-cover, .long-reads-body .book-cover img { width: 128px; height: 192px; }
}
@media (max-width: 639px) {
  .short-reads-body { padding-top: 38px; }
  .short-reads-opening { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .short-reads-art--parents { width: min(190px, 56vw); margin: 0 0 0 auto; }
  .short-reads-opening .short-reads-grid { gap: 32px; }
  .short-reads-manifesto, .short-reads-reflections { margin-top: 46px; }
  .short-reads-body .short-read--manifesto { padding-left: 20px; }
  .short-reads-body .short-read--manifesto p { font-size: 17px; }
  .long-reads-body { padding-top: 40px; }
  .reading-list-heading { margin-bottom: 30px; }
  .reading-list-heading h1 { font-size: 24px; }
  .long-reads-body .book-recommendation { grid-template-columns: 96px minmax(0, 1fr); }
  .long-reads-body .book-cover, .long-reads-body .book-cover img { width: 96px; height: 144px; }
}


/* Parent library pages */
.parent-library {
  width: min(var(--container), calc(100% - 128px));
  margin-inline: auto;
  padding-block: 58px 88px;
}

.library-intro {
  max-width: 600px;
  margin-bottom: 34px;
}

.library-intro h2,
.media-page__heading h2,
.resources-heading h2,
.support-heading h2,
.school-links h2 {
  margin: 0;
  color: var(--navy);
  font: 700 32px/1.18 var(--font-sans);
}

.library-intro p,
.media-page__heading p,
.resources-heading p,
.support-heading p,
.school-links > p {
  max-width: 58ch;
  margin: 12px 0 0;
  color: var(--muted);
  font: 400 18px/1.5 var(--font-sans);
}

.reading-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.reading-path {
  min-height: 218px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--navy) !important;
  text-decoration: none;
  transition: background-color 180ms ease;
}

.reading-path + .reading-path { border-left: 1px solid var(--border); }
.reading-path:hover { background: var(--aqua-50); color: var(--navy) !important; }
.reading-path--medium:hover { background: var(--cobalt-50); }
.reading-path--long:hover { background: var(--purple-50); }

.reading-path__number {
  color: var(--teal-dark);
  font: 600 13px/1 var(--font-sans);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.reading-path h3 {
  margin: 34px 0 0;
  color: var(--navy);
  font: 700 27px/1.15 var(--font-sans);
}

.reading-path p {
  margin: 10px 0 0;
  color: var(--muted);
  font: 400 16px/1.45 var(--font-sans);
}

.reading-path__link {
  margin-top: 25px;
  color: var(--cobalt-dark);
  font: 600 15px/1.2 var(--font-sans);
}

.media-page__heading,
.resources-heading,
.support-heading {
  margin-bottom: 32px;
}

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

.media-card {
  margin: 0;
  min-width: 0;
}

.media-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  /* Keep unloaded embedded players neutral; this applies to every future media card too. */
  background: transparent;
  border-radius: var(--radius);
}

.media-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.media-card figcaption {
  margin-top: 14px;
  color: var(--navy);
  font: 700 20px/1.25 var(--font-sans);
}

.media-card figcaption span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font: 400 14px/1.4 var(--font-sans);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.resource-card,
.school-link-card {
  display: block;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--navy) !important;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.resource-card:hover,
.school-link-card:hover {
  border-color: var(--cobalt);
  color: var(--navy) !important;
  transform: translateY(-2px);
}

.resource-card img,
.school-link-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  object-position: top;
  border-bottom: 1px solid var(--border);
}

.resource-card__body,
.school-link-card__body {
  padding: 17px 20px 19px;
}

.resource-card__name,
.school-link-card__name {
  color: var(--navy);
  font: 700 20px/1.25 var(--font-sans);
}

.resource-card__domain,
.school-link-card__domain {
  margin-top: 5px;
  color: var(--cobalt-dark);
  font: 600 14px/1.3 var(--font-sans);
}

.support-section {
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}

.support-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, .8fr);
  overflow: hidden;
  margin-top: 28px;
  background: var(--aqua-50);
  border: 1px solid #ccebe8;
  border-radius: var(--radius);
  color: var(--navy) !important;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.support-card:hover {
  border-color: var(--teal);
  color: var(--navy) !important;
  transform: translateY(-2px);
}

.support-card__body {
  padding: 30px;
  align-self: center;
}

.support-card__body h3 {
  margin: 0;
  color: var(--navy);
  font: 700 25px/1.2 var(--font-sans);
}

.support-card__body p {
  margin: 10px 0 0;
  color: var(--cobalt-dark);
  font: 600 15px/1.3 var(--font-sans);
}

.support-card img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  display: block;
  object-fit: cover;
  object-position: top;
}

.school-links {
  width: min(var(--readable), calc(100% - 128px));
  margin: 0 auto;
  padding-bottom: 88px;
}

.school-link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 28px;
}

@media (max-width: 820px) {
  .parent-library { width: min(var(--container), calc(100% - 48px)); padding-block: 42px 64px; }
  .reading-paths { grid-template-columns: 1fr; }
  .reading-path { min-height: 0; padding: 26px 22px; }
  .reading-path + .reading-path { border-top: 1px solid var(--border); border-left: 0; }
  .reading-path h3 { margin-top: 18px; }
  .media-grid { grid-template-columns: 1fr; gap: 32px; }
  .resource-grid, .school-link-grid { grid-template-columns: 1fr; }
  .support-card { grid-template-columns: 1fr; }
  .support-card img { min-height: 0; aspect-ratio: 16 / 8.5; }
  .school-links { width: min(var(--readable), calc(100% - 48px)); padding-bottom: 64px; }
}

@media (max-width: 560px) {
  .library-intro h2, .media-page__heading h2, .resources-heading h2, .support-heading h2, .school-links h2 { font-size: 28px; }
  .resource-card__body, .school-link-card__body { padding: 15px 16px 17px; }
  .support-card__body { padding: 24px; }
}


.resource-card__preview {
  aspect-ratio: 16 / 8.5;
  display: grid;
  place-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.resource-card__preview span {
  font: 700 29px/1.02 var(--font-sans);
  letter-spacing: -.03em;
}

.resource-card__preview--common {
  background: #edf9f1;
  color: #196d42;
}

.resource-card__preview--internet {
  background: #f8edf7;
  color: #6b45d8;
}

.resource-card__preview--guard {
  min-height: 210px;
  background: #eff4ff;
  color: var(--navy);
}


.media-card__watch {
  display: block;
  width: max-content;
  margin-top: 9px;
  color: var(--cobalt-dark);
  font: 600 14px/1.3 var(--font-sans);
  text-decoration: none;
}

.media-card__watch:hover { text-decoration: underline; }


/* Parent reading refinements: distinct path panels and a regular Short Reads heading. */
.reading-paths {
  gap: 18px;
  border: 0;
}

.reading-path,
.reading-path + .reading-path {
  min-height: 232px;
  border: 1px solid var(--border);
  border-top-width: 4px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(8, 43, 91, .08);
}

.reading-path--short {
  background: var(--aqua-50);
  border-top-color: var(--teal);
}

.reading-path--medium {
  background: var(--cobalt-50);
  border-top-color: var(--cobalt);
}

.reading-path--long {
  background: #e8def5;
  border-top-color: var(--purple);
}

.reading-path--short:hover {
  background: #f0fbfa;
  border-color: var(--border);
  border-top-color: var(--teal);
}

.reading-path--medium:hover {
  background: #f5f8ff;
  border-color: var(--border);
  border-top-color: var(--cobalt);
}

.reading-path--long:hover {
  background: #f0eafa;
  border-color: var(--border);
  border-top-color: var(--purple);
}

.reading-path h3 { margin-top: 20px; }

body.tb-site .short-reads-topic__header,
body.tb-site .reading-list-heading {
  position: static !important;
  top: auto !important;
  z-index: auto !important;
  min-height: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.short-reads-opening {
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 56px;
}

.short-reads-art--parents {
  width: 320px;
  margin-top: 0;
  mix-blend-mode: multiply;
}

.short-reads-art--parents img {
  display: block;
  width: 100%;
  mix-blend-mode: multiply;
}

@media (max-width: 899px) {
  .short-reads-opening {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 40px;
  }

  .short-reads-art--parents { width: 260px; }
}

@media (max-width: 820px) {
  .reading-paths { gap: 14px; }

  .reading-path,
  .reading-path + .reading-path {
    border: 1px solid var(--border);
    border-top-width: 4px;
  }
}

@media (max-width: 639px) {
  .short-reads-art--parents {
    width: min(240px, 68vw);
    margin-left: auto;
  }
}


/* Parent resource descriptions and preview card balance */
.resource-card {
  display: flex;
  flex-direction: column;
}

.resource-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.resource-card__description {
  margin: 9px 0 14px;
  color: var(--muted);
  font: 400 15px/1.48 var(--font-sans);
}

.resource-card__domain {
  margin-top: auto;
}

.support-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.support-card__description {
  margin: 12px 0 16px !important;
  max-width: 47ch;
  color: var(--muted) !important;
  font: 400 16px/1.5 var(--font-sans) !important;
}

.support-card__domain {
  color: var(--cobalt-dark);
  font: 600 15px/1.3 var(--font-sans);
}


/* Parent resources: match the Student Filter Guide resource cards */
.parent-resource-band {
  background: var(--cobalt);
}

.parent-resource-band__inner {
  width: min(1080px, calc(100% - 72px));
  margin: 0 auto;
  padding: 72px 0 80px;
}

.parent-resource-heading {
  max-width: 64ch;
}

.parent-resource-heading h2 {
  margin: 0;
  color: #fff;
  font: 700 34px/1.18 var(--font-sans);
}

.parent-resource-heading p {
  margin: 18px 0 0;
  max-width: 64ch;
  color: #fff;
  font: 400 18px/1.7 var(--font-sans);
}

.student-resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.student-resource-card {
  display: flex;
  min-width: 0;
  min-height: 234px;
  flex-direction: column;
  padding: 30px;
  background: #f4efe3;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 0;
  color: var(--navy) !important;
  text-decoration: none;
  transition: background-color 180ms ease;
}

.student-resource-card:hover {
  background: #fbf7ee;
  color: var(--navy) !important;
}

.student-resource-card:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.student-resource-card__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.student-resource-card__top h3 {
  margin: 0;
  color: var(--navy);
  font: 700 25px/1.25 var(--font-sans);
}

.student-resource-card__top span {
  flex: none;
  color: var(--navy);
  font: 400 20px/1 var(--font-sans);
}

.student-resource-card__domain {
  margin-top: 2px;
  color: var(--cobalt);
  font: 400 13px/1.4 var(--font-sans);
}

.student-resource-card > p {
  flex: 1;
  margin: 12px 0 0;
  color: var(--body);
  font: 400 16px/1.6 var(--font-sans);
}

.student-resource-card__meta {
  margin-top: 16px;
  color: var(--navy);
  font: 500 11px/1.4 var(--font-sans);
  text-transform: uppercase;
}

.parent-support-resources {
  margin-top: 64px;
}

.student-resource-grid--single {
  grid-template-columns: minmax(0, calc((100% - 16px) / 2));
}

@media (max-width: 720px) {
  .parent-resource-band__inner {
    width: min(100% - 40px, 1080px);
    padding: 56px 0 64px;
  }

  .parent-resource-heading h2 {
    font-size: 29px;
    line-height: 1.2;
  }

  .parent-resource-heading p {
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.6;
  }

  .student-resource-grid,
  .student-resource-grid--single {
    grid-template-columns: 1fr;
  }

  .student-resource-card {
    min-height: 0;
    padding: 24px;
  }

  .student-resource-card__top h3 {
    font-size: 23px;
  }

  .parent-support-resources {
    margin-top: 52px;
  }
}


/* Exact computed-style alignment with the Student Filter Guide */
body.tb-site .parent-resource-band__inner {
  width: 100%;
  max-width: 1080px;
  padding: 72px 36px 80px;
  box-sizing: border-box;
}

body.tb-site .parent-resource-band .parent-resource-heading h2 {
  color: #fff !important;
  font-family: var(--font-sans) !important;
  font-size: 34px !important;
  font-weight: 700 !important;
  line-height: 1.18 !important;
}

body.tb-site .parent-resource-band .parent-resource-heading p {
  color: #fff !important;
  font-family: var(--font-sans) !important;
  font-size: 18.5px !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
}

body.tb-site .parent-resource-band .student-resource-card__top h3 {
  color: var(--navy) !important;
  font-family: var(--font-sans) !important;
  font-size: 25px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
}

body.tb-site .parent-resource-band .student-resource-card > p {
  color: #263247 !important;
  font-family: var(--font-sans) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
}

body.tb-site .parent-resource-band .student-resource-card__domain {
  font-family: var(--font-sans) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
}

body.tb-site .parent-resource-band .student-resource-card__meta {
  font-family: var(--font-sans) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
}

@media (max-width: 720px) {
  body.tb-site .parent-resource-band__inner {
    padding: 56px 20px 64px;
  }

  body.tb-site .parent-resource-band .parent-resource-heading h2 {
    font-size: 29px !important;
    line-height: 1.2 !important;
  }

  body.tb-site .parent-resource-band .parent-resource-heading p {
    font-size: 17px !important;
    line-height: 1.6 !important;
  }

  body.tb-site .parent-resource-band .student-resource-card__top h3 {
    font-size: 23px !important;
  }
}


/* Student Feedback page */
.sf-section {
  background: linear-gradient(180deg, var(--cobalt-50) 0%, var(--aqua-50) 100%);
  padding-block: 24px 100px;
}

.sf-intro {
  max-width: 60ch;
  margin: 80px auto 56px;
  padding: 0 36px;
  text-align: center;
  color: var(--navy);
  font: 700 48px/1.2 var(--font-sans);
  letter-spacing: -0.02em;
}

.sf-quotes {
  display: flex;
  flex-direction: column;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 36px;
}

.sf-quote {
  position: relative;
  margin: 0;
  padding: 28px 28px 28px 56px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
}

.sf-quote + .sf-quote {
  margin-top: 14px;
}

.sf-quote--featured {
  padding: 36px 28px 36px 56px;
}

.sf-mark {
  position: absolute;
  left: 18px;
  top: 20px;
  color: var(--coral);
  font: 600 36px/1 var(--font-sans);
}

.sf-quote p {
  margin: 0;
  color: var(--navy);
  font: 500 italic 20px/1.5 var(--font-serif);
}

.sf-quote--featured p {
  font-size: 24px;
  font-weight: 600;
}

.sf-quote cite {
  display: block;
  margin-top: 14px;
  color: var(--teal-dark);
  font: 600 12px/1.3 var(--font-sans);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-style: normal;
}

@media (max-width: 820px) {
  .sf-quotes { padding: 0 20px; }
  .sf-intro { padding: 0 20px; }
  .sf-quote { padding: 24px 20px 24px 48px; }
  .sf-quote--featured { padding: 30px 20px 30px 48px; }
  .sf-quote p { font-size: 19px; }
  .sf-quote--featured p { font-size: 21px; }
  .sf-mark { left: 14px; top: 16px; font-size: 32px; }
}

/* Bunny Stream media gallery */
.media-grid--bunny {
  align-items: start;
}

.media-grid--bunny .media-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.media-launch {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
}

.media-launch[hidden] {
  display: none;
}

.media-launch__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 180ms ease;
}

.media-launch__shade {
  position: absolute;
  inset: 0;
  background: rgba(8, 43, 91, .14);
  transition: background-color 180ms ease;
}

.media-launch__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 68px;
  height: 68px;
  transform: translate(-50%, -50%);
  color: var(--cobalt);
  transition: transform 180ms ease;
}

.media-launch__play svg {
  width: 100%;
  height: 100%;
  display: block;
}

.media-launch__play circle {
  fill: currentColor;
}

.media-launch__play path {
  fill: #fff;
}

.media-launch__label {
  position: absolute;
  left: 16px;
  bottom: 14px;
  padding: 6px 9px;
  background: rgba(8, 43, 91, .9);
  color: #fff;
  border-radius: 4px;
  font: 600 14px/1.2 var(--font-sans);
}

.media-launch:hover .media-launch__image {
  transform: scale(1.015);
}

.media-launch:hover .media-launch__shade {
  background: rgba(8, 43, 91, .06);
}

.media-launch:hover .media-launch__play {
  transform: translate(-50%, -50%) scale(1.06);
}

.media-launch:focus-visible {
  box-shadow: inset 0 0 0 5px var(--purple), var(--focus) !important;
  border-radius: var(--radius);
}

.media-frame.is-active {
  position: relative;
}

.media-frame.is-active iframe {
  position: absolute;
  inset: 0;
}

.media-player-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.media-card__title {
  display: block;
}

.media-card__meta {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font: 400 14px/1.4 var(--font-sans);
}

.media-card__watch {
  display: inline-block;
  margin-top: 10px;
  color: var(--cobalt-dark) !important;
  font: 600 14px/1.35 var(--font-sans);
}

.media-noscript {
  margin: 12px 0 0;
  color: var(--muted) !important;
  font: 400 14px/1.45 var(--font-sans) !important;
}

@media (prefers-reduced-motion: reduce) {
  .media-launch__image,
  .media-launch__shade,
  .media-launch__play {
    transition: none;
  }
}

@media (max-width: 820px) {
  .media-launch__play {
    width: 62px;
    height: 62px;
  }
}

/* Medium Reads: photo-led editorial collection. */
.medium-reads-body {
  width: min(1040px, calc(100% - 128px));
  max-width: none;
  padding-top: 64px;
}

.medium-reads-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 32px;
}

.medium-read-card {
  min-width: 0;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.medium-read-card__image-link {
  display: block;
  width: calc(100% - 24px);
  margin-inline: auto;
  overflow: hidden;
  aspect-ratio: 8 / 5;
  border-radius: 8px;
  background: var(--aqua-50);
}

.medium-read-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.medium-read-card__image--contain {
  object-fit: contain;
}

.medium-read-card__image-link--placeholder {
  border: 1px dashed var(--border);
  background: var(--aqua-50);
}

.medium-read-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.medium-read-card__content {
  padding-top: 20px;
}

.medium-read-card h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.24;
}

.medium-read-card .short-read__source {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.medium-read-card .book-recommendation__link {
  min-height: 44px;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
}

.medium-read-card__image-link:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 4px;
}

@media (max-width: 759px) {
  .medium-reads-body {
    width: min(100% - 48px, 620px);
    padding-top: 48px;
  }

  .medium-reads-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
  }
}

@media (max-width: 639px) {
  .medium-reads-body {
    width: calc(100% - 40px);
    padding-top: 40px;
  }

  .medium-read-card {
    padding-bottom: 24px;
  }

  .medium-read-card__content {
    padding-top: 17px;
  }

  .medium-read-card h2 {
    font-size: 22px;
  }
}
