:root {
  --bg: #f5f0eb;
  --bg-alt: #efe6df;
  --surface: #fffdfa;
  --surface-strong: #ffffff;
  --surface-muted: #f8f3ef;
  --text: #1f2329;
  --muted: #626871;
  --border: #d7c9c1;
  --accent: #9d2235;
  --accent-dark: #7f1a2b;
  --accent-soft: #f7e6e7;
  --success: #1d6b57;
  --shadow: 0 16px 40px rgba(36, 26, 19, 0.08);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --max-width: 1180px;
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --font-body: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(157, 34, 53, 0.08), transparent 30%),
    linear-gradient(180deg, #fcf8f4 0%, var(--bg) 44%, #fbf9f7 100%);
  color: var(--text);
  line-height: 1.55;
  padding-top: 5.75rem;
}

p {
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select,
input {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(157, 34, 53, 0.35);
  outline-offset: 3px;
}

.page-shell {
  overflow: clip;
}

.site-header,
.site-footer,
.page-section,
.page-hero,
.detail-section,
.support-strip {
  width: 100%;
}

.header-shell,
.footer-shell,
.footer-meta,
.hero-grid,
.section-shell,
.page-intro,
.results-shell,
.detail-hero__grid,
.detail-section__shell,
.support-strip__shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.header-shell {
  width: min(calc(100% - 2rem), 1440px);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0 1.1rem;
  position: relative;
}

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(14px);
  background:
    radial-gradient(circle at top left, rgba(157, 34, 53, 0.07), transparent 34%),
    linear-gradient(180deg, rgba(252, 248, 244, 0.88), rgba(245, 240, 235, 0.82));
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background:
    radial-gradient(circle at top left, rgba(157, 34, 53, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(252, 248, 244, 0.96), rgba(245, 240, 235, 0.94));
  border-bottom-color: rgba(215, 201, 193, 0.88);
  box-shadow: 0 10px 24px rgba(36, 26, 19, 0.08);
}

.site-header.is-scrolled .header-shell {
  padding-top: 0.45rem;
  padding-bottom: 0.5rem;
}

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

.brandmark img {
  height: 42px;
  width: auto;
  display: block;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: nowrap;
  justify-content: flex-end;
  min-width: 0;
}

.primary-nav a {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  background: rgba(157, 34, 53, 0.08);
  color: var(--accent);
}

.nav-dropdown {
  position: relative;
  padding-bottom: 0.45rem;
  margin-bottom: -0.45rem;
}

.site-header .nav-dropdown summary {
  list-style: none;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.site-header .nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.site-header .nav-dropdown summary::marker {
  content: "";
  font-size: 0;
}

.site-header .nav-dropdown summary::before,
.site-header .nav-dropdown summary::after {
  content: none !important;
}

.site-header .nav-dropdown[open] summary,
.site-header .nav-dropdown summary:hover {
  background: rgba(157, 34, 53, 0.08);
  color: var(--accent);
}

.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: min(420px, calc(100vw - 2rem));
  padding: 0.5rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(215, 201, 193, 0.95);
  box-shadow: var(--shadow);
  z-index: 20;
}

.nav-dropdown__menu a {
  display: block;
  border-radius: 14px;
}

.site-header .nav-dropdown__arrow {
  font-size: 0.82rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.site-header .nav-dropdown[open] .nav-dropdown__arrow {
  transform: rotate(180deg);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.75rem 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
  font-weight: 600;
}

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

.button--primary {
  background: var(--accent);
  color: white;
}

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


.button--secondary,
.button--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.button--secondary:hover,
.button--ghost:hover {
  border-color: rgba(157, 34, 53, 0.4);
  color: var(--accent);
}

.button--primary:focus-visible,
.button--secondary:focus-visible,
.button--ghost:focus-visible {
  outline-color: rgba(157, 34, 53, 0.45);
}

.button--small {
  padding: 0.78rem 1.15rem;
}

.button--header-secondary {
  background: #ffffff;
  border-color: var(--muted);
  border-width: 1px;
  color: var(--muted);
  border-radius: 6px;
  padding: 0.62rem 0.82rem;
}

.primary-nav a.button--header-secondary {
  border-radius: 6px;
  color: var(--muted);
}

.button--header-secondary:hover {
  background: #f7f3ef;
  border-color: var(--muted);
  color: var(--muted);
}

.site-header.nav-is-collapsed .header-shell {
  flex-wrap: wrap;
  padding-bottom: 1rem;
}

.site-header.nav-is-collapsed .nav-toggle {
  display: inline-flex;
}

.site-header.nav-is-collapsed .primary-nav {
  width: 100%;
  display: none;
  flex-direction: column;
  align-items: stretch;
  padding-bottom: 0.5rem;
}

.site-header.nav-is-collapsed .primary-nav.is-open {
  display: flex;
}

.site-header.nav-is-collapsed .primary-nav a {
  width: 100%;
  text-align: left;
}

.site-header.nav-is-collapsed .nav-dropdown {
  width: 100%;
}

.site-header.nav-is-collapsed .nav-dropdown summary {
  width: 100%;
  justify-content: space-between;
}

.site-header.nav-is-collapsed .nav-dropdown__menu {
  position: static;
  min-width: 0;
  margin-top: 0.35rem;
}

.site-header.nav-is-measuring .header-shell {
  flex-wrap: nowrap;
}

.site-header.nav-is-measuring .nav-toggle {
  display: none !important;
}

.site-header.nav-is-measuring .primary-nav {
  position: absolute;
  right: 0;
  top: 0;
  width: max-content;
  display: flex !important;
  flex-direction: row;
  align-items: center;
  padding-bottom: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-header.nav-is-measuring .primary-nav a {
  width: auto;
  text-align: left;
}

.site-header.nav-is-measuring .nav-dropdown {
  width: auto;
}

.site-header.nav-is-measuring .nav-dropdown summary {
  width: auto;
  justify-content: flex-start;
}

.site-header.nav-is-measuring .nav-dropdown__menu {
  position: absolute;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.78rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
}

.page-hero {
  padding: 1rem 0 3.8rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 1.7rem;
  align-items: stretch;
  background:
    radial-gradient(circle at top right, rgba(157, 34, 53, 0.08), transparent 36%),
    linear-gradient(135deg, rgba(255, 253, 250, 0.82), rgba(250, 243, 238, 0.9));
  border: 1px solid rgba(215, 201, 193, 0.9);
  border-radius: 40px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 2.55rem 1.2rem 1.2rem;
}
.page-intro h1,
.detail-hero__content h1,
.section-heading h2,
.support-strip__shell h2,
.site-footer h2 {
  font-family: var(--font-display);
  line-height: 1.06;
  margin: 0;
}

.hero-actions,
.detail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
  align-items: center;
}

.proof-chips,
.meta-chips,
.filter-chip-list,
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.proof-chip,
.meta-chip,
.active-filter {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.68rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(215, 201, 193, 0.9);
  color: var(--muted);
  font-size: 0.92rem;
}

.active-filter {
  background: rgba(157, 34, 53, 0.08);
  color: var(--accent);
  border: 1px solid rgba(157, 34, 53, 0.16);
  cursor: pointer;
}

.hero-spotlight {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.media-card,
.spotlight-card,
.course-card,
.collection-card,
.trust-card,
.quote-card,
.faq-card,
.enrollment-card,
.detail-hero__aside,
.detail-card,
.filter-panel,
.support-strip__card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(215, 201, 193, 0.9);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}

.media-card {
  padding: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 237, 232, 0.88));
  overflow: hidden;
}

.media-card img {
  border-radius: 26px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-card video {
  width: 100%;
  display: block;
  border-radius: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #1f2329;
  box-shadow: 0 18px 34px rgba(31, 35, 41, 0.14);
}

.media-card__caption {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.spotlight-card {
  padding: 1.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 242, 238, 0.92));
}

.spotlight-card--hero {
  min-height: 100%;
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.spotlight-card__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.spotlight-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(157, 34, 53, 0.12);
  border-radius: 999px;
  padding: 0.45rem 0.78rem;
}

.spotlight-label--plain {
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
}

.spotlight-card__top,
.course-card__top,
.detail-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--surface-muted);
  color: var(--text);
}

.badge--accent {
  background: var(--accent-soft);
  color: var(--accent);
}

.badge--outline {
  border: 1px solid rgba(157, 34, 53, 0.18);
}

