:root {
  --dark: #242424;
  /* --orange, --radius-lg: see public-theme.css (layout-schools) */
  --green-dark: #00886f;
  --text-muted: #6b6b6b;
  --whitesub: rgba(255, 255, 255, 0.55);
  --radius: 30px;
}

/* Softer typography vs public-theme.css (this stylesheet loads only on newhome marketing routes). */
h1,
h2,
h3,
h4 {
  margin-bottom: 0;
}

h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.4;
}

h2 {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
}
h3 {
    font-weight: 600;
    font-size: 32px;
    line-height: 1.2;
}
h3.pb {
  padding-bottom: 1.15em; /* approx 32px relative to font size */
}

p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: 400;
}
p + .follow-on-p {
  margin-top: 1em;
}

p.subtitle20 {
  font-size: 20px;
  line-height: 1.6;
}

.quote-author {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
}

.quote-title {
  font-size: 14px;
}

section {
  padding: 80px 72px;
}

section.hero {
  padding: 0;
  padding-top: 80px;
  padding-bottom: var(--radius-lg);
}

.hero-subtitle-wrapper{
  display:flex;
  flex-direction:column;
  gap: 24px;
}


.section-heading {
  font-size: 36px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 32px;
  text-align: center;
}

.section-subheading {
  font-size: 20px;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  margin-bottom: 80px;
  text-align: center;
  text-wrap: balance;
}

@media screen and (max-width: 900px) {
  .section-subheading {
    margin-bottom: 48px;
  }
}

.hero {
  position: relative;
  color: white;
  background: #000;
  overflow: hidden;
  margin-top: -44px;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  display: block;
}
.filter-brightness-50 {
  filter: brightness(0.5);
}
.hero-image-anchor-right {
  filter:brightness(0.5);
  object-position: 83% 50%;
}

.hero-left {
  position: relative;
  padding-top: 72px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  z-index: 2;
  margin: 0 auto;
  padding-left: 124px;
  padding-right: 120px;
  width: 100%;
}
.hero-left .subtitle20 {
  /* min-height:128px; 4 lines so all pages are same */

}
@media screen and (min-width: 1180px) {
  .hero-left {
    padding-left: 120px;
    padding-right: 120px;
  }
  .hero-image-anchor-right {
    filter:none;
  }

}

@media screen and (max-width: 900px) {
  .hero-left {
    padding-left: 24px;
    padding-right: 24px;
  }
}


.hero-left h1 {
  max-width: 550px;
}

.hero-left p {
  max-width: 491px;
}

.hero-btn {
  display: inline-block;
  color: white;
  padding: 12px 28px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  width: fit-content;
  text-decoration: none;
  transition: background 0.2s;
  background-color: var(--orange);
  background-image: url(/images/button_bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-btn:hover {
  background: #c9461e;
}

.hero-tags {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

.hero-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hero-tag > .hero-tag-title {
  font-size: 16px;
  text-align: center;
  font-weight: 600;
}

.hero-tag > .hero-tag-sub {
  font-size: 13px;
  text-align: center;
}


.difference-section {
  position: relative;
  text-align: center;
  padding: 48px 0;
  overflow: hidden;
}

.difference-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgb(1,38,56), var(--green-dark));
  filter: brightness(0.5);
  z-index: 0;
}

.difference-wrapper {
  position: relative;
  z-index: 1;
}

.diff-card {
  position: relative;
  z-index: 2;
}

.difference-section .section-heading {
  color: white;
}

.difference-section .section-subheading {
  color: rgba(255, 255, 255, 0.65);
  margin: 0 auto 48px;
}

.difference-wrapper {
  overflow-x: scroll;
  padding-left: 120px;
  padding-right: 120px;
}

.difference-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 24px;
  width: max-content;
  margin: 0 auto;
}

.diff-card {
  flex-shrink: 0;
  width: 600px;
  background: white;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  padding: 20px;
  text-align: left;
  gap: 20px;
  margin: 0;
}

.diff-profile-wrapper{
  display: grid;
  grid-template-columns: 0.5fr 4fr;
  gap: 16px;
}

.difference-section .diff-card .diff-profile-wrapper > img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  object-fit: cover;
}

.difference-text-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.difference-text-box blockquote {
  margin: 0;
  padding: 0;
  border: none;
  display: grid;
  grid-template-columns: 32px auto;
  gap: 8px;
}

@media screen and (min-width: 1180px) {

  .difference-section::before{
    filter:none;
  }
  
}

.quote-mark-size {
  width: 32px;
  height: auto;
}

.difference-footer-with-image footer {
  margin: 0;
}

.difference-footer-with-image footer cite {
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.6;
  display: block;
}

