.student-experiences-page {
    --ste-ink: #102640;
    --ste-ink-soft: #193a59;
    --ste-muted: #58697b;
    --ste-green: #24cf8b;
    --ste-green-dark: #087c59;
    --ste-mint: #e9fbf4;
    --ste-blue: #2c70bd;
    --ste-sky: #edf6ff;
    --ste-coral: #cf654f;
    --ste-coral-soft: #fff0ec;
    --ste-gold: #d6a62e;
    --ste-warm: #fff8e8;
    --ste-line: #d8e4ed;
    --ste-paper: #f7fafc;
    --ste-white: #fff;
    color: var(--ste-ink);
    background: var(--ste-white);
    font-family: inherit;
    overflow: clip;
}

body.tands-student-experiences-view main.inner-page {
    max-width: none;
    padding: 0;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.student-experiences-page *,
.student-experiences-page *::before,
.student-experiences-page *::after { box-sizing: border-box; }
.student-experiences-page button { font: inherit; }
.student-experiences-page a,
.student-experiences-page button { -webkit-tap-highlight-color: transparent; }
.student-experiences-page :focus-visible { outline: 3px solid #f2b84a; outline-offset: 3px; }
.student-experiences-page a[aria-disabled="true"] { cursor: default; }

.ste-shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.ste-hero {
    position: relative;
    min-height: 630px;
    display: grid;
    align-items: end;
    isolation: isolate;
    background: #0d263f;
}

.ste-hero__image,
.ste-hero__veil {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.ste-hero__image {
    z-index: -2;
    object-fit: cover;
    object-position: center 38%;
}

.ste-hero__veil {
    z-index: -1;
    background: rgba(7, 27, 45, .83);
}

.ste-hero__content {
    padding-block: 110px 68px;
    color: var(--ste-white);
}

.ste-eyebrow,
.ste-kicker {
    margin: 0 0 14px;
    color: var(--ste-green);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0;
}

.ste-hero h1 {
    max-width: 940px;
    margin: 0;
    color: var(--ste-white);
    font-size: 58px;
    line-height: 1.2;
    letter-spacing: 0;
}

.ste-hero__lead {
    max-width: 900px;
    margin: 24px 0 0;
    color: #f3f7fa;
    font-size: 20px;
    line-height: 1.9;
}

.ste-hero__support {
    max-width: 860px;
    margin: 10px 0 0;
    color: #cfdae3;
    font-size: 16px;
    line-height: 1.85;
}

.ste-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.ste-actions--center { justify-content: center; }
.ste-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 23px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 900;
    line-height: 1.4;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
    transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.ste-button:hover { transform: translateY(-2px); }
.ste-button--primary { color: #063226 !important; background: var(--ste-green); }
.ste-button--primary:hover { background: #4bdda6; }
.ste-button--ghost { color: var(--ste-white) !important; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.08); }
.ste-button--ghost:hover { background: rgba(255,255,255,.16); }

.ste-trust-strip {
    position: relative;
    z-index: 2;
    border-bottom: 1px solid var(--ste-line);
    background: var(--ste-white);
}

.ste-trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.ste-trust-strip article {
    min-height: 116px;
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 22px 24px;
    border-inline-start: 1px solid var(--ste-line);
}
.ste-trust-strip article:first-child { border-inline-start: 0; }
.ste-trust-strip span {
    min-width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 5px;
    color: var(--ste-green-dark);
    background: var(--ste-mint);
    font-size: 12px;
    font-weight: 900;
}
.ste-trust-strip p { margin: 0; color: var(--ste-muted); font-size: 14px; line-height: 1.68; }

.ste-main { background: var(--ste-white); }
.ste-section { padding-block: 88px; }
.ste-section__header { max-width: 790px; margin-bottom: 38px; }
.ste-section__header--wide { max-width: 920px; }
.ste-section__header--light h2,
.ste-section__header--light p:not(.ste-kicker) { color: var(--ste-white); }
.ste-section__header h2,
.ste-section__split-head h2,
.ste-decision__copy h2,
.ste-limits h2 {
    margin: 0;
    color: var(--ste-ink);
    font-size: 40px;
    line-height: 1.3;
    letter-spacing: 0;
}
.ste-section__header > p:not(.ste-kicker),
.ste-section__split-head > p {
    max-width: 760px;
    margin: 14px 0 0;
    color: var(--ste-muted);
    font-size: 17px;
    line-height: 1.85;
}
.ste-section__split-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 38px;
}
.ste-section__split-head > p { margin: 0; }
.ste-lead { color: var(--ste-ink); font-size: 19px; line-height: 1.9; }

.ste-intro { background: var(--ste-paper); }
.ste-intro__layout {
    display: grid;
    grid-template-columns: minmax(0, .75fr) minmax(0, 1.15fr);
    gap: 82px;
    align-items: start;
}
.ste-intro__copy > p { margin: 0 0 18px; color: var(--ste-muted); line-height: 1.9; }
.ste-question-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 26px 0;
    padding: 0;
    border-top: 1px solid var(--ste-line);
    list-style: none;
}
.ste-question-list li {
    position: relative;
    min-height: 64px;
    display: flex;
    align-items: center;
    padding: 12px 28px 12px 12px;
    border-bottom: 1px solid var(--ste-line);
    color: var(--ste-ink);
    line-height: 1.65;
}
.ste-question-list li::before {
    content: "";
    position: absolute;
    right: 4px;
    width: 9px;
    height: 9px;
    border: 2px solid var(--ste-green-dark);
    border-radius: 50%;
}
.ste-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ste-green-dark) !important;
    font-weight: 900;
    text-decoration: none !important;
    border-bottom: 2px solid rgba(8,124,89,.24);
}
.ste-text-link::after { content: "←"; }