.spotlight-card h1,
.detail-hero__content h1 {
  margin-top: 1rem;
  margin-bottom: 0.6rem;
}

.spotlight-card h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.spotlight-card--hero p {
  max-width: 33rem;
  font-size: 1.08rem;
  line-height: 1.65;
}

.spotlight-card p,
.collection-card p,
.course-card p,
.trust-card p,
.quote-card p,
.detail-card p,
.detail-list li,
.filter-panel p,
.support-strip__shell p,
.footer-copy {
  color: var(--muted);
}

.course-card__meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.page-section,
.detail-section,
.support-strip {
  padding: 3rem 0;
}

.section-shell,
.detail-section__shell {
  display: grid;
  gap: 1.3rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.section-heading h2,
.page-intro h1,
.detail-hero__content h1 {
  font-size: clamp(2rem, 3.6vw, 3.6rem);
}

body[data-page="home"] .section-heading h2 {
  font-size: clamp(1.65rem, 2.45vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

body[data-page="home"] .section-heading {
  gap: 0.7rem;
  align-items: flex-start;
}

body[data-page="home"] .section-heading p {
  margin-top: 0.4rem;
  font-size: 0.98rem;
  max-width: 60ch;
}

body[data-page="home"] .page-section--home {
  position: relative;
  padding: 2.15rem 0;
}

body[data-page="home"] .page-section--home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 2rem), var(--max-width));
  border-top: 1px solid rgba(215, 201, 193, 0.72);
}

body[data-page="home"] .page-section--proof {
  padding-top: 2.2rem;
}

body[data-page="home"] .page-section--proof::before {
  display: none;
}

body[data-page="home"] .section-shell {
  gap: 0.85rem;
}

.section-heading p,
.page-intro p,
.detail-hero__content > p {
  max-width: 62ch;
  color: var(--muted);
  margin: 0.5rem 0 0;
}

.practice-grid,
.trust-grid,
.proof-feature-layout,
.proof-feature-stack,
.featured-grid,
.quotes-grid,
.collections-grid,
.related-grid,
.course-lanes {
  display: grid;
  gap: 1rem;
}

.practice-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.feature-spotlight {
  display: grid;
  grid-template-columns: minmax(360px, 1.02fr) minmax(0, 0.9fr);
  gap: 1rem;
  align-items: stretch;
}

.feature-module {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(157, 34, 53, 0.05), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 240, 235, 0.74));
  border: 1px solid rgba(215, 201, 193, 0.52);
}

.feature-spotlight__tabs {
  display: grid;
  align-content: start;
  overflow: hidden;
  border: 1px solid rgba(215, 201, 193, 0.7);
  border-radius: 24px 0 0 24px;
  background: rgba(255, 255, 255, 0.42);
}

.feature-tab {
  position: relative;
  display: grid;
  gap: 0.22rem;
  width: 100%;
  padding: 1rem 1.05rem 1.02rem 1.24rem;
  text-align: left;
  border: 0;
  border-bottom: 1px solid rgba(215, 201, 193, 0.58);
  background: transparent;
  opacity: 0.62;
  transition: background-color 180ms ease, opacity 180ms ease, color 180ms ease;
}

.feature-tab:last-child {
  border-bottom: 0;
}

.feature-tab::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 4px;
  background: transparent;
  transition: background-color 180ms ease;
}

.feature-tab:hover {
  background: rgba(255, 255, 255, 0.5);
  opacity: 0.92;
}

.feature-tab.is-active {
  background:
    radial-gradient(circle at top right, rgba(157, 34, 53, 0.08), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 239, 234, 0.96));
  opacity: 1;
}

.feature-tab.is-active::before {
  background: rgba(157, 34, 53, 0.72);
}

.feature-tab__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(122, 112, 105, 0.9);
}

.feature-tab__title {
  font-size: 1rem;
  line-height: 1.18;
  color: var(--ink);
  font-weight: 700;
}

.feature-tab__body {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.42;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.feature-tab.is-active .feature-tab__title {
  font-size: 1.14rem;
}

.feature-tab.is-active .feature-tab__body {
  font-size: 0.92rem;
  line-height: 1.5;
}

.feature-spotlight__media {
  min-width: 0;
}

.feature-spotlight__frame {
  position: relative;
  aspect-ratio: 800 / 452;
  width: 100%;
  max-width: 100%;
  border-radius: 0 24px 24px 0;
  overflow: hidden;
  border: 1px solid rgba(215, 201, 193, 0.82);
  background:
    radial-gradient(circle at top right, rgba(157, 34, 53, 0.05), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 239, 235, 0.92));
  box-shadow: 0 16px 28px rgba(36, 26, 19, 0.07);
}

.feature-spotlight__frame img,
.feature-spotlight__frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: rgba(248, 243, 239, 0.9);
}

.feature-demo-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.65rem;
  height: 3.65rem;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: rgba(157, 34, 53, 0.94);
  color: #fff;
  box-shadow: 0 16px 32px rgba(36, 26, 19, 0.2);
  font-weight: 800;
  transform: translate(-50%, -50%);
  transition: background-color 180ms ease, transform 180ms ease;
}

.feature-demo-play:hover {
  background: var(--accent-dark);
  transform: translate(-50%, -50%) scale(1.03);
}

.feature-demo-play__icon {
  width: 0.86rem;
  height: 1rem;
  margin-left: 0.16rem;
  background: currentColor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

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

.collections-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

.trust-card,
.course-card,
.collection-card,
.quote-card,
.detail-card,
.support-strip__card,
.course-lane {
  padding: 1.35rem;
}

.enrollment-card {
  padding: 1.35rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(248, 243, 239, 0.86));
  border: 1px solid rgba(215, 201, 193, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.trust-card--accent {
  background: linear-gradient(135deg, #fffaf8 0%, #f5ece7 100%);
}

.proof-feature-card {
  display: grid;
  align-content: start;
  gap: 0.48rem;
  min-height: 152px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 241, 237, 0.88));
  position: relative;
  overflow: hidden;
  padding: 1.15rem 1.2rem 1.2rem;
}

.proof-feature-card h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.28;
}

.proof-feature-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.proof-feature-card::before {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: rgba(157, 34, 53, 0.58);
}

.proof-feature-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(157, 34, 53, 0.08);
  border: 1px solid rgba(157, 34, 53, 0.12);
  color: var(--accent-dark);
}

.proof-feature-card__icon svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-feature-card--support {
  background:
    radial-gradient(circle at top right, rgba(157, 34, 53, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 239, 234, 0.92));
  border-color: rgba(157, 34, 53, 0.18);
  min-height: 100%;
  padding: 1.55rem 1.55rem 1.5rem;
  gap: 0.7rem;
}

.proof-feature-card--support h3 {
  font-size: 1.42rem;
  line-height: 1.12;
  max-width: 13ch;
}

.proof-feature-card--support p {
  font-size: 0.96rem;
  line-height: 1.58;
  max-width: 38ch;
}

.proof-feature-card--support .proof-feature-card__icon {
  background: rgba(157, 34, 53, 0.12);
  border-color: rgba(157, 34, 53, 0.18);
  width: 2.8rem;
  height: 2.8rem;
}

.proof-mini-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.95rem;
  align-items: start;
  background: rgba(255, 255, 255, 0.78);
  min-height: 0;
  padding: 1rem 1.05rem;
}

.proof-mini-card::before {
  display: none;
}

.proof-mini-card .proof-feature-card__icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 14px;
}

.proof-mini-card__content {
  display: grid;
  gap: 0.22rem;
}

.proof-mini-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

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

.course-card {
  display: grid;
  gap: 0.9rem;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  position: relative;
  z-index: 0;
}

.course-card:hover {
  transform: translateY(-2px);
  border-color: rgba(157, 34, 53, 0.18);
}

.course-card h3,
.collection-card h3,
.detail-card h3,
.quote-card h3,
.faq-card h3 {
  margin: 0;
  font-size: 1.18rem;
}

.course-card__link {
  display: grid;
  gap: 0.9rem;
  height: 100%;
}

.course-card__media {
  overflow: visible;
  border-radius: 0;
  aspect-ratio: 1600 / 850;
  background: rgba(248, 243, 239, 0.95);
  border: 1px solid rgba(215, 201, 193, 0.8);
}

.course-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.course-type-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  justify-self: start;
}