.difference-footer-image {
  display: none;
}

.comprehension-section {
  background: #fff;
  padding: 120px;
}

.comprehension-card {
  max-width: 680px;
  overflow: hidden;
}

.comprehension-content {
  max-width: 760px;
  padding: 0px 0px 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.comprehension-books {
  width: 100vw;
  height: 220px;
  margin-left: calc(50% - 50vw);
  background-image: url(/images/dotcom/books2.webp);
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: auto 100%;
}

.comprehension-note {
  text-align: center;
  padding: 24px 24px 0;
  color: #111;
}

.alternating-section {
  background: var(--cream);
  text-align: center;
  padding: 120px 120px;
}

.alternating-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.alternating-card-left {
  padding: 36px,0px,36px,0px;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 64px;
}

.alternating-card-right {
  padding: 36px,0px,36px,0px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 64px;
}

.alternating-text-box {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.alternating-card-right .alternating-card-left p {
  font-size: 16px;
  line-height: 1.7;
}

.alternating-image-placeholder {
  width: 100%; 
  border-radius: 20px;
  object-fit: cover;
  display: block;
}

.usage-ways .usage-ways-intro {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.usage-ways .usage-ways-intro .section-heading {
  margin-bottom: 16px;
}

.usage-ways-lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--dark);
  margin: 0 0 8px;
}

.usage-ways-lead:last-child {
  margin-bottom: 0;
}

.usage-ways-subheader {
  text-align: left;
  max-width: 1100px;
  margin: 0 auto 48px;
}

.usage-ways-heading-left {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
  margin: 0 0 12px;
}

.usage-ways-sublead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--dark);
  margin: 0;
  max-width: 720px;
}

.usage-ways .alternating-grid {
  gap: 48px;
}

.usage-alternating-note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 16px 0 0;
}

.usage-ways .alternating-text-box p + p:not(.usage-alternating-note) {
  margin-top: 12px;
}

/* public/stylesheets/old-static.css .steps-section (badges omitted here) */
.three-grid-section {
  background: white;
  text-align: center;
  padding-top: 120px;
}

.three-grid-section .section-subheading {
  margin: 0 auto 48px;
}

.heading-subtitle-wrapper{

}

.audience-three-grid-section h3.section-heading {
  margin-top:40px;
  margin-bottom:28px;
}

.three-grid-section .steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 90px;
  max-width: 1080px;
  margin: 0 auto;
}

.three-grid-section .step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.three-grid-section .step-visual {
  position: relative;
  width: 100%;
}

.three-grid-section .step-illustration {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.three-grid-section .step-text-box {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.three-grid-section .section-heading {
  text-align: left;
  font-size:32px;
  max-width:1080px;
  margin-left:auto;
  margin-right:auto;
}
.three-grid-section .step-text-box h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
  margin: 0;
}

.three-grid-section .step-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.three-grid-section .step-subtext {
  font-size: 14px;
  color: var(--darker-text);
  line-height: 1.6;
  margin: 0;
}

@media screen and (max-width: 900px) {
  .three-grid-section .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .three-grid-section .section-subheading {
    margin: 0 auto 36px;
  }

  .three-grid-section .step-desc {
    font-size: 16px;
  }
}

@media screen and (max-width: 900px) {
  .three-grid-section .step-text-box {
    text-align: left;
    align-items: left;
  }
}

.pedagogy-section {
  background: #00886f;
  padding: 120px 72px;
  color: #fff;
}

.pedagogy-heading {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  margin: 0 0 16px;
}

.pedagogy-intro {
  font-size: 20px;
  line-height: 1.7;
  text-align: center;
  color: #fff;
  max-width: 760px;
  margin: 0 auto 48px;
  text-wrap: balance;
}

.pedagogy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.pedagogy-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: left;
}

.pedagogy-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 16px;
  display: block;
}

.pedagogy-card h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--dark);
}

.pedagogy-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.audience-quote-section {
  background: #fff;
  padding: 40px 72px;
}

.audience-quote-inner {
  max-width: 920px;
  margin: 0 auto;
}

.audience-quote-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.audience-quote-icon {
  width: 32px;
  height: auto;
  flex-shrink: 0;
}

.audience-quote-text {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--dark);
}

.audience-quote-attribution {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.audience-quote-cite {
  text-align: right;
}

.audience-quote-name {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--dark);
}

.audience-quote-role {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--dark);
}

.audience-quote-photo {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.audience-quote-section.science-quote {
  background: var(--cream);
}

/* ——— Science page (newhome-1science) ——— */
.science-section {
  padding: 100px 72px;
  color: var(--dark);
}

.science-section--cream {
  background: var(--cream);
}

.science-section--white {
  background: #fff;
}

.science-heading-centered {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  color: var(--dark);
  max-width: 900px;
  margin: 0 auto 24px;
  text-wrap: balance;
}

.science-heading-left {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--dark);
  max-width: 900px;
  margin: 0 0 16px;
}