.ste-verification { background: var(--ste-white); }
.ste-verification__steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    border: 1px solid var(--ste-line);
    border-radius: 8px;
    list-style: none;
    overflow: hidden;
}
.ste-verification__steps li {
    min-height: 255px;
    padding: 28px;
    border-inline-start: 1px solid var(--ste-line);
    background: var(--ste-white);
}
.ste-verification__steps li:first-child { border-inline-start: 0; }
.ste-verification__steps li:nth-child(2n) { background: var(--ste-paper); }
.ste-step-number {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-bottom: 30px;
    border-radius: 6px;
    color: var(--ste-white);
    background: var(--ste-ink);
    font-size: 13px;
    font-weight: 900;
}
.ste-verification__steps h3 { margin: 0 0 10px; font-size: 21px; line-height: 1.5; }
.ste-verification__steps p { margin: 0; color: var(--ste-muted); font-size: 15px; line-height: 1.8; }
.ste-editorial-note {
    margin: 24px 0 0;
    padding: 16px 20px;
    border-right: 4px solid var(--ste-green);
    color: var(--ste-muted);
    background: var(--ste-mint);
    line-height: 1.8;
}

.ste-map { background: var(--ste-sky); }
.ste-map__grid { display: grid; grid-template-columns: repeat(10, 1fr); gap: 16px; }
.ste-map__grid article {
    grid-column: span 2;
    min-height: 290px;
    display: flex;
    flex-direction: column;
    padding: 26px;
    border: 1px solid #cbdce9;
    border-top: 4px solid var(--ste-blue);
    border-radius: 8px;
    background: var(--ste-white);
}
.ste-map__grid article.ste-map__card--active { border-top-color: var(--ste-green-dark); }
.ste-map__grid article > span { color: var(--ste-blue); font-size: 13px; font-weight: 900; }
.ste-map__grid h3 { margin: 20px 0 10px; font-size: 21px; line-height: 1.45; }
.ste-map__grid p { margin: 0 0 20px; color: var(--ste-muted); font-size: 14px; line-height: 1.78; }
.ste-map__grid a { margin-top: auto; color: var(--ste-green-dark) !important; font-size: 14px; font-weight: 900; text-decoration: none !important; }