.course-type-pill--tiny {
  padding: 0.22rem 0.42rem;
  font-size: 0.64rem;
  letter-spacing: 0.07em;
}

.course-type-pill--core-course {
  background: #f6e8ea;
  color: #8a1d2f;
}

.course-type-pill--short-course {
  background: #eef2f6;
  color: #324861;
}

.course-type-pill--deep-dive-course {
  background: #ecebe7;
  color: #4a473f;
}

.course-card__link:hover h3 {
  color: var(--accent);
}

.course-card__description {
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.course-card--related.course-card--no-image .course-card__link {
  gap: 0.7rem;
  align-content: start;
}

.course-card--explore.course-card--no-image .course-card__link {
  gap: 0.72rem;
  align-content: start;
}

.course-card--explore.course-card--no-image .course-type-pill {
  align-self: start;
  width: fit-content;
  max-width: max-content;
}

.course-card--explore.course-card--no-image .course-card__top {
  margin-top: 0.02rem;
}

.course-card--related.course-card--no-image .course-type-pill {
  align-self: start;
}

.course-card--related.course-card--no-image .course-card__top {
  margin-top: 0.05rem;
}

.course-card--related.course-card--no-image h3 {
  max-width: 15ch;
}

.course-card__instructors {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.course-card__instructor-avatars {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.course-card__instructor-avatars img {
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.92);
  margin-left: -0.28rem;
  background: #fff;
}

.course-card__instructor-avatars img:first-child {
  margin-left: 0;
}

.course-card__instructor-names {
  min-width: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.course-lane {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 241, 237, 0.92));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(215, 201, 193, 0.9);
  box-shadow: var(--shadow);
  padding: 1.05rem;
}

.course-lane__head {
  margin-bottom: 1.1rem;
}

.course-lane__head h3 {
  margin: 0;
  font-size: 1.18rem;
}

.course-lane__heading-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1.18rem;
  font-weight: 600;
}

.course-lane__heading-text {
  text-decoration: none;
}

.course-lane__heading-arrow {
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.course-lane__heading-arrow svg {
  width: 0.95rem;
  height: 0.95rem;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.course-lane__heading-link:hover .course-lane__heading-text {
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.course-lane__list {
  display: grid;
  gap: 0.85rem;
}

.course-lane__item {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 0.92rem;
  align-items: center;
  padding: 0.7rem;
  border: 1px solid rgba(215, 201, 193, 0.8);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.course-lane__item:hover {
  transform: translateY(-1px);
  border-color: rgba(157, 34, 53, 0.22);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(36, 26, 19, 0.08);
}

.course-lane__media {
  overflow: visible;
  width: 108px;
  aspect-ratio: 1600 / 850;
  border-radius: 0;
  border: 1px solid rgba(215, 201, 193, 0.82);
  background: rgba(248, 243, 239, 0.95);
}

.course-lane__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.course-lane__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(157, 34, 53, 0.08), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(241, 233, 227, 0.95));
  color: rgba(122, 112, 105, 0.92);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 0.4rem;
}

.course-lane__content {
  display: grid;
  gap: 0.32rem;
  min-width: 0;
}

.course-lane__title {
  font-weight: 600;
  line-height: 1.36;
  font-size: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.course-lane__item:hover .course-lane__title {
  color: var(--accent);
}

.course-lane__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.84rem;
  min-width: 0;
}

.course-lane__instructor-avatars {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.course-lane__instructor-avatars img {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.92);
  margin-left: -0.24rem;
  background: #fff;
}

.course-lane__instructor-avatars img:first-child {
  margin-left: 0;
}

.course-lane__instructor-names {
  min-width: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.collection-card__count {
  font-size: 2.2rem;
  font-family: var(--font-display);
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.quote-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.35;
}

.quote-card footer {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.testimonial-card {
  display: grid;
  gap: 0.82rem;
  min-height: 100%;
  padding: 1.28rem 1.35rem 1.35rem;
  border-radius: 24px;
  border: 1px solid rgba(215, 201, 193, 0.9);
  background:
    radial-gradient(circle at top right, rgba(157, 34, 53, 0.05), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 239, 235, 0.92));
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  border-color: rgba(157, 34, 53, 0.16);
  box-shadow: 0 18px 34px rgba(36, 26, 19, 0.1);
}

.testimonial-card__quote-mark {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 0.8;
  color: rgba(157, 34, 53, 0.24);
}

.testimonial-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.42;
  letter-spacing: -0.01em;
}

.testimonial-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.testimonial-card__identity {
  display: grid;
  gap: 0.14rem;
}

.testimonial-card__identity strong {
  font-size: 0.96rem;
}

.testimonial-card__identity span {
  color: var(--muted);
  font-size: 0.93rem;
}

.testimonial-card__company {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(215, 201, 193, 0.82);
  flex: 0 0 auto;
}

.testimonial-card__company img {
  max-width: 38px;
  max-height: 38px;
  width: auto;
  height: auto;
}

.enrollment-grid,
.faq-grid,
.detail-grid,
.detail-columns {
  display: grid;
  gap: 1rem;
}

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

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

.faq-card {
  padding: 1.35rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
}

.final-cta {
  padding-bottom: 5rem;
}

.final-cta .section-shell {
  background: linear-gradient(135deg, rgba(255, 250, 248, 0.9) 0%, rgba(243, 232, 227, 0.92) 100%);
  padding: 2.1rem 2.15rem;
  border-radius: 30px;
  border: 1px solid rgba(215, 201, 193, 0.9);
  box-shadow: var(--shadow);
}

body[data-page="home"] .final-cta {
  padding-top: 2.7rem;
  padding-bottom: 4.7rem;
}

body[data-page="home"] .final-cta .section-shell {
  gap: 0.7rem;
  justify-items: start;
}

body[data-page="home"] .final-cta h2 {
  max-width: 28ch;
}

body[data-page="home"] .final-cta p {
  max-width: 76ch;
}

body[data-page="home"] .final-cta .hero-actions {
  margin-top: 1rem;
}

.audience-split {
  padding-top: 0.6rem;
}

.audience-split__grid,
.org-card-grid,
.org-pathways-grid,
.org-steps-grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.audience-path-card,
.org-card,
.org-path-card,
.org-step-card {
  display: grid;
  align-content: start;
  gap: 0.72rem;
  min-height: 100%;
}

.audience-path-card--accent {
  background: linear-gradient(180deg, rgba(255, 252, 250, 0.94), rgba(246, 235, 229, 0.94));
  border-color: rgba(157, 34, 53, 0.16);
}

.audience-path-card h3,
.org-card h3,
.org-path-card h3,
.org-step-card h3 {
  margin: 0;
  font-size: 1.34rem;
  line-height: 1.16;
}

.audience-path-card .hero-actions,
.org-cta-card .hero-actions {
  margin-top: auto;
}

.audience-path-card__list,
.org-link-list {
  margin: 0.1rem 0 0;
}

.org-link-list a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

body[data-page="organizations"] .page-hero {
  padding-bottom: 2.6rem;
}

body[data-page="organizations"] .hero-grid {
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
  gap: 1.3rem;
}

body[data-page="organizations"] .hero-copy {
  padding: 2.4rem 1.1rem 1rem;
}

body[data-page="organizations"] .page-intro,
body[data-page="organizations"] .org-hero-panel {
  display: grid;
  gap: 0.9rem;
  padding: 1.9rem 1.7rem 2rem;
  background:
    radial-gradient(circle at top right, rgba(157, 34, 53, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 239, 234, 0.84));
}

body[data-page="organizations"] .org-hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(2.5rem, 4.2vw, 4.3rem);
  letter-spacing: -0.03em;
}

body[data-page="organizations"] .org-hero-copy p {
  max-width: 61ch;
  font-size: 1.05rem;
  line-height: 1.65;
}

.org-hero-panel {
  align-content: start;
  padding: 1.45rem;
  gap: 1rem;
}

.org-hero-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  line-height: 1.12;
  max-width: 16ch;
}

.org-hero-panel__list {
  display: grid;
  gap: 0.8rem;
}

.org-hero-panel__item {
  display: grid;
  gap: 0.28rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(215, 201, 193, 0.78);
}

.org-hero-panel__item:first-child {
  padding-top: 0;
  border-top: 0;
}

.org-hero-panel__item strong {
  font-size: 0.98rem;
  line-height: 1.25;
}

