/* Scoped to the self-paced landing page. Shared site navigation stays intact. */
.self-paced-page {
  --font-body: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: var(--font-body);
  --sp-ink: #102e48;
  --sp-muted: #526475;
  --sp-line: #dce5eb;
  --sp-blue: #0073d1;
  background: var(--color-white);
}
.sp-page {
  color: var(--sp-ink);
  padding-top: 74px;
}
/* The shared announcement bar already adds its own height to body padding. */
.sp-page *,
.sp-page *::before,
.sp-page *::after {
  box-sizing: border-box;
}
.sp-page :is(h1, h2, h3, p, ul, ol, figure, blockquote, dl, dd) {
  margin: 0;
}
.sp-page :is(h1, h2, h3) {
  font-family: var(--font-body);
  color: var(--sp-ink);
}
.sp-page h2 {
  font-size: clamp(1.9rem, 3.1vw, 2.65rem);
  line-height: 1.17;
  letter-spacing: -0.035em;
  font-weight: 700;
}
.sp-page h3 {
  font-weight: 650;
  letter-spacing: -0.025em;
}
.sp-page p,
.sp-page li {
  line-height: 1.7;
}
.sp-page a {
  text-underline-offset: 4px;
}
.sp-page :is(a, button, summary):focus-visible {
  outline: 3px solid #147ccc;
  outline-offset: 5px;
}
.sp-page :is(section, details)[id] {
  scroll-margin-top: calc(110px + var(--announcement-bar-height, 0px));
}
.sp-wrap {
  width: min(1160px, calc(100% - 64px));
  margin-inline: auto;
}
.sp-section {
  padding-block: 92px;
}
.sp-page .sp-eyebrow {
  color: #346485;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1.5;
}
.sp-section-heading {
  margin-bottom: 42px;
}
.sp-section-heading h2 {
  max-width: 700px;
}
.sp-section-heading > p:last-child {
  color: var(--sp-muted);
  max-width: 620px;
  margin-top: 18px;
}
.sp-hero {
  padding-block: 72px 76px;
  background: linear-gradient(120deg, #f8fafc 30%, #eef5f9);
}
.sp-hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 64px;
  align-items: center;
}
.sp-page .sp-hero h1 {
  font-size: clamp(2.6rem, 4.45vw, 3.85rem);
  line-height: 1.07;
  font-weight: 700;
  letter-spacing: -0.055em;
}
.sp-hero h1 span {
  color: #17659a;
}
.sp-page .sp-lead {
  margin-top: 26px;
  max-width: 560px;
  font-size: 1.12rem;
  color: #425a6c;
  line-height: 1.7;
}
.sp-page .sp-hero-benefits {
  list-style: none;
  padding: 0;
  margin-top: 24px;
  display: grid;
  gap: 9px;
  font-size: 0.9rem;
  font-weight: 500;
}
.sp-hero-benefits li {
  position: relative;
  padding-left: 26px;
}
.sp-hero-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  color: #27766c;
  font-weight: 800;
}
.sp-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
}
.sp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 15px 23px;
  border: 1px solid transparent;
  border-radius: 7px;
  font: inherit;
  font-size: 0.91rem;
  line-height: 1.3;
  font-weight: 650;
  text-decoration: none;
  transition:
    background 0.18s,
    box-shadow 0.18s;
}
.sp-button-primary {
  background: #006dc7;
  color: var(--color-white);
  box-shadow: 0 5px 13px #004e8616;
}
.sp-button-primary:hover {
  background: #005baf;
  color: var(--color-white);
  box-shadow: 0 7px 18px #004e8624;
}
.sp-button-secondary {
  background: var(--color-white);
  border-color: #b7c9d7;
  color: var(--sp-ink);
}
.sp-button-secondary:hover {
  color: var(--sp-ink);
  background: #f0f7fb;
  border-color: #5787a8;
}
.sp-text-link {
  color: #225e87;
  font-weight: 650;
  font-size: 0.88rem;
  text-decoration: underline;
}
.sp-page .sp-tuition-line {
  font-size: 0.83rem;
  margin-top: 17px;
  color: var(--sp-muted);
}
.sp-tuition-line strong {
  color: var(--sp-ink);
  font-weight: 700;
}
.sp-tuition-line > span {
  padding-inline: 5px;
}
.sp-course-card {
  background: var(--color-white);
  border: 1px solid #d8e3ec;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px #123e5c0b;
}
.sp-course-photo {
  position: relative;
  height: 168px;
  overflow: hidden;
  background: #173c5c;
}
.sp-course-photo::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(0deg, #092c4ddd, #123d5920 75%);
}
.sp-course-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sp-course-photo > span {
  position: absolute;
  bottom: 18px;
  left: 29px;
  z-index: 1;
  color: var(--color-white);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.sp-course-body {
  padding: 28px 29px 23px;
}
.sp-course-body .sp-eyebrow {
  margin-bottom: 9px;
  font-size: 0.66rem;
}
.sp-page .sp-course-body h2 {
  font-size: 1.9rem;
  line-height: 1.2;
  letter-spacing: -0.035em;
}
.sp-page .sp-course-details {
  margin-top: 22px;
}
.sp-course-details > div {
  display: grid;
  grid-template-columns: 102px 1fr;
  padding-block: 14px;
  border-top: 1px solid var(--sp-line);
  gap: 10px;
  align-items: start;
}
.sp-course-details dt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
}
.sp-course-details dd {
  color: var(--sp-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}
.sp-page .sp-course-note {
  margin-top: 9px;
  padding-top: 13px;
  border-top: 1px solid var(--sp-line);
  color: #426558;
  font-size: 0.72rem;
}
.sp-course-note span {
  margin-right: 5px;
}
.sp-trust {
  background: var(--color-white);
  border-block: 1px solid var(--sp-line);
}
.sp-trust-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1.3fr auto;
  align-items: center;
  padding-block: 29px;
  gap: 30px;
}
.sp-trust p strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 650;
}
.sp-trust p span {
  display: block;
  font-size: 0.75rem;
  color: var(--sp-muted);
  margin-top: 3px;
}
.sp-trust-link {
  color: #225e87;
  font-size: 0.82rem;
  font-weight: 650;
  white-space: nowrap;
}
.sp-feedback-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 84px;
}
.sp-page .sp-section-lead {
  color: var(--sp-muted);
  margin-top: 22px;
}
.sp-page .sp-check-list {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.sp-check-list li {
  position: relative;
  padding-left: 25px;
  color: var(--sp-muted);
  font-size: 0.9rem;
}
.sp-check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #327a70;
  font-size: 0.83rem;
  font-weight: 800;
}
.sp-check-list strong {
  color: var(--sp-ink);
  font-weight: 650;
}
.sp-feedback-example {
  border: 1px solid #d2dee7;
  border-radius: 12px;
  overflow: hidden;
}
.sp-example-heading {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  padding: 18px 23px;
  background: #f7f9fa;
  border-bottom: 1px solid #e0e7ec;
  font-size: 0.7rem;
  font-weight: 650;
}
.sp-example-label {
  color: #627583;
  font-weight: 400;
  text-align: right;
  font-size: 0.63rem;
}
.sp-example-draft {
  padding: 26px 27px 23px;
}
.sp-small-label {
  display: block;
  font-size: 0.67rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #5d7487;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sp-page .sp-example-draft blockquote {
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 500;
  padding: 0;
  border: 0;
}
.sp-page .sp-example-draft p {
  margin-top: 14px;
  color: var(--sp-muted);
  font-size: 0.81rem;
}
.sp-example-note {
  margin: 0 27px 23px;
  border-top: 1px solid var(--sp-line);
  padding-top: 22px;
}
.sp-example-note p {
  font-size: 0.94rem;
}
.sp-example-note .sp-example-why {
  margin-top: 14px;
  color: var(--sp-muted);
  font-size: 0.81rem;
}
.sp-feedback-example figcaption {
  padding: 0 26px 20px;
  font-size: 0.66rem;
  line-height: 1.6;
  color: #667785;
}
.sp-how {
  background: #f5f8fa;
  border-block: 1px solid #e7edf1;
}
.sp-steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.sp-steps li {
  border-top: 1px solid #c6d9e5;
  padding-top: 20px;
}
.sp-step-number {
  display: block;
  color: #457b9e;
  font-size: 0.78rem;
  margin-bottom: 20px;
}
.sp-steps h3 {
  font-size: 1.2rem;
  line-height: 1.3;
}
.sp-page .sp-steps p {
  font-size: 0.89rem;
  color: var(--sp-muted);
  margin-top: 12px;
}
.sp-walkthrough {
  margin-top: 44px;
  background: var(--color-white);
  border: 1px solid #dce6ec;
  border-radius: 9px;
}
.sp-walkthrough > summary {
  list-style: none;
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 22px 27px;
  cursor: pointer;
}
.sp-walkthrough > summary::-webkit-details-marker {
  display: none;
}
.sp-walkthrough strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 650;
}
.sp-walkthrough small {
  display: block;
  color: #607584;
  font-size: 0.77rem;
  margin-top: 5px;
}
.sp-play-icon {
  background: #eaf3f9;
  color: #2c6d9a;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.8rem;
}
.sp-details-cue {
  margin-left: auto;
  font-size: 1.25rem;
  color: #4a7391;
}
.sp-walkthrough[open] .sp-details-cue {
  transform: rotate(45deg);
}
.sp-walkthrough-body {
  padding: 0 27px 28px;
}
.sp-video-disclosure {
  padding: 16px 20px;
  background: #f6f2e8;
  border-radius: 6px;
  font-size: 0.8rem;
  color: #64583d;
}
.sp-video-disclosure strong {
  display: inline;
  font-size: inherit;
}
.sp-video-shell {
  margin-block: 20px;
  border: 1px solid #cbdde8;
  min-height: 180px;
  border-radius: 6px;
  background: #eff5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.sp-video-shell > p {
  padding-inline: 15px;
  font-size: 0.76rem;
  color: var(--sp-muted);
  text-align: center;
}
.sp-video-shell.has-player {
  display: block;
  aspect-ratio: 16 / 9;
  min-height: 0;
}
.sp-video-shell iframe {
  display: block;
  border: 0;
  width: 100%;
  height: 100%;
}
.sp-curriculum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.sp-curriculum-card {
  border: 1px solid var(--sp-line);
  background: #fbfcfd;
  padding: 32px 36px 34px;
  border-radius: 10px;
}
.sp-curriculum-card:nth-child(2) {
  background: #f1f6f9;
}
.sp-curriculum-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d5e2eb;
  padding-bottom: 22px;
  margin-bottom: 27px;
  gap: 12px;
}
.sp-curriculum-top > span:first-child {
  font-size: 1.12rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: #235a80;
}
.sp-curriculum-top > span:last-child {
  font-size: 0.7rem;
  color: #647b8c;
}
.sp-curriculum-card h3 {
  font-size: 1.6rem;
  line-height: 1.25;
}
.sp-page .sp-curriculum-card > p {
  color: var(--sp-muted);
  font-size: 0.9rem;
  margin-top: 20px;
}
.sp-curriculum-card .sp-check-list {
  gap: 12px;
}
.sp-curriculum-card .sp-check-list li {
  font-size: 0.85rem;
}
.sp-page .sp-curriculum-footnote {
  max-width: 760px;
  margin: 27px auto 0;
  text-align: center;
  color: #5a6d7d;
  font-size: 0.83rem;
}
.sp-instructor {
  padding-top: 10px;
}
.sp-instructor-grid {
  display: grid;
  grid-template-columns: 224px minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
.sp-instructor-photo {
  width: 100%;
  max-width: 224px;
}
.sp-instructor-photo img {
  width: 100%;
  max-width: 224px;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
.sp-instructor-photo figcaption {
  padding-top: 14px;
  font-weight: 650;
  font-size: 0.9rem;
}
.sp-instructor-photo figcaption span {
  display: block;
  color: var(--sp-muted);
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: 3px;
}
.sp-page .sp-instructor-copy > p:not(.sp-eyebrow) {
  max-width: 670px;
  margin-top: 22px;
  color: var(--sp-muted);
  font-size: 0.94rem;
}
.sp-instructor-copy > .sp-text-link {
  display: inline-block;
  margin-top: 20px;
}
.sp-result {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 24px;
  border-top: 1px solid var(--sp-line);
  padding-top: 28px;
  margin-top: 29px;
}
.sp-result > strong {
  font-size: 3.75rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}
.sp-result > strong span {
  font-size: 1.9rem;
}
.sp-result p {
  font-weight: 650;
  font-size: 0.89rem;
}
.sp-result small {
  display: block;
  font-size: 0.68rem;
  color: #667886;
  line-height: 1.65;
  margin-top: 7px;
}
.sp-enrollment {
  background: #123550;
}
.sp-enrollment-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 86px;
  align-items: center;
}
.sp-enrollment .sp-eyebrow {
  color: #b9d6e9;
}
.sp-enrollment h2 {
  color: var(--color-white);
}
.sp-enrollment .sp-inclusions {
  margin-top: 30px;
  gap: 18px;
}
.sp-enrollment .sp-inclusions li {
  color: #e0ebf2;
  font-size: 0.94rem;
}
.sp-enrollment .sp-inclusions li::before {
  color: #8cc6bb;
}
.sp-page .sp-scope-note {
  margin-top: 27px;
  padding-top: 24px;
  border-top: 1px solid #426078;
  color: #bdd0dc;
  font-size: 0.78rem;
}
.sp-scope-note a {
  color: var(--color-white);
}
.sp-tuition-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 36px;
}
.sp-tuition-card .sp-eyebrow {
  color: #427394;
}
.sp-tuition strong {
  display: block;
  font-size: 2.5rem;
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 650;
}
.sp-tuition span {
  display: block;
  font-size: 0.84rem;
  color: var(--sp-muted);
  margin-top: 8px;
}
.sp-page .sp-tuition-desc {
  color: var(--sp-muted);
  margin-top: 21px;
  font-size: 0.86rem;
}
.sp-tuition-card .sp-button {
  margin-top: 25px;
  width: 100%;
}
.sp-page .sp-guarantee-note {
  margin-top: 20px;
  font-size: 0.8rem;
  line-height: 1.65;
  text-align: center;
  color: var(--sp-muted);
}
.sp-guarantee-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--sp-ink);
  font-weight: 650;
}
.sp-guarantee-note span {
  white-space: nowrap;
}
.sp-guarantee-note a {
  color: inherit;
  text-decoration: underline;
}
.sp-fit-note {
  border-top: 1px solid var(--sp-line);
  padding-top: 24px;
  margin-top: 25px;
}
.sp-fit-note strong {
  font-size: 0.78rem;
  font-weight: 550;
}
.sp-fit-note a {
  display: block;
  color: #28688f;
  margin-top: 8px;
  font-size: 0.78rem;
  font-weight: 650;
}
.sp-faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 85px;
}
.sp-faq-intro {
  color: var(--sp-muted);
  margin-top: 23px !important;
  font-size: 0.86rem;
}
.sp-faq-list details {
  border-top: 1px solid var(--sp-line);
}
.sp-faq-list details:last-child {
  border-bottom: 1px solid var(--sp-line);
}
.sp-faq-list summary {
  list-style: none;
  padding: 24px 32px 24px 0;
  position: relative;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
}
.sp-faq-list summary::-webkit-details-marker {
  display: none;
}
.sp-faq-list summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 22px;
  color: #60839a;
  font-size: 1.25rem;
  font-weight: 400;
}
.sp-faq-list details[open] summary::after {
  content: '−';
}
.sp-faq-list details > div {
  padding-bottom: 25px;
  color: var(--sp-muted);
  font-size: 0.85rem;
}
.sp-faq-list a {
  color: #22678e;
}
.sp-next-step {
  background: #f0f5f8;
  padding-block: 38px;
}
.sp-next-step .sp-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}
.sp-next-step h2 {
  font-size: 1.35rem;
}
.sp-page .sp-next-step p {
  color: var(--sp-muted);
  margin-top: 9px;
  font-size: 0.85rem;
}
.sp-next-step .sp-button {
  flex-shrink: 0;
}
.sp-skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  padding: 12px 18px;
  background: var(--color-white);
  color: #123550;
  z-index: 10001;
  border: 2px solid #0073d1;
}
.sp-skip-link:focus {
  top: 12px;
}
@media (min-width: 901px) and (max-width: 1100px) {
  .sp-hero-grid {
    gap: 30px;
  }
  .sp-hero h1 {
    font-size: 3.1rem !important;
  }
  .sp-feedback-grid,
  .sp-enrollment-grid,
  .sp-faq-grid {
    gap: 44px;
  }
  .sp-trust-inner {
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .sp-wrap {
    width: min(650px, calc(100% - 48px));
  }
  .sp-section {
    padding-block: 60px;
  }
  .sp-hero {
    padding-block: 45px 54px;
  }
  .sp-hero-grid,
  .sp-feedback-grid,
  .sp-instructor-grid,
  .sp-enrollment-grid,
  .sp-faq-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .sp-page .sp-hero h1 {
    font-size: clamp(2.65rem, 6.5vw, 3.5rem);
  }
  .sp-course-card {
    max-width: 540px;
    width: 100%;
  }
  .sp-course-photo {
    height: 170px;
  }
  .sp-course-details > div {
    grid-template-columns: 115px 1fr;
  }
  .sp-trust-inner {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .sp-steps {
    gap: 25px;
  }
  .sp-curriculum-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .sp-instructor {
    padding-top: 0;
  }
  .sp-instructor-photo {
    max-width: none;
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    align-items: center;
    gap: 22px;
  }
  .sp-instructor-photo figcaption {
    padding-top: 0;
  }
  .sp-enrollment-grid {
    gap: 34px;
  }
  .sp-tuition-card {
    max-width: 540px;
  }
  .sp-next-step .sp-wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 23px;
  }
}
@media (max-width: 560px) {
  .sp-wrap {
    width: calc(100% - 40px);
  }
  .sp-page {
    padding-top: 74px;
  }
  .sp-hero {
    padding-top: 36px;
  }
  .sp-page .sp-hero h1 {
    font-size: clamp(2.3rem, 8.85vw, 3.2rem);
  }
  .sp-page .sp-lead {
    font-size: 0.98rem;
    line-height: 1.7;
    margin-top: 22px;
  }
  .sp-page .sp-hero-benefits {
    font-size: 0.82rem;
    gap: 10px;
  }
  .sp-actions {
    gap: 20px;
    margin-top: 25px;
  }
  .sp-actions .sp-button {
    width: 100%;
  }
  .sp-actions .sp-text-link {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .sp-page .sp-tuition-line {
    font-size: 0.76rem;
  }
  .sp-course-body {
    padding: 24px;
  }
  .sp-course-photo {
    height: 150px;
  }
  .sp-course-photo > span {
    left: 24px;
  }
  .sp-course-details > div {
    grid-template-columns: 94px 1fr;
  }
  .sp-trust-inner {
    gap: 22px 14px;
  }
  .sp-trust p strong {
    font-size: 0.8rem;
  }
  .sp-trust p span {
    font-size: 0.69rem;
  }
  .sp-trust-link {
    font-size: 0.77rem;
    white-space: normal;
  }
  .sp-section {
    padding-block: 52px;
  }
  .sp-page h2 {
    font-size: 1.9rem;
  }
  .sp-page .sp-section-lead {
    font-size: 0.91rem;
  }
  .sp-check-list li {
    font-size: 0.84rem;
  }
  .sp-section-heading {
    margin-bottom: 28px;
  }
  .sp-section-heading > p:last-child {
    font-size: 0.88rem;
  }
  .sp-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .sp-steps li {
    padding-top: 18px;
  }
  .sp-step-number {
    margin-bottom: 12px;
  }
  .sp-walkthrough > summary {
    padding: 20px 18px;
    gap: 12px;
  }
  .sp-walkthrough strong {
    font-size: 0.79rem;
  }
  .sp-walkthrough small {
    font-size: 0.68rem;
  }
  .sp-walkthrough-body {
    padding: 0 16px 23px;
  }
  .sp-play-icon {
    width: 32px;
    height: 32px;
  }
  .sp-video-disclosure {
    padding: 14px;
  }
  .sp-example-heading {
    padding: 17px;
  }
  .sp-example-draft {
    padding: 23px;
  }
  .sp-example-note {
    margin-inline: 23px;
    padding-top: 18px;
  }
  .sp-page .sp-example-draft blockquote {
    font-size: 1.08rem;
  }
  .sp-curriculum-card {
    padding: 25px;
  }
  .sp-curriculum-card h3 {
    font-size: 1.5rem;
  }
  .sp-instructor {
    padding-top: 0;
  }
  .sp-instructor-photo {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 18px;
  }
  .sp-result {
    gap: 18px;
  }
  .sp-result > strong {
    font-size: 3.2rem;
  }
  .sp-tuition-card {
    padding: 28px;
  }
  .sp-faq-grid {
    gap: 26px;
  }
  .sp-next-step h2 {
    font-size: 1.35rem;
  }
  .sp-next-step .sp-button {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sp-page *,
  .sp-page *::before,
  .sp-page *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
