/* Scholarship Enablement — Moinee blue + growth accent (ILC v2) */

.sch-page {
  --sch-deep: #003D4D;
  --sch-teal: #0077B6;
  --sch-teal-dark: #005A8C;
  --sch-green: #059669;
  --sch-surface: #F6F8FA;
  --sch-stone: #EEF2F6;
  --sch-grid: rgba(0, 119, 182, 0.08);
  --sch-shadow: 0 4px 28px rgba(0, 45, 69, 0.07);
  --sch-shadow-lg: 0 24px 56px rgba(0, 45, 69, 0.12);
  background: var(--sch-surface);
}

@keyframes sch-rise-flow {
  to { stroke-dashoffset: -28; }
}

@keyframes sch-node-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 12px rgba(110, 231, 183, 0.55);
  }
  50% {
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(110, 231, 183, 0.9);
  }
}

@keyframes sch-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes sch-card-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes sch-slide-in {
  from { opacity: 0; transform: translateX(-18px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes sch-slide-in-right {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes sch-mesh-glow {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.85; }
}

@keyframes sch-mark-in {
  0% { opacity: 0; transform: scale(0.6); }
  70% { transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes sch-step-glow {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.75; }
}

/* ── Hero ── */
.sch-page .v2-hero {
  min-height: auto;
  padding: 120px 0 80px;
}

.sch-page .v2-hero__mesh {
  background:
    radial-gradient(ellipse 58% 48% at 78% 18%, rgba(5, 150, 105, 0.16) 0%, transparent 58%),
    radial-gradient(ellipse 42% 42% at 12% 88%, rgba(0, 61, 77, 0.35) 0%, transparent 52%),
    linear-gradient(112deg, #001F2E 0%, var(--sch-teal-dark) 42%, var(--sch-teal) 100%);
}

.sch-page .v2-hero__mesh::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--sch-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--sch-grid) 1px, transparent 1px);
  background-size: 32px 32px;
  animation: sch-mesh-glow 8s ease-in-out infinite;
  pointer-events: none;
}

.sch-page .v2-hero h1 {
  font-size: clamp(1.85rem, 4.2vw, 3.2rem);
  line-height: 1.12;
}

.sch-page .v2-hero h1 em {
  color: #6EE7B7;
}

.sch-page .v2-hero__tagline {
  margin: 0 0 16px;
  max-width: 38rem;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  font-weight: 600;
  line-height: 1.48;
  color: rgba(255, 255, 255, 0.95);
}

.sch-page .v2-hero__lead {
  max-width: 38rem;
  font-size: 1rem;
  line-height: 1.72;
  margin-bottom: 14px;
}

.sch-page .v2-hero__lead + .v2-hero__lead {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
}

.sch-hero-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

.sch-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s;
}

.sch-hero-breadcrumb a:hover { color: #fff; }
.sch-hero-breadcrumb span { opacity: 0.45; }

/* Upward pathway visual */
.sch-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}

.sch-hero-visual__frame {
  position: relative;
  width: min(400px, 100%);
  aspect-ratio: 1;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(rgba(125, 211, 252, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.06) 1px, transparent 1px),
    rgba(0, 35, 55, 0.35);
  background-size: 24px 24px;
  box-shadow: 0 32px 72px rgba(0, 20, 40, 0.35);
  overflow: hidden;
}

.sch-hero-visual__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 70%, rgba(5, 150, 105, 0.14), transparent 62%);
  pointer-events: none;
}

.sch-hero-visual__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sch-hero-visual__step {
  fill: none;
  stroke: rgba(110, 231, 183, 0.35);
  stroke-width: 1.5;
  animation: sch-step-glow 3s ease-in-out infinite;
}

.sch-hero-visual__step:nth-child(2) { animation-delay: 0.5s; }
.sch-hero-visual__step:nth-child(3) { animation-delay: 1s; }
.sch-hero-visual__step:nth-child(4) { animation-delay: 1.5s; }

.sch-hero-visual__line {
  fill: none;
  stroke: rgba(125, 211, 252, 0.45);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 8 8;
  animation: sch-rise-flow 3.5s linear infinite;
}