.org-hero-panel__item p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.5;
}

.org-section {
  position: relative;
}

.org-section--alt {
  padding-top: 2.45rem;
  padding-bottom: 2.45rem;
}

.org-section--alt::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at top left, rgba(157, 34, 53, 0.04), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(247, 241, 236, 0.58));
  border-top: 1px solid rgba(215, 201, 193, 0.55);
  border-bottom: 1px solid rgba(215, 201, 193, 0.55);
  pointer-events: none;
}

.org-section--alt .section-shell {
  position: relative;
  z-index: 1;
}

.org-section-heading {
  align-items: flex-start;
}

.org-section-heading h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  letter-spacing: -0.02em;
}

.org-section-heading p {
  max-width: 66ch;
}

.org-card-grid--uses,
.org-card-grid--structure,
.org-card-grid--questions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.org-card,
.org-path-card,
.org-step-card {
  padding: 1.35rem;
  background:
    radial-gradient(circle at top right, rgba(157, 34, 53, 0.045), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 242, 238, 0.9));
}

.org-card--accent {
  background:
    radial-gradient(circle at top right, rgba(157, 34, 53, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 238, 233, 0.96));
  border-color: rgba(157, 34, 53, 0.16);
}

.org-card__eyebrow {
  background: rgba(157, 34, 53, 0.08);
  color: var(--accent);
}

.org-card p,
.org-path-card p,
.org-step-card p,
.org-cta-card p {
  margin: 0;
}

.org-path-card {
  gap: 0.78rem;
}

.org-path-card h3 {
  max-width: none;
}

.org-link-list {
  padding-left: 1.15rem;
}

.org-link-list li {
  margin: 0.38rem 0;
  color: var(--muted);
}

.org-link-list li::marker {
  color: rgba(157, 34, 53, 0.8);
}

.org-step-card {
  gap: 0.62rem;
}

.org-cta-card--large {
  padding: 1.7rem;
  background:
    radial-gradient(circle at top right, rgba(157, 34, 53, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.93), rgba(246, 239, 234, 0.95));
  border-color: rgba(157, 34, 53, 0.16);
}

.org-cta-card--large h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.8vw, 3rem);
  max-width: 16ch;
}

.org-cta-card {
  align-items: start;
}

.page-intro {
  padding: 1.6rem 1.5rem 2.2rem;
  background:
    radial-gradient(circle at top right, rgba(157, 34, 53, 0.07), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(248, 241, 236, 0.78));
  border: 1px solid rgba(215, 201, 193, 0.9);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

body[data-page="explore"] .page-hero {
  padding-bottom: 1.8rem;
}

body[data-page="explore"] .page-section:first-of-type {
  padding-top: 1.6rem;
}

body[data-page="explore"] .page-intro {
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

body[data-page="explore"] .page-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/Curriculum%20Pathways%20for%20Learning%20Engineering%20Certification.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 118%;
  opacity: 0.12;
  filter: blur(0.5px);
  transform: scale(1.04);
}

body[data-page="explore"] .page-intro > * {
  position: relative;
  z-index: 1;
  max-width: 52rem;
}

.explore-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 1.2rem;
  align-items: start;
}

.filter-panel {
  padding: 1.3rem;
  position: sticky;
  top: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 241, 237, 0.92));
  z-index: 12;
  overflow: visible;
}

.filter-mobile-toggle,
.filter-panel__backdrop {
  display: none;
}

.filter-panel__sheet {
  display: block;
}

#filter-panel-content {
  max-height: calc(100vh - 7.5rem);
  overflow: auto;
  padding-right: 0.25rem;
}

.search-field {
  display: block;
  margin: 0.55rem 0 0.85rem;
}

.search-field input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-strong);
  color: var(--text);
  padding: 0.9rem 1rem;
}

.search-field input::placeholder {
  color: var(--muted);
}

.filter-panel__header,
.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.filter-panel__header {
  margin-bottom: 0.35rem;
}

.filter-panel__header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.filter-panel__header h2 {
  margin: 0;
  font-size: 1.05rem;
}

.filter-panel__close,
.filter-panel__footer {
  display: none;
}

.text-action {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--muted);
  font-size: 0.92rem;
  cursor: pointer;
}

.text-action:hover {
  color: var(--text);
}

.filter-group {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 1rem;
  padding-inline: 0;
  border-inline: 0;
  border-bottom: 0;
  min-inline-size: 0;
}

.filter-group legend {
  margin: 0 0 0.7rem;
  padding: 0;
}

.filter-legend {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1rem;
  font-weight: 700;
}

.filter-legend__info {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.filter-help {
  width: 1.35rem;
  height: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(31, 35, 41, 0.2);
  background: #fff;
  color: var(--muted);
  padding: 0;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  cursor: help;
}

.filter-help:hover {
  color: var(--text);
  border-color: rgba(31, 35, 41, 0.35);
}

.filter-tooltip {
  display: none;
}

.floating-tooltip {
  position: fixed;
  z-index: 2000;
  width: min(320px, calc(100vw - 2rem));
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(31, 35, 41, 0.96);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 30px rgba(31, 35, 41, 0.24);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.5;
  pointer-events: none;
}

.floating-tooltip strong {
  display: block;
  margin-top: 0.45rem;
  margin-bottom: 0.12rem;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.floating-tooltip strong:first-child {
  margin-top: 0;
}

.checkbox-list {
  display: grid;
  gap: 0.55rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.8rem;
  border-radius: 18px;
  background: rgba(248, 243, 239, 0.8);
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
  border: 1px solid transparent;
}

.checkbox-item input {
  accent-color: var(--accent);
}

.checkbox-item:hover {
  border-color: rgba(157, 34, 53, 0.18);
  background: rgba(248, 243, 239, 1);
}

.checkbox-item:focus-within {
  border-color: rgba(157, 34, 53, 0.28);
  background: rgba(255, 249, 246, 1);
}

.results-header {
  justify-content: flex-end;
  padding: 0 0 0.35rem;
}

.sort-shell {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.sort-label {
  color: var(--muted);
  font-size: 0.92rem;
}

.sort-control {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

#sort-select {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--surface-strong);
  color: var(--text);
  border-radius: 14px;
  padding: 0.85rem 2.35rem 0.85rem 0.95rem;
  min-width: 180px;
}

.sort-control__arrow {
  position: absolute;
  right: 0.9rem;
  pointer-events: none;
  color: var(--muted);
  font-size: 0.82rem;
}

.no-results {
  display: none;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px dashed var(--border);
  background: rgba(255, 255, 255, 0.55);
}

.no-results.is-visible {
  display: block;
}

.detail-hero {
  padding: 1.4rem 0 2rem;
}

.detail-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 360px;
  gap: 1.25rem;
  align-items: start;
  background:
    radial-gradient(circle at top right, rgba(157, 34, 53, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(248, 241, 236, 0.88));
  border: 1px solid rgba(215, 201, 193, 0.9);
  border-radius: 40px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.detail-hero__content {
  display: grid;
  gap: 1rem;
  padding: 0.75rem;
}

.detail-hero__aside {
  padding: 1.4rem;
  position: sticky;
  top: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 241, 237, 0.9));
}

.detail-course-image {
  overflow: visible;
  border-radius: 0;
  margin-bottom: 1rem;
  aspect-ratio: 1600 / 850;
  background: rgba(248, 243, 239, 0.95);
  border: 1px solid rgba(215, 201, 193, 0.8);
}

.detail-course-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.price-block {
  display: grid;
  gap: 0.6rem;
}

.price-block strong {
  font-size: 2rem;
  font-family: var(--font-display);
}

.secure-checkout {
  display: flex;
  gap: 0.65rem;
  padding: 0.9rem;
  border-radius: 18px;
  background: var(--surface-muted);
  color: var(--muted);
  font-size: 0.95rem;
  border: 1px solid rgba(215, 201, 193, 0.9);
}

.detail-columns {
  grid-template-columns: 1.1fr 0.9fr;
}

.detail-list,
.detail-bullet-list {
  padding-left: 1.2rem;
  margin: 0;
}

.detail-list li,
.detail-bullet-list li {
  margin-bottom: 0.65rem;
}

.details-stack {
  display: grid;
  gap: 0.85rem;
}

.syllabus-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.syllabus-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
}

.syllabus-item summary::-webkit-details-marker {
  display: none;
}

.syllabus-item[open] summary {
  background: rgba(157, 34, 53, 0.06);
}

.syllabus-item__content {
  padding: 0 1.2rem 1.2rem;
}

.syllabus-item__content--editorial {
  padding: 0.35rem 1.25rem 1.35rem;
  display: grid;
  gap: 1rem;
}

.syllabus-editorial-block {
  display: grid;
  gap: 0.38rem;
  max-width: none;
}

.syllabus-item__content--editorial p:last-child {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(49, 42, 39, 0.9);
}

.instructor-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 1rem;
  align-items: center;
}