.science-subheading {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}

.science-prose,
.science-intro,
.science-intro-centered,
.science-intro-prequel {
  font-size: 18px;
  line-height: 1.65;
  color: var(--dark);
  margin: 0;
}
.science-intro-prequel {
  font-weight:bold;
  margin-bottom:16px;
}

.science-intro {
  max-width: 720px;
  margin-bottom: 40px;
}

.science-intro-centered {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}

.science-intro-narrow {
  max-width: 640px;
  margin-bottom: 40px;
}
@media screen and (min-width:900px) {
  .science-intro-prequel {
    text-align: center;
    max-width:none;
  }
  .science-intro-narrow {
    text-align: center;
    text-wrap: balance;
    max-width:none;
  }
}

.science-ref-link {
  color: var(--dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.science-ref-link:hover {
  color: var(--dark);
  opacity: 0.85;
}

.science-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 40px auto 0;
}

.science-split-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.science-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.science-stat {
  text-align: left;
}

.science-stat-img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  margin: 0 auto 16px;
  display: block;
}

.science-stat-img-wrapper{
  width: 100%;
  display: flex;
  flex-direction:row;
  justify-self: bottom;
}

@media screen and (max-width: 900px) {
  .science-stat{
    display: flex;
    flex-direction: column;
  }
}

.science-stat-num {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--dark);
  margin: 0 0 12px;
  align-self: flex-end;
}

.science-stat-desc {
  font-size: 16px;
  line-height: 1.55;
  color: var(--dark);
  margin: 0 0 16px;
}

.science-stat-cite {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.science-mri-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.science-mri-card {
  background: #fff;
  padding: 24px 20px;
  border-radius: 32px;
  text-align: center;
}

.science-mri-card--highlight {
  background-color:#00886F;
}
.science-mri-card--highlight .science-mri-body, 
.science-mri-card--highlight .science-mri-format {
  color:white;
}

.science-mri-comp {
  font-size: 16px;
  font-weight: 600;
  padding:6px;
  border-radius:32px;
  color:var(--dark);
  background-color:#ECECEC;
  margin: 0 0 12px;
}
.science-mri-card--highlight .science-mri-comp {
  background-color:rgb(183, 224, 202);
}

.science-mri-img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  margin: 0 auto 20px;
  display: block;
  border-radius: 20px;
}

.science-mri-format {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
}

.science-mri-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark);
  margin: 0;
  text-align: left;
}

.science-mri-badge {
  margin: 20px 0 0;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--dark);
  background: white;
  border-radius: 12px;
  text-align: center;
}

.science-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.science-feature {
  text-align: left;
}

.science-feature-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
  display: block;
  background: #e8e4dc;
}

.science-feature-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 10px;
}

.science-feature-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  margin: 0;
}

.science-outcomes {
  padding: 100px 72px;
  background: transparent;
}

.science-outcomes-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(320px, 1.2fr);
  gap: 48px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px 64px;
  background: #00886f;
  border-radius: 32px;
}

.science-outcomes-headline {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin: 0;
  text-wrap: balance;
}

.science-outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.science-outcome-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.science-outcome-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  color: #00886f;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.science-outcome-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
  margin: 0 0 6px;
}

.science-outcome-tag {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.upnext-section {
  padding: 0;
  width: 100%;
  background-color:white;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.upnext-section#upnext-1 {
  background-image: url(/images/dotcom/bg_hero3.webp);
}
.upnext-section#upnext-science {
  background-image: url(/images/dotcom/bg_hero5.webp);
}
.upnext-section#upnext-audience {
  background-image: url(/images/dotcom/bg_hero4.webp);
}


.upnext-overlay {
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
}

.upnext-content {
  min-height: 320px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.upnext-copy {
  color: #fff;
}

.upnext-label {
  font-size: 32px;
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.9);
}

.upnext-title {
  margin-top: 4px;
  color: #fff;
}

.upnext-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 14px 28px;
  border-radius: 999px;
  background: #fff;
  color: #222;
  font-weight: 600;
  text-decoration: none;
}

.cta-section {
  padding: 120px 24px 88px;
  background-color:#FBFBFB;
}

.cta-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-content p {
  max-width: 620px;
  line-height: 1.6;
  color: #2a2a2a;
}