.ste-arab-stories { color: var(--ste-white); background: var(--ste-ink); }
.ste-stories { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.ste-story {
    padding: 34px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    background: var(--ste-ink-soft);
}
.ste-story > header { display: flex; gap: 16px; align-items: center; margin-bottom: 24px; }
.ste-story__initial {
    min-width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #063226;
    background: var(--ste-green);
    font-size: 24px;
    font-weight: 900;
}
.ste-story__type { margin: 0 0 3px; color: #9feacb; font-size: 13px; font-weight: 900; }
.ste-story h3 { margin: 0; color: var(--ste-white); font-size: 25px; line-height: 1.45; }
.ste-story > p { margin: 0 0 16px; color: #dce5ec; line-height: 1.9; }
.ste-source-data {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 28px 0 0;
    border-top: 1px solid rgba(255,255,255,.18);
}
.ste-source-data div { padding: 14px 0 12px; border-bottom: 1px solid rgba(255,255,255,.12); }
.ste-source-data div:nth-child(odd) { padding-left: 16px; }
.ste-source-data dt { margin-bottom: 5px; color: #91a7b9; font-size: 12px; font-weight: 900; }
.ste-source-data dd { margin: 0; color: var(--ste-white); font-size: 14px; line-height: 1.6; }
.ste-boundary-note {
    margin: 24px 0 0;
    padding: 16px 20px;
    border-right: 4px solid var(--ste-gold);
    color: #e9eff4;
    background: rgba(255,255,255,.07);
    line-height: 1.8;
}

.ste-patterns { background: var(--ste-white); }
.ste-patterns__list { border-top: 1px solid var(--ste-line); }
.ste-patterns__list article {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--ste-line);
}
.ste-patterns__list span { color: var(--ste-green-dark); font-size: 14px; font-weight: 900; }
.ste-patterns__index { color: var(--ste-green-dark); font-size: 14px; font-weight: 900; }
.ste-patterns__list h3 { margin: 0 0 5px; font-size: 20px; }
.ste-patterns__list p { margin: 0; color: var(--ste-muted); line-height: 1.8; }

.ste-limits { color: var(--ste-white); background: #263546; }
.ste-limits__layout { display: grid; grid-template-columns: minmax(0, .75fr) minmax(0, 1.2fr); gap: 80px; align-items: start; }
.ste-limits h2 { color: var(--ste-white); }
.ste-limits__layout > div > p:not(.ste-kicker) { color: #cad5de; line-height: 1.85; }
.ste-limits ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin: 0; padding: 0; background: rgba(255,255,255,.14); list-style: none; }
.ste-limits li { min-height: 104px; position: relative; padding: 20px 48px 20px 20px; color: #e8eef3; background: #263546; line-height: 1.75; }
.ste-limits li::before { content: "×"; position: absolute; right: 18px; top: 18px; color: #ff967f; font-size: 22px; font-weight: 900; }

.ste-before-after { background: var(--ste-paper); }
.ste-proof-flow { display: grid; grid-template-columns: repeat(6, 1fr); margin: 0; padding: 0; border-top: 4px solid var(--ste-green); list-style: none; }
.ste-proof-flow li { min-height: 220px; padding: 24px 18px; border-bottom: 1px solid var(--ste-line); border-inline-start: 1px solid var(--ste-line); background: var(--ste-white); }
.ste-proof-flow li:first-child { border-inline-start: 0; }
.ste-proof-flow span { color: var(--ste-green-dark); font-size: 13px; font-weight: 900; }
.ste-proof-flow h3 { margin: 26px 0 8px; font-size: 18px; line-height: 1.45; }
.ste-proof-flow p { margin: 0; color: var(--ste-muted); font-size: 14px; line-height: 1.75; }
.ste-proof-note { display: flex; justify-content: space-between; gap: 24px; align-items: center; margin-top: 22px; padding: 18px 22px; border: 1px solid var(--ste-line); background: var(--ste-white); }
.ste-proof-note p { margin: 0; color: var(--ste-muted); line-height: 1.75; }
.ste-proof-note a { flex: 0 0 auto; color: var(--ste-green-dark) !important; font-weight: 900; text-decoration: none !important; }

.ste-cities { color: var(--ste-white); background: var(--ste-blue); }
.student-experiences-page .ste-cities .ste-section__header--light h2 {
    color: var(--ste-white);
}
.student-experiences-page .ste-cities .ste-section__header--light > p:not(.ste-kicker) {
    color: #eef6fd;
}
.ste-cities__compare { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border: 1px solid rgba(255,255,255,.28); border-radius: 8px; overflow: hidden; }
.ste-cities__compare > article { min-height: 365px; padding: 36px; background: rgba(255,255,255,.08); }
.ste-cities__compare > article + article { border-inline-start: 1px solid rgba(255,255,255,.28); }
.ste-city-code { margin: 0 0 26px; color: #cde4fb; font-size: 13px; font-weight: 900; }
.ste-cities h3 { margin: 0 0 14px; color: var(--ste-white); font-size: 30px; }
.ste-cities__compare > article > p:not(.ste-city-code) { color: #eef6fd; line-height: 1.9; }
.ste-cities--compact-links { padding-block: 58px; }
.ste-cities--compact-links .ste-section__header { margin-bottom: 26px; }
.ste-cities--compact-links .ste-cities__compare > article {
    min-height: 160px;
    padding: 24px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ste-cities--compact-links .ste-city-code { margin-bottom: 14px; }
.ste-cities--compact-links .ste-cities__compare h3 { font-size: 28px; }
.ste-cities--compact-links .ste-cities__compare > article > p:not(.ste-city-code) { margin: 0 0 12px; }
.ste-cities--compact-links .ste-cities__compare a { margin-top: 0; }
.ste-city-boundary { margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.22); }
.ste-city-boundary strong { color: #a9f0d2; }
.ste-city-boundary p { margin: 6px 0 0; color: #dcecf9; line-height: 1.8; }

.ste-requirements { background: var(--ste-white); }
.ste-requirements__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.ste-requirements__grid article { padding: 34px; border: 1px solid var(--ste-line); border-top: 4px solid var(--ste-coral); border-radius: 8px; }
.ste-requirements__grid article:last-child { border-top-color: var(--ste-blue); }
.ste-requirements__label { margin: 0 0 16px; color: var(--ste-coral); font-size: 12px; font-weight: 900; }
.ste-requirements__grid article:last-child .ste-requirements__label { color: var(--ste-blue); }
.ste-requirements h3 { margin: 0 0 22px; font-size: 25px; }
.ste-requirements ul { margin: 0; padding: 0; list-style: none; }
.ste-requirements li { position: relative; padding: 11px 28px 11px 0; border-bottom: 1px solid var(--ste-line); color: var(--ste-muted); line-height: 1.7; }
.ste-requirements li::before { content: "✓"; position: absolute; right: 0; color: var(--ste-green-dark); font-weight: 900; }
.ste-requirements__foot { margin: 22px 0 0; padding: 14px 16px; color: var(--ste-muted); background: var(--ste-paper); font-size: 14px; line-height: 1.75; }

.ste-decision { background: var(--ste-warm); }
.ste-decision__layout { display: grid; grid-template-columns: minmax(0, .75fr) minmax(0, 1.2fr); gap: 80px; align-items: start; }
.ste-decision__copy h2 { margin-bottom: 16px; }
.ste-decision__copy > p:not(.ste-kicker) { color: var(--ste-muted); line-height: 1.85; }
.ste-decision__criteria { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 0; padding: 0; list-style: none; }
.ste-decision__criteria li { min-height: 72px; display: flex; gap: 14px; align-items: center; padding: 14px 16px; border: 1px solid #e9d9ae; border-radius: 6px; background: var(--ste-white); line-height: 1.6; }
.ste-decision__criteria span { min-width: 28px; color: var(--ste-gold); font-size: 12px; font-weight: 900; }
.ste-decision__after { margin: 30px 0 0; padding: 22px 26px; border-right: 4px solid var(--ste-gold); color: var(--ste-muted); background: var(--ste-white); line-height: 1.85; }

.ste-red-flags { background: var(--ste-coral-soft); }
.ste-red-flags__layout { display: grid; grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr); gap: 76px; align-items: start; }
.ste-red-flags__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 0; padding: 0; list-style: none; }
.ste-red-flags__list li { position: relative; min-height: 80px; display: flex; align-items: center; padding: 14px 46px 14px 16px; border: 1px solid #f0cfc7; border-radius: 6px; background: var(--ste-white); color: var(--ste-muted); line-height: 1.65; }
.ste-red-flags__list li::before { content: "!"; position: absolute; right: 16px; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; color: var(--ste-white); background: var(--ste-coral); font-size: 13px; font-weight: 900; }

.ste-faq { background: var(--ste-white); }
.ste-faq__layout { display: grid; grid-template-columns: minmax(280px, .58fr) minmax(0, 1.22fr); gap: 80px; align-items: start; }
.ste-faq__list { border-top: 1px solid var(--ste-line); }
.ste-faq details { border-bottom: 1px solid var(--ste-line); }
.ste-faq summary { position: relative; padding: 21px 42px 21px 0; color: var(--ste-ink); font-weight: 900; line-height: 1.7; cursor: pointer; list-style: none; }
.ste-faq summary::-webkit-details-marker { display: none; }
.ste-faq summary::before,
.ste-faq summary::after { content: ""; position: absolute; right: 6px; top: 50%; width: 14px; height: 2px; background: var(--ste-green-dark); transition: transform .18s ease; }
.ste-faq summary::after { transform: rotate(90deg); }
.ste-faq details[open] summary::after { transform: rotate(0); }
.ste-faq details p { margin: 0; padding: 0 42px 22px 0; color: var(--ste-muted); line-height: 1.85; }

.ste-final-cta { padding-block: 94px; color: var(--ste-white); text-align: center; background: var(--ste-ink); }
.ste-final-cta h2 { max-width: 820px; margin: 0 auto; color: var(--ste-white); font-size: 42px; line-height: 1.35; }
.ste-final-cta > .ste-shell > p:not(.ste-eyebrow) { max-width: 780px; margin: 20px auto 0; color: #d6e0e8; font-size: 17px; line-height: 1.9; }
.ste-review-note { padding-block: 22px; border-top: 1px solid var(--ste-line); background: var(--ste-paper); }
.ste-review-note .ste-shell { display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: center; }
.ste-review-note p { margin: 0; color: var(--ste-muted); font-size: 13px; line-height: 1.6; }

@media (max-width: 1100px) {
    .ste-hero h1 { font-size: 50px; }
    .ste-trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
    .ste-trust-strip article:nth-child(3) { border-inline-start: 0; border-top: 1px solid var(--ste-line); }
    .ste-trust-strip article:nth-child(4) { border-top: 1px solid var(--ste-line); }
    .ste-verification__steps { grid-template-columns: repeat(2, 1fr); }
    .ste-verification__steps li:nth-child(3) { border-inline-start: 0; border-top: 1px solid var(--ste-line); }
    .ste-verification__steps li:nth-child(4) { border-top: 1px solid var(--ste-line); }
    .ste-map__grid { grid-template-columns: repeat(6, 1fr); }
    .ste-map__grid article { grid-column: span 2; }
    .ste-map__grid article:nth-child(4), .ste-map__grid article:nth-child(5) { grid-column: span 3; }
    .ste-proof-flow { grid-template-columns: repeat(3, 1fr); }
    .ste-proof-flow li:nth-child(4) { border-inline-start: 0; }
}

@media (max-width: 820px) {
    .ste-section { padding-block: 68px; }
    .ste-hero { min-height: 590px; }
    .ste-hero__content { padding-block: 92px 54px; }
    .ste-hero h1 { font-size: 43px; }
    .ste-section__header h2,
    .ste-section__split-head h2,
    .ste-decision__copy h2,
    .ste-limits h2 { font-size: 34px; }
    .ste-intro__layout,
    .ste-section__split-head,
    .ste-limits__layout,
    .ste-decision__layout,
    .ste-red-flags__layout,
    .ste-faq__layout { grid-template-columns: 1fr; gap: 34px; }
    .ste-stories,
    .ste-cities__compare,
    .ste-requirements__grid { grid-template-columns: 1fr; }
    .ste-cities__compare > article + article { border-inline-start: 0; border-top: 1px solid rgba(255,255,255,.28); }
    .ste-map__grid { grid-template-columns: repeat(2, 1fr); }
    .ste-map__grid article,
    .ste-map__grid article:nth-child(4),
    .ste-map__grid article:nth-child(5) { grid-column: span 1; }
    .ste-map__grid article:last-child { grid-column: 1 / -1; }
    .ste-limits ul { grid-template-columns: 1fr; }
    .ste-decision__criteria,
    .ste-red-flags__list { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
    .ste-shell { width: min(100% - 28px, 1180px); }
    .ste-hero { min-height: 560px; }
    .ste-hero__image { object-position: 57% center; }
    .ste-hero__content { padding-block: 46px 26px; }
    .ste-hero .ste-eyebrow { margin-bottom: 10px; font-size: 13px; }
    .ste-hero h1 { font-size: 33px; line-height: 1.25; }
    .ste-hero__lead { margin-top: 17px; font-size: 16px; line-height: 1.72; }
    .ste-hero__support { margin-top: 6px; font-size: 14px; line-height: 1.7; }
    .ste-hero .ste-actions { margin-top: 18px; }
    .ste-actions { display: grid; grid-template-columns: 1fr; }
    .ste-button { width: 100%; min-height: 48px; }
    .ste-trust-strip__grid { grid-template-columns: 1fr; }
    .ste-trust-strip article,
    .ste-trust-strip article:nth-child(3) { min-height: 88px; border-inline-start: 0; border-top: 1px solid var(--ste-line); }
    .ste-trust-strip article:first-child { border-top: 0; }
    .ste-section { padding-block: 56px; }
    .ste-section__header h2,
    .ste-section__split-head h2,
    .ste-decision__copy h2,
    .ste-limits h2 { font-size: 30px; }
    .ste-question-list { grid-template-columns: 1fr; }
    .ste-verification__steps { grid-template-columns: 1fr; }
    .ste-verification__steps li,
    .ste-verification__steps li:nth-child(3) { min-height: auto; border-inline-start: 0; border-top: 1px solid var(--ste-line); }
    .ste-verification__steps li:first-child { border-top: 0; }
    .ste-map__grid { grid-template-columns: 1fr; }
    .ste-map__grid article,
    .ste-map__grid article:last-child { grid-column: auto; min-height: 260px; }
    .ste-story { padding: 24px 20px; }
    .ste-story h3 { font-size: 22px; }
    .ste-source-data { grid-template-columns: 1fr; }
    .ste-source-data div:nth-child(odd) { padding-left: 0; }
    .ste-patterns__list article { grid-template-columns: 44px minmax(0, 1fr); gap: 12px; }
    .ste-proof-flow { grid-template-columns: 1fr; }
    .ste-proof-flow li,
    .ste-proof-flow li:nth-child(4) { min-height: auto; border-inline-start: 0; }
    .ste-proof-flow h3 { margin-top: 12px; }
    .ste-proof-note { display: block; }
    .ste-proof-note a { display: inline-block; margin-top: 14px; }
    .ste-cities__compare > article,
    .ste-requirements__grid article { min-height: auto; padding: 26px 20px; }
    .ste-cities--compact-links { padding-block: 46px; }
    .ste-cities--compact-links .ste-section__header { margin-bottom: 22px; }
    .ste-cities--compact-links .ste-cities__compare > article { min-height: auto; padding: 22px 20px; }
    .ste-cities h3 { font-size: 26px; }
    .ste-decision__criteria li,
    .ste-red-flags__list li { min-height: 68px; }
    .ste-faq summary { padding-left: 4px; }
    .ste-faq details p { padding-right: 32px; }
    .ste-final-cta { padding-block: 70px; }
    .ste-final-cta h2 { font-size: 32px; }
    .ste-review-note .ste-shell { display: block; text-align: center; }
    .ste-review-note p + p { margin-top: 5px; }
}

@media (prefers-reduced-motion: reduce) {
    .student-experiences-page *,
    .student-experiences-page *::before,
    .student-experiences-page *::after { scroll-behavior: auto !important; transition: none !important; }
}