.instructor-card img {
  border-radius: 26px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.instructor-list {
  display: grid;
  gap: 1rem;
}

.instructor-card--stacked {
  grid-template-columns: 108px minmax(0, 1fr);
  align-items: start;
}

.instructor-card__image {
  display: block;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  clip-path: circle(50%);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(215, 201, 193, 0.82);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
}

.instructor-card__content {
  min-width: 0;
}

.instructor-card__meta {
  margin-top: 0.1rem;
  margin-bottom: 0.75rem;
}

.instructor-card__bio {
  color: rgba(44, 35, 29, 0.88);
}

.instructor-card__bio-wrap {
  display: block;
}

.instructor-card__bio.is-clamped {
  display: block;
}

.instructor-card__bio.is-expanded {
  display: block;
}

.instructor-card__bio-toggle {
  line-height: 1.35;
}

.instructor-card__bio-wrap.is-expanded .instructor-card__bio-toggle {
  position: static;
  padding-left: 0;
  background: transparent;
}

.instructor-card__bio-inline-toggle {
  display: inline;
  white-space: nowrap;
  margin-left: 0.25rem;
  line-height: inherit;
  vertical-align: baseline;
}

.instructor-card__bio--measure {
  position: fixed;
  left: -9999px;
  top: -9999px;
  visibility: hidden;
  pointer-events: none;
  z-index: -1;
}

.instructor-card__actions {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.text-link {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--accent);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.itle-page .detail-hero {
  --itle-hero-top-pad: clamp(0.9rem, 0.7rem + 0.55vw, 1.2rem);
  --itle-content-gap: clamp(0.7rem, 0.55rem + 0.45vw, 0.95rem);
  --itle-title-actions-gap: clamp(0.95rem, 0.7rem + 0.8vw, 1.35rem);
  --itle-actions-strip-gap: clamp(0.45rem, 0.2rem + 0.95vw, 0.95rem);
  --itle-strip-inset-x: clamp(1rem, 0.5rem + 1.8vw, 1.75rem);
  --itle-strip-inset-bottom: clamp(1rem, 0.7rem + 1.4vw, 1.65rem);
  padding: 1.4rem 0 1.7rem;
}

.detail-hero__shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  background:
    radial-gradient(circle at top right, rgba(157, 34, 53, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(248, 241, 236, 0.88));
  border: 1px solid rgba(215, 201, 193, 0.9);
  border-radius: 40px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.itle-hero__logistics {
  width: auto;
  margin: var(--itle-actions-strip-gap) var(--itle-strip-inset-x) var(--itle-strip-inset-bottom);
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  padding: 0;
  border: 1px solid rgba(214, 201, 193, 0.88);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(252, 249, 247, 0.965));
  box-shadow:
    0 14px 28px rgba(36, 26, 19, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.itle-page .detail-hero__grid {
  width: 100%;
  margin: 0;
  grid-template-columns: minmax(0, 1.02fr) 392px;
  gap: 1.5rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding-bottom: var(--itle-actions-strip-gap);
}

.itle-badges {
  gap: 0.55rem;
}

.special-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #fff;
  color: #111;
  border: 1px solid rgba(17, 17, 17, 0.12);
}

.itle-hero__content {
  gap: var(--itle-content-gap);
  padding-top: var(--itle-hero-top-pad);
  padding-bottom: 0;
  min-width: 0;
  width: 100%;
}

.itle-page .detail-hero__actions {
  margin-top: var(--itle-title-actions-gap);
}

.itle-feature-cell {
  padding: 1rem 1.28rem 1.02rem;
  min-width: 0;
  border-left: 1px solid rgba(215, 201, 193, 0.68);
  display: grid;
  gap: 0.24rem;
  align-content: center;
}

.itle-feature-cell:first-child {
  border-left: 0;
}

.itle-feature-cell h3 {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.24;
  letter-spacing: -0.01em;
  color: rgba(30, 24, 20, 0.96);
}

.itle-feature-cell p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.4;
}

.itle-linkedin-icon {
  height: 0.9em;
  width: auto;
  margin-left: 0.22rem;
  transform: translateY(1px);
}

.itle-linkedin-line {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
}

.itle-page .detail-hero__aside {
  min-width: 0;
  width: 100%;
}

.itle-pricing-footnote {
  margin: 0.9rem 0 0;
  width: min(calc(100% - 2rem), var(--max-width));
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.itle-pricing-footnote a {
  color: var(--accent);
}

.itle-hero__aside {
  display: grid;
  gap: 0.9rem;
  padding-top: 0.8rem;
}

.itle-price-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.itle-price-tier {
  padding: 1rem 1rem 1.05rem;
  border-radius: 20px;
  border: 1px solid rgba(215, 201, 193, 0.86);
  background: rgba(255, 255, 255, 0.84);
}

.itle-price-tier__label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.itle-price-tier strong {
  font-size: 1.9rem;
  line-height: 1;
}

@media (max-width: 980px) {
  .itle-page .detail-hero__grid {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 0.75rem + 1vw, 1.35rem);
  }

  .itle-page .detail-hero__content,
  .itle-page .detail-hero__aside,
  .itle-page #detail-price {
    width: 100%;
    min-width: 0;
  }

  .itle-page .detail-hero__aside {
    padding-top: 0;
    position: static;
  }
}

.itle-hero-support {
  margin-top: 0.85rem;
  background: rgba(255, 255, 255, 0.76);
}

.itle-start-grid {
  align-items: stretch;
}

.course-split-grid {
  display: grid;
  gap: clamp(1.35rem, 1rem + 1.15vw, 2.4rem);
  align-items: start;
}

.course-split-grid--outcomes {
  grid-template-columns: minmax(0, 2.35fr) minmax(17rem, 1fr);
}

.course-split-grid--overview {
  grid-template-columns: minmax(0, 2.35fr) minmax(17rem, 1fr);
}

.course-split-grid--overview.course-split-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.course-split-grid__main,
.course-split-grid__aside {
  min-width: 0;
}

.course-split-grid .section-heading {
  margin-bottom: clamp(0.75rem, 0.6rem + 0.5vw, 1rem);
}

.itle-page .detail-section .section-heading h2 {
  font-size: clamp(1.45rem, 1.2rem + 0.95vw, 1.95rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.course-split-grid__aside .section-heading {
  margin-bottom: clamp(0.7rem, 0.55rem + 0.45vw, 0.95rem);
}

.detail-support-panel {
  display: grid;
  gap: 0.8rem;
  padding: clamp(1rem, 0.85rem + 0.6vw, 1.3rem);
  border-radius: 1.2rem;
  border: 1px solid rgba(165, 151, 138, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(251, 247, 242, 0.92));
  box-shadow: 0 12px 28px rgba(68, 42, 33, 0.06);
}

.detail-support-panel__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
}

.detail-support-panel p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.68;
  color: var(--ink-soft);
}

.itle-audience-list {
  max-width: none;
  padding-left: 1.05rem;
  margin-top: 0;
}

.itle-outcomes-list {
  list-style: none;
  padding-left: 0;
  max-width: none;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2.2rem;
  align-items: start;
}

.itle-outcomes-list li {
  position: relative;
  margin-bottom: 0;
  padding-left: 1.8rem;
}

.itle-outcomes-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.18em;
  color: rgba(126, 35, 51, 0.78);
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 600;
}

.itle-outcomes-list a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.itle-outcomes-list li,
.itle-audience-list li,
.itle-copy p,
.syllabus-item__content p,
.syllabus-item__content li {
  font-size: 1rem;
  line-height: 1.72;
}

.itle-copy {
  display: grid;
  gap: 1rem;
}

.modal-open {
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(31, 35, 41, 0.38);
  backdrop-filter: blur(2px);
  z-index: 130;
}

.modal-backdrop[hidden] {
  display: none !important;
}

.register-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  z-index: 140;
}