.sch-hero-visual__nodes {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.sch-hero-visual__core {
  position: relative;
  z-index: 2;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  box-shadow: 0 16px 48px rgba(0, 35, 55, 0.28);
  animation: sch-float 5s ease-in-out infinite;
}

.sch-hero-visual__core strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--sch-deep);
  line-height: 1.15;
}

.sch-hero-visual__core small {
  margin-top: 4px;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sch-green);
  line-height: 1.3;
}

.sch-hero-visual__node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6EE7B7;
  z-index: 1;
  animation: sch-node-pulse 2.8s ease-in-out infinite;
}

.sch-hero-visual__node--1 { bottom: 22%; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.sch-hero-visual__node--2 { bottom: 38%; left: 28%; animation-delay: 0.5s; }
.sch-hero-visual__node--3 { bottom: 38%; right: 28%; animation-delay: 1s; }
.sch-hero-visual__node--4 { bottom: 54%; left: 50%; transform: translateX(-50%); animation-delay: 1.5s; }
.sch-hero-visual__node--5 { bottom: 70%; left: 50%; transform: translateX(-50%); animation-delay: 2s; }

.sch-hero-visual__label {
  position: absolute;
  z-index: 3;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 119, 182, 0.92);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 55, 90, 0.3);
  animation: sch-float 4.5s ease-in-out infinite;
}

.sch-hero-visual__label--1 { bottom: 16%; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.sch-hero-visual__label--2 { bottom: 32%; left: 12%; animation-delay: 0.6s; }
.sch-hero-visual__label--3 { bottom: 32%; right: 12%; animation-delay: 1.2s; }
.sch-hero-visual__label--4 { top: 28%; left: 50%; transform: translateX(-50%); animation-delay: 1.8s; }
.sch-hero-visual__label--5 { top: 12%; left: 50%; transform: translateX(-50%); animation-delay: 2.4s; }

/* ── Jump links ── */
.sch-jumplinks {
  position: sticky;
  top: 64px;
  z-index: 40;
  background: rgba(246, 248, 250, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.sch-jumplinks__inner {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
}

.sch-jumplinks__inner::-webkit-scrollbar { display: none; }

.sch-jumplinks a {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-bright);
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.sch-jumplinks a:hover {
  background: #fff;
  color: var(--sch-teal);
  border-color: rgba(0, 119, 182, 0.15);
  transform: translateY(-1px);
}

/* ── Sections ── */
.sch-page .sch-section {
  padding: 72px 0;
}

.sch-section-head {
  max-width: none;
  margin-bottom: 24px;
}

.sch-section-head .v2-section__intro {
  margin-bottom: 0;
  max-width: none;
  font-size: 1.02rem;
  line-height: 1.72;
}

.sch-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.sch-split__col {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--sch-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sch-split__col:hover {
  transform: translateY(-3px);
  box-shadow: var(--sch-shadow-lg);
}

.sch-split__col--challenge { border-top: 3px solid #94A3B8; }
.sch-split__col--approach { border-top: 3px solid var(--sch-green); }

.sch-split.v2-reveal.is-in .sch-split__col--challenge {
  animation: sch-slide-in 0.65s ease 0.1s both;
}

.sch-split.v2-reveal.is-in .sch-split__col--approach {
  animation: sch-slide-in-right 0.65s ease 0.25s both;
}

.sch-split__label {
  display: block;
  margin-bottom: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748B;
}

.sch-split__col--approach .sch-split__label { color: var(--sch-green); }

.sch-split__col h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading);
}

.sch-split__col p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--text-bright);
  line-height: 1.72;
}

.sch-split__col p + p { margin-top: 12px; }

/* Scale counters */
.sch-scale-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sch-scale-card {
  padding: 28px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--sch-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.sch-scale-grid.v2-reveal.is-in .sch-scale-card {
  animation: sch-card-in 0.55s ease both;
}

.sch-scale-grid.v2-reveal.is-in .sch-scale-card:nth-child(1) { animation-delay: 0.05s; }
.sch-scale-grid.v2-reveal.is-in .sch-scale-card:nth-child(2) { animation-delay: 0.15s; }
.sch-scale-grid.v2-reveal.is-in .sch-scale-card:nth-child(3) { animation-delay: 0.25s; }
.sch-scale-grid.v2-reveal.is-in .sch-scale-card:nth-child(4) { animation-delay: 0.35s; }

.sch-scale-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sch-shadow-lg);
  border-color: rgba(0, 119, 182, 0.2);
}