@media screen and (max-width: 900px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3.pb {
    font-size: 24px;
    padding-bottom: 8px;
  }

  p.subtitle20 {
    font-size: 16px;
  }

  section {
    padding: 56px 24px;
  }

  .hero-tags {
    gap: 16px;
    justify-content: center;
    align-items: center;
  }

  .hero-tag > .hero-tag-title {
    font-size: 16px;
  }

  .hero-tag > .hero-tag-sub {
    font-size: 13px;
  }

  .section-heading {
    font-size: 28px;
  }

  .section-subheading {
    font-size: 16px;
    max-width: 100%;
  }

  .difference-section {
    padding: 44px 24px;
  }

  .difference-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .difference-cards {
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
    overflow-x: visible;
  }

  .diff-card {
    flex-shrink: 1;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
  }

  .difference-text-box {
    gap: 20px;
  }

  .difference-section .diff-card > img {
    display: none;
  }

  .difference-footer-with-image {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }

  .difference-footer-image {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 20%;
    object-fit: cover;
  }

  .quote-author {
    font-size: 16px;
  }

  .comprehension-section {
    padding: 32px 24px 56px;
  }

  .comprehension-card {
    border-radius: 28px;
  }

  .comprehension-content {
    padding: 36px 0px 40px;
    gap: 18px;
  }

  .comprehension-content p {
    font-size: 18px;
  }

  .comprehension-note {
    padding: 20px 20px 0;
    font-size: 14px;
  }

  .comprehension-books {
    height: 140px;
  }

  .alternating-section {
    padding: 88px 24px;
  }

  .alternating-grid {
    gap: 48px;
  }

  .alternating-card-right, .alternating-card-left {
    padding: 0;
    gap: 16px;
    display: flex;
    flex-direction: column;
  }

  .alternating-card-right:nth-child(even){
    flex-direction: column-reverse;
  }

  .alternating-card-right .alternating-card-left h3 {
    font-size: 20px;
  }

  .alternating-image-placeholder {
    min-height: 200px;
  }

  .usage-ways-heading-left {
    font-size: 26px;
  }

  .usage-ways-lead,
  .usage-ways-sublead {
    font-size: 16px;
  }

  .usage-ways .alternating-grid {
    gap: 36px;
  }

  .pedagogy-section {
    padding: 80px 24px;
  }

  .pedagogy-heading {
    font-size: 28px;
  }

  .pedagogy-intro {
    font-size: 16px;
    margin-bottom: 36px;
  }

  .pedagogy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pedagogy-card {
    padding: 28px 22px;
  }

  .pedagogy-card h3 {
    font-size: 20px;
  }

  .pedagogy-card p {
    font-size: 15px;
    line-height: 1.65;
  }

  .science-section {
    padding: 72px 24px;
  }

  .science-heading-centered{
    font-size: 32px;
    margin-bottom: 48px;
  }
    
  .science-intro-centered {
    font-size: 28px;
    margin-bottom: 48px;
    text-align: left;
    line-height: 1.25;
  }

  .science-heading-left {
    font-size: 28px;
    margin-bottom: 20px;
  }

  

  .science-subheading {
    font-size: 20px;
  }

  .science-split {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 28px;
  }

  .science-prose,
  .science-intro{
    font-size: 16px;
  }

  .science-stats-grid,
  .science-mri-grid,
  .science-features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .science-stat-num {
    font-size: 40px;
  }

  .science-outcomes {
    padding: 72px 24px;
  }

  .science-outcomes-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 24px;
  }

  .science-outcomes-headline {
    font-size: 32px;
  }

  .science-outcomes-grid {
    grid-template-columns: 1fr;
  }

  .audience-quote-section {
    padding: 80px 24px;
  }

  .audience-quote-block {
    gap: 14px;
    margin-bottom: 28px;
  }

  .audience-quote-icon {
    width: 40px;
  }

  .audience-quote-text {
    font-size: 22px;
  }

  .audience-quote-name,
  .audience-quote-role {
    font-size: 18px;
  }

  .audience-quote-photo {
    width: 72px;
    height: 72px;
  }

  .upnext-content {
    padding: 28px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .upnext-label {
    font-size: 24px;
  }

  .upnext-title {
    font-size: 40px;
  }

  .cta-section {
    padding: 64px 24px;
  }

  .cta-content {
    gap: 16px;
  }

  
  .cta-button {
    min-width: 0;
    width: 100%;
    max-width: 360px;
  }
}
.two-thirds {
  max-width:720px;
}
/* .usage-grid-section {
  padding-bottom:0;
} */
.usage-grid-section .subtitle20 {
  margin-bottom:40px;
  max-width:680px;
  text-wrap: balance;
  margin-left:auto;
  margin-right:auto;
}
.educators-extra-intro {
  margin-bottom:28px;
  max-width:1080px;
  margin-left:auto;
  margin-right:auto;
  text-align: left;
}