.register-modal[hidden] {
  display: none !important;
}

.register-modal__dialog {
  width: min(100%, 520px);
  padding: 1.5rem;
  border-radius: 28px;
  border: 1px solid rgba(215, 201, 193, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 237, 0.98));
  box-shadow: 0 24px 48px rgba(31, 35, 41, 0.2);
}

.register-modal__header h2 {
  margin-bottom: 0.35rem;
}

.register-modal__intro {
  margin-bottom: 1rem;
  color: var(--muted);
}

.register-modal__form {
  display: grid;
  gap: 0.95rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field label {
  font-weight: 600;
}

.form-field input {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(215, 201, 193, 0.95);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
}

.form-error {
  margin: 0;
  color: var(--accent);
  font-size: 0.92rem;
}

.form-error--info {
  color: var(--ink-soft);
}

.register-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.itle-experience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.itle-instructor-card {
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: start;
  gap: 1.2rem;
}

.itle-instructor-card__image {
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  clip-path: circle(50%);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(215, 201, 193, 0.86);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
}

.itle-instructor-card__content {
  min-width: 0;
}

.itle-instructor-card__content h3 {
  margin-bottom: 0.35rem;
}

.itle-instructor-card__meta {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.itle-instructor-card__bio {
  color: rgba(44, 35, 29, 0.88);
}

.itle-instructor-card__bio.is-clamped {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.itle-instructor-card__bio.is-expanded {
  display: block;
}

.itle-instructor-card__actions {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  align-items: center;
}

.support-strip__shell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

.support-strip__card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.faq-page-hero {
  padding: 0.65rem 0 1.15rem;
}

.faq-page-intro {
  max-width: none;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.faq-page-intro h1 {
  font-size: clamp(1.8rem, 1.65rem + 0.9vw, 2.45rem);
  margin-bottom: 0.2rem;
}

.faq-jump-section,
.faq-section {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.faq-jump-section {
  margin-top: -0.5rem;
  margin-bottom: 2rem;
}

.faq-jump-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0 0 0.25rem;
}

.faq-jump-shell a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.6rem 0.95rem;
  border: 1px solid rgba(37, 32, 30, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.faq-jump-shell a:hover,
.faq-jump-shell a:focus-visible {
  color: var(--ink);
  border-color: rgba(37, 32, 30, 0.28);
  background: rgba(255, 255, 255, 0.92);
}

.faq-section {
  margin-bottom: 2.75rem;
}

.faq-section__shell {
  display: grid;
  gap: 1rem;
}

.faq-section__header {
  display: grid;
  gap: 0.35rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(37, 32, 30, 0.1);
}

.faq-section__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 700;
}

.faq-section__header h2 {
  margin: 0;
  font-size: clamp(1.5rem, 1.4rem + 0.5vw, 1.95rem);
}

.faq-accordion {
  display: grid;
  gap: 0.85rem;
}

.faq-accordion-item {
  background: rgba(255, 255, 255, 0.8);
}

.faq-accordion-item summary {
  padding-right: 3.2rem;
  position: relative;
  color: var(--ink);
}

.faq-accordion-item summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
}

.faq-accordion-item[open] summary::after {
  content: "\2212";
}

.faq-answer {
  display: grid;
  gap: 0.9rem;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

.faq-answer a {
  color: var(--accent-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.faq-answer ul {
  margin-top: -0.15rem;
}

.faq-support-strip {
  padding-top: 0.5rem;
}

.faq-support-strip .support-strip__card {
  justify-content: flex-start;
}

.faq-support-strip p a {
  color: var(--accent-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.site-footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(215, 201, 193, 0.8);
  background: linear-gradient(180deg, rgba(250, 247, 244, 0.6), rgba(244, 237, 232, 0.8));
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.footer-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.8rem;
  justify-content: center;
}

.footer-links a {
  display: inline-flex;
  color: var(--muted);
  text-align: center;
}

.footer-meta {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(215, 201, 193, 0.8);
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-meta__credibility {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 0.9rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(215, 201, 193, 0.6);
}

.footer-meta__credibility img {
  height: 38px;
  width: auto;
  flex: 0 0 auto;
}

.footer-meta__credibility a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.partial-error {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 1rem auto;
  padding: 1rem 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(157, 34, 53, 0.22);
  background: rgba(255, 244, 245, 0.9);
  color: var(--accent-dark);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1080px) {
  .hero-grid,
  .detail-hero__grid,
  .footer-shell,
  .support-strip__shell,
  .explore-layout,
  .detail-columns,
  .trust-grid,
  .feature-spotlight {
    grid-template-columns: 1fr;
  }

  .practice-grid,
  .collections-grid,
  .quotes-grid,
  .featured-grid,
  .course-lanes,
  .results-grid,
  .enrollment-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-split__grid,
  .org-pathways-grid,
  .org-steps-grid {
    grid-template-columns: 1fr;
  }

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

  .org-card-grid--uses,
  .org-card-grid--structure,
  .org-card-grid--questions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter-panel {
    position: static;
  }

  .hero-grid,
  .detail-hero__grid,
  .page-intro {
    padding: 1.25rem;
  }

  .hero-copy {
    padding: 1.5rem 0.5rem 0.5rem;
  }

  .media-card {
    max-width: 680px;
    margin: 0 auto;
  }

  .feature-spotlight__frame {
    min-height: 360px;
    border-radius: 0 0 24px 24px;
  }

  .feature-spotlight__tabs {
    border-radius: 24px 24px 0 0;
  }

  .footer-meta__credibility {
    align-items: flex-start;
    flex-direction: column;
  }

  .itle-page .detail-hero__aside {
    position: static;
  }

  .itle-page .detail-hero__grid {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 0.75rem + 1vw, 1.35rem);
  }

  .itle-page .detail-hero__aside,
  .itle-page .detail-hero__content,
  .itle-page #detail-price {
    width: 100%;
  }

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

  .itle-hero__logistics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 0.75rem;
  }

  .itle-feature-cell:nth-child(odd) {
    border-left: 0;
  }

  .itle-outcomes-list {
    gap: 0.9rem 1.6rem;
  }

  .course-split-grid--overview {
    grid-template-columns: minmax(0, 1.9fr) minmax(16rem, 1fr);
  }

  .course-split-grid--outcomes {
    grid-template-columns: minmax(0, 1.9fr) minmax(16rem, 1fr);
  }
}

@media (max-width: 760px) {
  body.filter-sheet-open {
    overflow: hidden;
  }

  body {
    padding-top: 5.5rem;
  }

  .header-shell {
    flex-wrap: wrap;
    padding-bottom: 1rem;
  }

  .faq-jump-shell {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
  }

  .faq-jump-shell a {
    white-space: nowrap;
  }

  .faq-section {
    margin-bottom: 2.25rem;
  }

  .faq-section__header h2 {
    font-size: 1.35rem;
  }

  .faq-accordion-item summary {
    padding: 1rem 2.85rem 1rem 1rem;
  }

  .faq-accordion-item summary::after {
    right: 1rem;
  }

  .faq-answer {
    gap: 0.8rem;
  }

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

  .primary-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 0.5rem;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    width: 100%;
    text-align: left;
  }

  .nav-dropdown {
    width: 100%;
  }

  .site-header .nav-dropdown summary {
    width: 100%;
    justify-content: space-between;
  }

  .site-header .nav-dropdown__menu {
    position: static;
    min-width: 0;
    margin-top: 0.35rem;
  }

  .itle-outcomes-list {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .course-split-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .detail-support-panel {
    gap: 0.7rem;
  }

  body[data-page="explore"] .page-intro {
    min-height: 200px;
  }

  body[data-page="explore"] .page-intro::before {
    background-position: right bottom;
    background-size: 95% auto;
    opacity: 0.14;
    filter: blur(0.35px);
    transform: scale(1.01);
  }

  body[data-page="explore"] .filter-panel {
    position: sticky;
    top: 0.75rem;
    z-index: 60;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  body[data-page="explore"] .filter-mobile-toggle {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(215, 201, 193, 0.95);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    color: var(--text);
    font-weight: 600;
  }

  body[data-page="explore"] .filter-mobile-toggle__icon {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1;
  }

  body[data-page="explore"] .filter-panel__sheet {
    display: none;
  }

  body[data-page="explore"] .filter-panel.is-open .filter-panel__backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(31, 35, 41, 0.28);
    backdrop-filter: blur(2px);
  }

  body[data-page="explore"] .filter-panel.is-open .filter-panel__sheet {
    position: fixed;
    inset: 4.6rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 1.1rem 1.1rem calc(1.1rem + env(safe-area-inset-bottom, 0px));
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 237, 0.98));
    border: 1px solid rgba(215, 201, 193, 0.95);
    box-shadow: var(--shadow);
    z-index: 70;
  }

  body[data-page="explore"] #filter-panel-content {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
    overflow: auto;
    padding-right: 0;
    padding-bottom: 0.5rem;
  }

  body[data-page="explore"] .filter-panel__close {
    display: inline-flex;
  }

  body[data-page="explore"] .filter-panel__footer {
    display: block;
    flex: 0 0 auto;
    margin-top: 0.75rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(215, 201, 193, 0.85);
    background: linear-gradient(180deg, rgba(247, 241, 237, 0), rgba(247, 241, 237, 0.98) 26%);
  }

  body[data-page="explore"] .filter-panel__apply {
    width: 100%;
    justify-content: center;
  }

  .hero-copy {
    padding: 0.1rem;
  }

  .section-heading h2,
  .page-intro h1,
  .detail-hero__content h1,
  .site-footer h2 {
    max-width: none;
    font-size: clamp(2.1rem, 9vw, 3rem);
  }

  .practice-grid,
  .collections-grid,
  .quotes-grid,
  .featured-grid,
  .course-lanes,
  .results-grid,
  .enrollment-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .org-card-grid,
  .org-card-grid--uses,
  .org-card-grid--structure,
  .org-card-grid--questions {
    grid-template-columns: 1fr;
  }

  body[data-page="organizations"] .hero-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="organizations"] .hero-copy {
    padding: 0.2rem;
  }

  body[data-page="organizations"] .org-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.25rem, 9vw, 3.4rem);
  }

  body[data-page="organizations"] .org-hero-copy p {
    font-size: 0.98rem;
  }

  .org-hero-panel h2,
  .org-cta-card--large h2 {
    max-width: none;
  }

  .course-card__footer,
  .support-strip__card {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-spotlight__frame {
    min-height: 280px;
  }

  .feature-tab {
    padding: 0.95rem 1rem 1.05rem 1.18rem;
  }

  .feature-demo-play {
    width: 3.35rem;
    height: 3.35rem;
  }

  .hero-actions,
  .detail-hero__actions {
    align-items: stretch;
  }

  .hero-actions .button,
  .detail-hero__actions .button {
    width: 100%;
  }

  #sort-select {
    width: 100%;
  }

  .secure-checkout {
    flex-direction: column;
  }

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

  .itle-experience-grid {
    grid-template-columns: 1fr;
  }

  .itle-hero__logistics,
  .itle-price-compare {
    grid-template-columns: 1fr;
  }

  .itle-feature-cell {
    border-left: 0;
    padding: 0.95rem 1rem;
  }

  .itle-hero__logistics {
    --itle-strip-inset-x: clamp(0.9rem, 0.55rem + 1.8vw, 1rem);
    --itle-strip-inset-bottom: clamp(0.9rem, 0.65rem + 1vw, 1rem);
    --itle-actions-strip-gap: clamp(0.35rem, 0.2rem + 0.9vw, 0.6rem);
  }

  .itle-feature-cell:last-child p {
    white-space: normal;
  }

  .register-modal__dialog {
    padding: 1.2rem;
  }

  .register-modal__actions .button {
    width: 100%;
  }

  .itle-instructor-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .itle-instructor-card__image {
    width: 108px;
    height: 108px;
  }

  .footer-links {
    width: 100%;
    justify-content: center;
  }

  .brandmark img {
    height: 38px;
  }

  .site-header.is-scrolled .header-shell {
    padding-top: 0.45rem;
    padding-bottom: 0.5rem;
  }

  .spotlight-card--hero p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