.sch-scale-card--funding {
  background: linear-gradient(165deg, #fff 0%, #ECFDF5 100%);
  border-color: rgba(5, 150, 105, 0.2);
}

.sch-scale-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--sch-teal);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.sch-scale-card--funding .sch-scale-card__num {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  color: var(--sch-green);
}

.sch-scale-card:nth-child(2) .sch-scale-card__num { color: var(--sch-deep); }
.sch-scale-card:nth-child(4) .sch-scale-card__num { color: #0369A1; }

.sch-scale-card__lbl {
  display: block;
  margin-top: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--heading);
  line-height: 1.38;
}

.sch-scale-card__sub {
  display: block;
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.5;
}

/* Flagship feature block */
.sch-feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--sch-shadow-lg);
  overflow: hidden;
}

.sch-feature.v2-reveal.is-in {
  animation: sch-card-in 0.65s ease both;
}

.sch-feature__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 28px;
  background: linear-gradient(90deg, #EBF5FB 0%, #ECFDF5 100%);
  border-bottom: 1px solid var(--border);
}

.sch-feature__index {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--sch-teal);
  letter-spacing: 0.06em;
}

.sch-feature__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sch-green);
}

.sch-feature__body {
  padding: 28px;
}

.sch-feature__body > h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 800;
  color: var(--heading);
  line-height: 1.3;
}

.sch-feature__body > p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--text-bright);
  line-height: 1.72;
}

.sch-feature__body > p + p {
  margin-top: 12px;
}

.sch-feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed var(--border);
}

.sch-feature__impact {
  padding: 20px 22px;
  background: var(--sch-stone);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.sch-feature__impact:hover {
  transform: translateY(-2px);
  box-shadow: var(--sch-shadow);
}

.sch-feature__impact h4 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sch-teal);
}

.sch-feature__impact:nth-child(2) h4 {
  color: var(--sch-green);
}

.sch-feature__impact p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-bright);
  line-height: 1.65;
}

.sch-feature__foot {
  padding: 20px 28px 24px;
  background: #F8FAFC;
  border-top: 1px solid var(--border);
}

.sch-feature__foot p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.58;
  color: var(--text);
}

.sch-feature__foot p + p {
  margin-top: 8px;
}

.sch-feature__foot strong {
  font-weight: 700;
  color: var(--heading);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Ground-level impact */
.sch-page .sch-section--impact {
  background: linear-gradient(165deg, var(--sch-deep) 0%, #004D6B 55%, var(--sch-teal-dark) 100%);
  color: #fff;
}

.sch-page .sch-section--impact .v2-section__eyebrow { color: #6EE7B7; }
.sch-page .sch-section--impact .v2-section__title { color: #fff; }
.sch-page .sch-section--impact .v2-section__intro { color: rgba(255, 255, 255, 0.82); }

.sch-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sch-kpi {
  padding: 28px 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.sch-kpi-grid.v2-reveal.is-in .sch-kpi {
  animation: sch-card-in 0.55s ease both;
}

.sch-kpi-grid.v2-reveal.is-in .sch-kpi:nth-child(1) { animation-delay: 0.05s; }
.sch-kpi-grid.v2-reveal.is-in .sch-kpi:nth-child(2) { animation-delay: 0.15s; }
.sch-kpi-grid.v2-reveal.is-in .sch-kpi:nth-child(3) { animation-delay: 0.25s; }
.sch-kpi-grid.v2-reveal.is-in .sch-kpi:nth-child(4) { animation-delay: 0.35s; }

.sch-kpi-grid.v2-reveal.is-in .sch-kpi__mark {
  animation: sch-mark-in 0.65s cubic-bezier(0.34, 1.4, 0.64, 1) both;
}

.sch-kpi-grid.v2-reveal.is-in .sch-kpi:nth-child(1) .sch-kpi__mark { animation-delay: 0.15s; }
.sch-kpi-grid.v2-reveal.is-in .sch-kpi:nth-child(2) .sch-kpi__mark { animation-delay: 0.3s; }
.sch-kpi-grid.v2-reveal.is-in .sch-kpi:nth-child(3) .sch-kpi__mark { animation-delay: 0.45s; }
.sch-kpi-grid.v2-reveal.is-in .sch-kpi:nth-child(4) .sch-kpi__mark { animation-delay: 0.6s; }

.sch-kpi:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
}

.sch-kpi__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--sch-deep);
  background: #6EE7B7;
  line-height: 1;
}

.sch-kpi:nth-child(2) .sch-kpi__mark { background: #7DD3FC; }
.sch-kpi:nth-child(3) .sch-kpi__mark { background: #BAE6FD; color: #003D4D; }
.sch-kpi:nth-child(4) .sch-kpi__mark { background: #A7F3D0; color: #065F46; }

.sch-kpi h4 {
  margin: 14px 0 8px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}

.sch-kpi p {
  margin: 0;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.58;
}

/* CTA */
.sch-section--cta { padding-bottom: 88px !important; }

.sch-cta {
  position: relative;
  text-align: center;
  padding: 52px 40px;
  border-radius: calc(var(--radius) + 4px);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--sch-shadow-lg);
  overflow: hidden;
}

.sch-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sch-deep), var(--sch-green));
}

.sch-cta h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--heading);
}