body[data-page="organizations"] .page-hero {
  padding: 0.65rem 0 0.95rem;
}

body[data-page="organizations"] .section-heading h2 {
  font-size: 2.05rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.org-page-hero .hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 1.15rem;
  align-items: start;
  padding: 0.92rem;
}

.org-page-hero__main {
  display: grid;
  align-content: start;
  gap: 0.72rem;
}

.org-page-hero .hero-copy {
  padding: 0.82rem 0.8rem 0.45rem;
}

.org-page-hero .eyebrow {
  padding: 0.38rem 0.68rem;
  font-size: 0.71rem;
}

.org-page-hero__main h1 {
  max-width: 19ch;
  font-size: 2.76rem;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.org-page-hero__main p {
  max-width: 57ch;
  margin-top: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.org-page-hero__values {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.48rem;
  max-width: 61ch;
}

.org-page-hero__values li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.64rem;
  align-items: start;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.42;
}

.org-page-hero__values li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(157, 34, 53, 0.72);
  margin-top: 0.42rem;
  box-shadow: 0 0 0 4px rgba(157, 34, 53, 0.08);
}

.org-page-hero .hero-actions {
  margin-top: 0.22rem;
  gap: 0.75rem;
}

.org-summary-card {
  padding: 1rem;
  display: grid;
  gap: 0.82rem;
  align-self: start;
  background:
    radial-gradient(circle at top right, rgba(157, 34, 53, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.93), rgba(247, 241, 236, 0.95));
}

.org-summary-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.24rem;
  line-height: 1.08;
}

.org-model-flow {
  display: grid;
  gap: 0.72rem;
}

.org-model-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.08rem 0.72rem;
  padding: 0.78rem;
  border: 1px solid rgba(215, 201, 193, 0.7);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.org-model-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 1.52rem;
  bottom: -0.72rem;
  width: 1px;
  height: 0.72rem;
  background: rgba(157, 34, 53, 0.24);
}

.org-model-step__icon,
.org-card-icon {
  display: inline-flex;
  width: 1.48rem;
  height: 1.48rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(157, 34, 53, 0.08);
  border: 1px solid rgba(157, 34, 53, 0.16);
  color: var(--accent);
}

.org-model-step__icon {
  grid-row: 1 / span 3;
  margin-top: 0.08rem;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.org-card-icon::before {
  content: "";
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 999px;
  background: currentColor;
}

.org-model-step__eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  line-height: 1.25;
}

.org-model-step h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.12;
}

.org-model-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.42;
}

.org-page-section {
  padding: 3rem 0;
}

.org-page-section .section-shell {
  gap: 1rem;
}

.org-page-section__heading {
  align-items: flex-start;
}

.org-page-section__heading p {
  margin-top: 0.35rem;
  max-width: 68ch;
  font-size: 0.93rem;
}

.org-page-section--soft {
  position: relative;
}

.org-page-section--soft::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at top left, rgba(157, 34, 53, 0.04), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(247, 241, 236, 0.58));
  border-top: 1px solid rgba(215, 201, 193, 0.55);
  border-bottom: 1px solid rgba(215, 201, 193, 0.55);
  pointer-events: none;
}

.org-page-section--soft .section-shell {
  position: relative;
  z-index: 1;
}

.org-card-grid,
.org-step-grid,
.org-pathway-grid {
  display: grid;
  gap: 1rem;
}

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

.org-step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
  gap: 0.82rem;
}

.org-info-card,
.org-step-card,
.org-pathway-card,
.org-cta-card {
  display: grid;
  align-content: start;
  gap: 0.52rem;
  padding: 1.12rem;
  background:
    radial-gradient(circle at top right, rgba(157, 34, 53, 0.045), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 242, 238, 0.92));
}

.org-info-card {
  padding: 0.98rem 1.02rem;
  gap: 0.4rem;
}

.org-info-card__head {
  display: flex;
  align-items: center;
  gap: 0.62rem;
}

.org-info-card__head .org-card-icon {
  flex: 0 0 auto;
}

.org-info-card h3,
.org-step-card h3,
.org-pathway-card h3,
.org-cta-card h2 {
  margin: 0;
}

.org-info-card h3,
.org-step-card h3,
.org-pathway-card h3 {
  font-size: 1.1rem;
  line-height: 1.18;
}

.org-page-section .org-card-grid {
  gap: 0.9rem;
}

.org-info-card p,
.org-step-card p,
.org-pathway-card p,
.org-cta-card p {
  margin: 0;
  color: var(--muted);
}