.sch-cta p {
  margin: 0 auto 28px;
  max-width: 580px;
  font-size: 1.02rem;
  color: var(--text-bright);
  line-height: 1.68;
}

.sch-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.sch-cta .v2-btn--primary {
  background: var(--sch-teal);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 119, 182, 0.3);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.sch-cta .v2-btn--primary:hover {
  background: var(--sch-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 61, 77, 0.35);
}

.sch-cta .v2-btn--outline {
  background: #fff;
  color: var(--heading);
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}

.sch-cta .v2-btn--outline:hover {
  border-color: var(--sch-teal);
  color: var(--sch-teal);
  background: #EBF5FB;
  transform: translateY(-2px);
}

.sch-page .v2-section--alt {
  background: var(--sch-stone);
}

.sch-page .v2-section__eyebrow {
  color: var(--sch-teal);
}

@media (max-width: 1024px) {
  .sch-scale-grid { grid-template-columns: repeat(2, 1fr); }
  .sch-kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .sch-split { grid-template-columns: 1fr; }
  .sch-feature__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .sch-page .v2-hero { padding: 108px 0 56px; }
  .sch-page .v2-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .sch-hero-visual { min-height: auto; }
  .sch-hero-visual__frame { width: 100%; max-width: 300px; margin: 0 auto; }
  .sch-page .sch-section { padding: 56px 0; }
  .sch-scale-grid,
  .sch-kpi-grid { grid-template-columns: 1fr; }
  .sch-feature__head,
  .sch-feature__body,
  .sch-feature__foot { padding-left: 20px; padding-right: 20px; }
  .sch-cta { padding: 36px 22px; }
  .sch-jumplinks { top: 56px; }
  .sch-cta__actions .v2-btn { width: 100%; justify-content: center; }
  .sch-hero-visual__label { font-size: 0.48rem; padding: 4px 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .sch-hero-visual__line,
  .sch-hero-visual__step,
  .sch-hero-visual__node,
  .sch-hero-visual__core,
  .sch-hero-visual__label,
  .sch-page .v2-hero__mesh::after,
  .sch-split.v2-reveal.is-in .sch-split__col,
  .sch-scale-grid.v2-reveal.is-in .sch-scale-card,
  .sch-feature.v2-reveal.is-in,
  .sch-kpi-grid.v2-reveal.is-in .sch-kpi,
  .sch-kpi-grid.v2-reveal.is-in .sch-kpi__mark {
    animation: none !important;
  }

  .sch-scale-card:hover,
  .sch-feature__impact:hover,
  .sch-kpi:hover,
  .sch-split__col:hover,
  .sch-cta .v2-btn--primary:hover,
  .sch-cta .v2-btn--outline:hover {
    transform: none;
  }
}