.org-info-card:first-child {
  border-color: rgba(157, 34, 53, 0.18);
}

.org-step-card__label,
.org-pathway-card__label {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  padding: 0.34rem 0.58rem;
  border-radius: 999px;
  background: rgba(157, 34, 53, 0.08);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.org-page-section--steps .org-step-grid::before {
  content: "";
  position: absolute;
  left: 2.25rem;
  right: 2.25rem;
  top: 2.16rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(157, 34, 53, 0.18), rgba(157, 34, 53, 0.32), rgba(157, 34, 53, 0.18));
  pointer-events: none;
}

.org-step-card {
  position: relative;
  gap: 0.36rem;
  padding: 0.8rem 0.9rem 0.92rem;
  border-color: rgba(157, 34, 53, 0.12);
  box-shadow: none;
  background: rgba(255, 255, 255, 0.58);
}

.org-step-card__label {
  position: relative;
  z-index: 1;
  width: 2.72rem;
  height: 2.72rem;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
  background: #fff;
  border: 1.5px solid rgba(157, 34, 53, 0.22);
  box-shadow: 0 10px 24px rgba(36, 26, 19, 0.08);
  font-size: 1rem;
}

.org-page-section--capstone {
  padding-top: 2.5rem;
  padding-bottom: 2.8rem;
}

.org-capstone-card {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 1.2rem;
  align-items: center;
  padding: 1.28rem;
  border-color: rgba(157, 34, 53, 0.16);
  background:
    radial-gradient(circle at top left, rgba(157, 34, 53, 0.07), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 242, 238, 0.94));
}

.org-capstone-card__content {
  display: grid;
  gap: 0.55rem;
}

.org-capstone-card .eyebrow {
  justify-self: start;
}

.org-capstone-card h2 {
  margin: 0;
  max-width: 22ch;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 1.25rem + 1.45vw, 2.28rem);
  line-height: 1.06;
}

.org-capstone-card p {
  margin: 0;
  color: var(--muted);
}

.org-capstone-card__content p {
  max-width: 62ch;
}

.org-capstone-card__points {
  display: grid;
  gap: 0.72rem;
  padding: 0.92rem;
  border: 1px solid rgba(215, 201, 193, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
}

.org-capstone-card__points div {
  display: grid;
  gap: 0.18rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(215, 201, 193, 0.62);
}

.org-capstone-card__points span {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.org-capstone-card__points p {
  font-size: 0.92rem;
  line-height: 1.45;
}

.org-capstone-card__points .button {
  justify-self: start;
}

.org-pathway-grid {
  gap: 1.1rem;
}

.org-page-section--pathways {
  position: relative;
  padding-top: 3.55rem;
  padding-bottom: 3.6rem;
}

.org-page-section--pathways::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at top right, rgba(157, 34, 53, 0.055), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(246, 239, 234, 0.72));
  border-top: 1px solid rgba(215, 201, 193, 0.58);
  border-bottom: 1px solid rgba(215, 201, 193, 0.58);
  pointer-events: none;
}

.org-page-section--pathways .section-shell {
  gap: 1.3rem;
  position: relative;
  z-index: 1;
}

.org-pathway-card {
  padding: 1.22rem;
  gap: 0.88rem;
  border-color: rgba(157, 34, 53, 0.18);
  box-shadow: 0 18px 34px rgba(36, 26, 19, 0.08);
  background:
    radial-gradient(circle at top right, rgba(157, 34, 53, 0.075), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 242, 238, 0.96));
}

.org-pathway-card__audience {
  display: grid;
  gap: 0.18rem;
  font-size: 0.93rem;
  line-height: 1.45;
  color: rgba(54, 49, 46, 0.96);
  font-weight: 650;
  margin-top: -0.2rem;
}

.org-pathway-card__audience span {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.org-pathway-card__block {
  position: relative;
  display: grid;
  gap: 0.42rem;
  padding-top: 0.88rem;
  border-top: 1px solid rgba(215, 201, 193, 0.82);
}

.org-pathway-card__block:first-of-type {
  padding: 0.82rem 0.92rem;
  border: 1px solid rgba(157, 34, 53, 0.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(157, 34, 53, 0.07), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 244, 240, 0.98));
}

.org-pathway-card__block:first-of-type::after {
  content: "";
  position: absolute;
  left: 1.25rem;
  bottom: -0.88rem;
  width: 1px;
  height: 0.88rem;
  background: rgba(157, 34, 53, 0.22);
}

.org-pathway-card__block > a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  line-height: 1.35;
  font-size: 0.98rem;
}

.org-pathway-card__block > a:hover,
.org-pathway-card__list a:hover {
  color: var(--accent-dark);
}

.org-pathway-card__list a {
  color: rgba(54, 49, 46, 0.92);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(157, 34, 53, 0.2);
  text-underline-offset: 0.18em;
}

.org-pathway-card__list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.32rem;
}

.org-pathway-card__list li::marker {
  color: rgba(157, 34, 53, 0.8);
}

.org-page-section__note {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  margin: 0.32rem 0 0;
  color: rgba(54, 49, 46, 0.9);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.42rem 0.58rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(215, 201, 193, 0.68);
}

.org-page-section__note::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(157, 34, 53, 0.72);
  box-shadow: 0 0 0 4px rgba(157, 34, 53, 0.08);
}

.org-page-section--review .org-info-card {
  padding: 0.9rem 0.96rem;
  gap: 0.34rem;
}

.org-evidence-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.org-evidence-item {
  display: grid;
  align-content: start;
  gap: 0.42rem;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.66);
}

.org-evidence-item h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.15;
}

.org-evidence-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.org-cta-card {
  grid-template-columns: minmax(0, 1.26fr) minmax(250px, auto);
  align-items: center;
  gap: 0.9rem 1.4rem;
  padding: 1.18rem 1.34rem;
  background:
    radial-gradient(circle at top right, rgba(157, 34, 53, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.93), rgba(246, 239, 234, 0.95));
  border-color: rgba(157, 34, 53, 0.18);
}

.org-cta-card__content {
  display: grid;
  gap: 0.3rem;
}

.org-cta-card h2 {
  font-family: var(--font-display);
  font-size: 2.06rem;
  line-height: 1.06;
  max-width: 30ch;
}

.org-cta-card p {
  max-width: 62ch;
}

.org-cta-card .hero-actions {
  margin-top: 0;
  justify-content: flex-end;
  align-self: center;
}

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

  .org-page-hero__main h1 {
    font-size: 2.65rem;
  }

  .org-step-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .org-page-section--steps .org-step-grid::before {
    display: block;
  }
}

@media (max-width: 900px) {
  .org-evidence-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .org-cta-card .hero-actions {
    justify-content: flex-start;
  }

  .org-step-grid {
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  .org-page-section--steps .org-step-grid::before {
    display: block;
    left: 2.25rem;
    right: auto;
    top: 1.3rem;
    bottom: 1.3rem;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(157, 34, 53, 0.18), rgba(157, 34, 53, 0.32), rgba(157, 34, 53, 0.18));
  }

  .org-step-card {
    grid-template-columns: auto 1fr;
    column-gap: 0.78rem;
    padding: 0.85rem 0.92rem;
  }

  .org-step-card__label {
    grid-row: 1 / span 2;
  }

  .org-step-card h3,
  .org-step-card p {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .org-page-hero .hero-copy {
    padding: 0.2rem;
  }

  .org-page-hero__main h1 {
    max-width: none;
    font-size: 2.16rem;
  }

  body[data-page="organizations"] .section-heading h2 {
    font-size: 1.58rem;
  }

  .org-page-section {
    padding: 2.6rem 0;
  }

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

  .org-card-grid,
  .org-pathway-grid {
    grid-template-columns: 1fr;
  }

  .org-page-section--steps .org-step-grid::before {
    display: block;
  }

  .org-model-flow,
  .org-evidence-strip {
    grid-template-columns: 1fr;
  }

  .org-model-step:not(:last-child)::after {
    left: 1.52rem;
    right: auto;
    top: auto;
    bottom: -0.72rem;
    width: 1px;
    height: 0.72rem;
  }

  .org-summary-card h2,
  .org-cta-card h2 {
    max-width: none;
  }

  .org-capstone-card {
    padding: 1rem;
  }

  .org-capstone-card__points .button {
    width: 100%;
  }

  .org-cta-card h2 {
    font-size: 1.72rem;
  }
}
