:root {
    --cshcn-ink: #15322f;
    --cshcn-deep: #073f3b;
    --cshcn-deeper: #042d2a;
    --cshcn-paper: #f4efe6;
    --cshcn-cream: #fffaf2;
    --cshcn-white: #ffffff;
    --cshcn-orange: #e66c38;
    --cshcn-orange-light: #ffb07a;
    --cshcn-sage: #9ebcaf;
    --cshcn-line: rgba(21, 50, 47, 0.18);
    --cshcn-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
    --cshcn-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.cshcn-standalone,
.cshcn-recovery-active {
    margin: 0;
    color: var(--cshcn-ink);
    background: var(--cshcn-paper);
    font-family: var(--cshcn-sans);
    -webkit-font-smoothing: antialiased;
}

.cshcn-standalone *,
.cshcn-recovery,
.cshcn-recovery * {
    box-sizing: border-box;
}

.cshcn-standalone a,
.cshcn-recovery a {
    color: inherit;
}

.cshcn-standalone img,
.cshcn-recovery img {
    max-width: 100%;
}

.cshcn-skip {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    transform: translateY(-160%);
    background: var(--cshcn-orange);
    color: #161d1c;
    font-weight: 800;
}

.cshcn-skip:focus {
    transform: translateY(0);
}

.cshcn-site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 78px;
    padding: 0 4vw;
    border-bottom: 1px solid rgba(21, 50, 47, 0.12);
    background: rgba(255, 250, 242, 0.94);
    backdrop-filter: blur(18px);
}

.cshcn-site-mark,
.cshcn-footer-mark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.cshcn-site-mark > span:last-child {
    display: grid;
}

.cshcn-site-mark b,
.cshcn-footer-mark b {
    color: var(--cshcn-deep);
    font-size: 1.08rem;
    line-height: 1;
    letter-spacing: 0.14em;
}

.cshcn-site-mark small,
.cshcn-footer-mark span {
    margin-top: 4px;
    color: rgba(21, 50, 47, 0.7);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cshcn-mark-dot {
    width: 13px;
    height: 13px;
    border-radius: 50% 50% 50% 0;
    background: var(--cshcn-orange);
    transform: rotate(-45deg);
}

.cshcn-nav {
    display: flex;
    justify-content: center;
    gap: clamp(18px, 3vw, 46px);
    padding: 0 28px;
}

.cshcn-nav a {
    position: relative;
    padding: 28px 0 25px;
    color: rgba(21, 50, 47, 0.8);
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
}

.cshcn-nav a::after {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--cshcn-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.cshcn-nav a:hover::after,
.cshcn-nav a:focus-visible::after {
    transform: scaleX(1);
}

.cshcn-header-action {
    padding: 11px 16px;
    border: 1px solid var(--cshcn-deep);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 160ms ease, background 160ms ease;
}

.cshcn-header-action:hover,
.cshcn-header-action:focus-visible {
    background: var(--cshcn-deep);
    color: white;
}

.cshcn-wordpress-home .site.grid-container,
.cshcn-wordpress-home .site-content.grid-container,
.cshcn-wordpress-home .content-area,
.cshcn-wordpress-home .site-main {
    width: 100%;
    max-width: none;
    margin: 0;
}

.cshcn-wordpress-home .site-content {
    display: block;
    padding: 0;
}

.cshcn-wordpress-home .widget-area {
    display: none;
}

.cshcn-wordpress-home .site-main > :not(.cshcn-home) {
    max-width: 1180px;
    margin-right: auto;
    margin-left: auto;
}

.cshcn-recovery {
    width: 100%;
    overflow: clip;
    background: var(--cshcn-paper);
    color: var(--cshcn-ink);
    font-family: var(--cshcn-sans);
    font-size: 17px;
    line-height: 1.65;
}

.cshcn-recovery h1,
.cshcn-recovery h2,
.cshcn-recovery h3,
.cshcn-recovery p {
    margin-top: 0;
}

.cshcn-recovery h1,
.cshcn-recovery h2 {
    font-family: var(--cshcn-display);
    font-weight: 500;
    letter-spacing: -0.04em;
}

.cshcn-kicker,
.cshcn-eyebrow {
    margin-bottom: 18px;
    color: var(--cshcn-orange);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.cshcn-hero {
    position: relative;
    display: flex;
    align-items: center;
    width: 100vw;
    min-height: clamp(620px, calc(100svh - 84px), 840px);
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    isolation: isolate;
    background: var(--cshcn-deeper);
}

.cshcn-hero-image,
.cshcn-hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.cshcn-hero-image {
    z-index: -2;
    object-fit: cover;
    object-position: center;
    transform: scale(1.015) translate3d(0, var(--cshcn-hero-shift, 0px), 0);
    animation: cshcn-image-enter 1.2s cubic-bezier(.2,.75,.2,1) both;
    will-change: transform;
}

.cshcn-hero-shade {
    z-index: -1;
    background: linear-gradient(90deg, rgba(3, 38, 35, 0.97) 0%, rgba(3, 38, 35, 0.88) 31%, rgba(3, 38, 35, 0.44) 57%, rgba(3, 38, 35, 0.04) 82%);
}

.cshcn-hero-inner {
    width: min(92vw, 1220px);
    margin: 0 auto;
    padding: clamp(42px, 6vh, 72px) 0;
    color: white;
    animation: cshcn-copy-enter 760ms 100ms cubic-bezier(.2,.75,.2,1) both;
}

.cshcn-brand {
    margin-bottom: clamp(30px, 5vh, 54px);
    font-size: clamp(1.1rem, 1.4vw, 1.4rem);
    font-weight: 900;
    letter-spacing: 0.18em;
}

.cshcn-brand span {
    margin-left: 8px;
    color: var(--cshcn-orange-light);
    font-size: 0.66em;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cshcn-hero .cshcn-eyebrow {
    color: var(--cshcn-orange-light);
}

.cshcn-hero h1 {
    width: min(690px, 72vw);
    margin-bottom: 24px;
    font-size: clamp(3.25rem, 5.45vw, 6rem);
    line-height: 0.92;
}

.cshcn-lede {
    width: min(590px, 72vw);
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1rem, 1.45vw, 1.24rem);
    line-height: 1.55;
}

.cshcn-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px 30px;
}

.cshcn-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 22px;
    border: 1px solid var(--cshcn-orange);
    background: var(--cshcn-orange);
    color: #172624 !important;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.035em;
    text-decoration: none;
    transition: transform 160ms ease, background 160ms ease;
}

.cshcn-button:hover,
.cshcn-button:focus-visible {
    background: var(--cshcn-orange-light);
    transform: translateY(-2px);
}

.cshcn-button-light {
    border-color: white;
    background: white;
    color: var(--cshcn-deep) !important;
}

.cshcn-quiet-link,
.cshcn-text-link {
    font-size: 0.87rem;
    font-weight: 850;
    text-decoration: none;
}

.cshcn-quiet-link {
    color: white !important;
}

.cshcn-quiet-link span,
.cshcn-text-link span {
    display: inline-block;
    margin-left: 6px;
    transition: transform 160ms ease;
}

.cshcn-quiet-link:hover span,
.cshcn-text-link:hover span {
    transform: translateX(4px);
}

.cshcn-hero-caption {
    position: absolute;
    right: 4vw;
    bottom: 34px;
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.2em;
}

.cshcn-hero-caption i {
    width: 24px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.cshcn-home-intro,
.cshcn-section-head {
    display: grid;
    grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
    gap: clamp(30px, 7vw, 120px);
    width: min(90vw, 1180px);
    margin: 0 auto;
}

.cshcn-home-intro {
    padding: clamp(90px, 12vw, 168px) 0 clamp(70px, 9vw, 120px);
    border-bottom: 1px solid var(--cshcn-line);
}

.cshcn-home-intro h2,
.cshcn-section-head h2 {
    max-width: 850px;
    margin-bottom: 28px;
    font-size: clamp(2.6rem, 5.1vw, 5.4rem);
    line-height: 0.98;
}

.cshcn-home-intro div > p,
.cshcn-section-head div > p {
    max-width: 700px;
    color: rgba(21, 50, 47, 0.72);
    font-size: 1.05rem;
}

.cshcn-paths {
    width: min(90vw, 1180px);
    margin: 0 auto;
    padding: 0 0 clamp(100px, 12vw, 170px);
}

.cshcn-path {
    display: grid;
    grid-template-columns: 0.25fr 1fr;
    gap: clamp(26px, 5vw, 80px);
    padding: clamp(36px, 5vw, 66px) 0;
    border-bottom: 1px solid var(--cshcn-line);
    text-decoration: none;
}

.cshcn-path-number {
    color: var(--cshcn-orange);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.cshcn-path h3 {
    margin-bottom: 12px;
    font-family: var(--cshcn-display);
    font-size: clamp(2rem, 4vw, 4.2rem);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1;
}

.cshcn-path p {
    max-width: 660px;
    margin-bottom: 22px;
    color: rgba(21, 50, 47, 0.72);
}

.cshcn-path b {
    display: inline-block;
    color: var(--cshcn-deep);
    font-size: 0.82rem;
    transition: transform 170ms ease;
}

.cshcn-path:hover b,
.cshcn-path:focus-visible b {
    transform: translateX(8px);
}

.cshcn-method {
    padding: clamp(100px, 12vw, 170px) 0;
    background: var(--cshcn-cream);
}

.cshcn-method-list {
    width: min(90vw, 1180px);
    margin: clamp(70px, 8vw, 110px) auto 0;
    padding: 0;
    list-style: none;
}

.cshcn-method-list li {
    display: grid;
    grid-template-columns: 0.28fr 1fr;
    gap: clamp(25px, 6vw, 90px);
    padding: 30px 0;
    border-top: 1px solid var(--cshcn-line);
}

.cshcn-method-list li > span {
    color: var(--cshcn-orange);
    font-size: 0.72rem;
    font-weight: 900;
}

.cshcn-method-list h3 {
    margin-bottom: 5px;
    font-size: 1.08rem;
}

.cshcn-method-list p {
    max-width: 700px;
    margin-bottom: 0;
    color: rgba(21, 50, 47, 0.7);
}

.cshcn-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: clamp(60px, 10vw, 150px);
    align-items: end;
    padding: clamp(100px, 13vw, 180px) max(5vw, calc((100vw - 1180px) / 2));
    background: var(--cshcn-deep);
    color: white;
}

.cshcn-feature h2 {
    max-width: 750px;
    margin-bottom: 28px;
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 0.94;
}

.cshcn-feature div > p:not(.cshcn-kicker) {
    max-width: 650px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.72);
}

.cshcn-feature aside {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.cshcn-feature aside span {
    display: block;
    margin-bottom: 40px;
    color: var(--cshcn-orange-light);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.cshcn-feature aside strong {
    font-family: var(--cshcn-display);
    font-size: clamp(1.55rem, 2.4vw, 2.45rem);
    font-weight: 500;
    line-height: 1.22;
}

.cshcn-posts {
    padding: clamp(100px, 12vw, 170px) 0;
    background: var(--cshcn-paper);
}

.cshcn-post-list {
    width: min(90vw, 1180px);
    margin: clamp(60px, 8vw, 100px) auto 0;
}

.cshcn-post {
    display: grid;
    grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
    gap: clamp(36px, 7vw, 100px);
    padding: clamp(38px, 5vw, 70px) 0;
    border-top: 1px solid var(--cshcn-line);
}

.cshcn-post-no-media {
    grid-template-columns: 1fr;
    padding-left: 28%;
}

.cshcn-post-media {
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--cshcn-sage);
}

.cshcn-post-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(.2,.75,.2,1);
}

.cshcn-post-media:hover img {
    transform: scale(1.035);
}

.cshcn-post-body h3 {
    max-width: 770px;
    margin-bottom: 24px;
    font-family: var(--cshcn-display);
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.03;
}

.cshcn-post-body h3 a {
    text-decoration: none;
}

.cshcn-post-preview {
    max-width: 760px;
    color: rgba(21, 50, 47, 0.78);
}

.cshcn-post-preview a {
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.cshcn-post-preview > :last-child {
    margin-bottom: 20px;
}

.cshcn-text-link {
    color: var(--cshcn-deep) !important;
}

.cshcn-final {
    padding: clamp(110px, 14vw, 190px) 5vw;
    background: var(--cshcn-orange);
    text-align: center;
}

.cshcn-final .cshcn-kicker {
    color: rgba(21, 50, 47, 0.72);
}

.cshcn-final h2 {
    max-width: 850px;
    margin: 0 auto 20px;
    font-size: clamp(3.2rem, 7vw, 7rem);
    line-height: 0.92;
}

.cshcn-final p:not(.cshcn-kicker) {
    max-width: 620px;
    margin: 0 auto 34px;
}

.cshcn-final .cshcn-button {
    border-color: var(--cshcn-deep);
    background: var(--cshcn-deep);
    color: white !important;
}

.cshcn-route-hero {
    position: relative;
    min-height: 500px;
    padding: clamp(90px, 12vw, 150px) 5vw clamp(75px, 9vw, 120px);
    overflow: hidden;
    background: var(--cshcn-deep);
    color: white;
}

.cshcn-route-hero-inner {
    position: relative;
    z-index: 2;
    width: min(90vw, 1180px);
    margin: 0 auto;
}

.cshcn-route-orbit {
    position: absolute;
    right: -7vw;
    bottom: -25vw;
    width: min(62vw, 900px);
    aspect-ratio: 1;
    border: clamp(30px, 5vw, 70px) solid var(--cshcn-orange);
    border-radius: 50%;
    opacity: 0.92;
}

.cshcn-breadcrumbs {
    display: flex;
    gap: 10px;
    margin-bottom: clamp(62px, 8vw, 105px);
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.75rem;
    font-weight: 750;
}

.cshcn-breadcrumbs a {
    color: white;
    text-decoration: none;
}

.cshcn-route-hero h1 {
    max-width: 920px;
    margin-bottom: 25px;
    font-size: clamp(3.5rem, 7.5vw, 8.2rem);
    line-height: 0.92;
}

.cshcn-route-intro {
    max-width: 680px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.cshcn-article-layout {
    display: grid;
    grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
    gap: clamp(50px, 10vw, 150px);
    width: min(90vw, 1180px);
    margin: 0 auto;
    padding: clamp(90px, 12vw, 160px) 0;
}

.cshcn-article-aside {
    align-self: start;
    padding-top: 10px;
}

.cshcn-article-aside > div {
    position: sticky;
    top: 118px;
}

.cshcn-article-aside dl,
.cshcn-article-aside dd {
    margin: 0;
}

.cshcn-article-aside dl > div {
    padding: 20px 0;
    border-top: 1px solid var(--cshcn-line);
}

.cshcn-article-aside dt {
    margin-bottom: 5px;
    color: rgba(21, 50, 47, 0.56);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cshcn-article-aside dd {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.45;
}

.cshcn-document-flag {
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid var(--cshcn-line);
    color: rgba(21, 50, 47, 0.68);
    font-size: 0.78rem;
}

.cshcn-document-flag span {
    display: block;
    margin-bottom: 9px;
    color: var(--cshcn-orange);
    font-weight: 900;
    letter-spacing: 0.16em;
}

.cshcn-article-copy {
    min-width: 0;
}

.cshcn-article-copy > section {
    padding: clamp(55px, 7vw, 90px) 0;
    border-top: 1px solid var(--cshcn-line);
}

.cshcn-article-copy > section:first-child {
    padding-top: 0;
    border-top: 0;
}

.cshcn-article-copy h2 {
    max-width: 800px;
    margin-bottom: 28px;
    font-size: clamp(2.5rem, 4.8vw, 5rem);
    line-height: 0.98;
}

.cshcn-article-copy > section > p:not(.cshcn-kicker) {
    max-width: 760px;
    color: rgba(21, 50, 47, 0.76);
}

.cshcn-route-overview blockquote {
    max-width: 760px;
    margin: 42px 0 0;
    padding: 28px 0 0 34px;
    border-top: 1px solid var(--cshcn-line);
    border-left: 4px solid var(--cshcn-orange);
    font-family: var(--cshcn-display);
    font-size: clamp(1.35rem, 2.4vw, 2.1rem);
    line-height: 1.3;
}

.cshcn-route-steps {
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.cshcn-route-steps li {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 22px;
    padding: 28px 0;
    border-top: 1px solid var(--cshcn-line);
}

.cshcn-route-steps li > span {
    color: var(--cshcn-orange);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.cshcn-route-steps h3 {
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.cshcn-route-steps p {
    max-width: 690px;
    margin-bottom: 0;
    color: rgba(21, 50, 47, 0.7);
}

.cshcn-route-checklist ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 42px;
    margin: 38px 0 0;
    padding: 0;
    list-style: none;
}

.cshcn-route-checklist li {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 17px 0;
    border-top: 1px solid var(--cshcn-line);
    font-size: 0.9rem;
    font-weight: 700;
}

.cshcn-route-checklist li span {
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    border: 2px solid var(--cshcn-orange);
    border-radius: 50%;
}

.cshcn-route-note {
    margin-top: 20px;
    padding: clamp(36px, 5vw, 60px) !important;
    border: 0 !important;
    background: var(--cshcn-cream);
}

.cshcn-route-note h2 {
    font-size: clamp(2rem, 3.7vw, 3.7rem);
}

.cshcn-related {
    padding: clamp(90px, 11vw, 145px) max(5vw, calc((100vw - 1180px) / 2));
    background: var(--cshcn-cream);
}

.cshcn-related h2 {
    margin-bottom: 45px;
    font-size: clamp(2.8rem, 5.5vw, 5.5rem);
}

.cshcn-related > div {
    border-top: 1px solid var(--cshcn-line);
}

.cshcn-related a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 24px 0;
    border-bottom: 1px solid var(--cshcn-line);
    font-family: var(--cshcn-display);
    font-size: clamp(1.25rem, 2.3vw, 2.15rem);
    text-decoration: none;
}

.cshcn-related b {
    color: var(--cshcn-orange);
    font-family: var(--cshcn-sans);
    font-size: 1rem;
    transition: transform 160ms ease;
}

.cshcn-related a:hover b,
.cshcn-related a:focus-visible b {
    transform: translate(4px, -4px);
}

.cshcn-route-final {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
    padding: clamp(85px, 11vw, 140px) max(5vw, calc((100vw - 1180px) / 2));
    background: var(--cshcn-deep);
    color: white;
}

.cshcn-route-final h2 {
    max-width: 820px;
    margin-bottom: 0;
    font-size: clamp(2.6rem, 5.2vw, 5.2rem);
    line-height: 0.98;
}

.cshcn-site-footer {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px 9vw;
    padding: clamp(70px, 9vw, 110px) 5vw 38px;
    background: var(--cshcn-deeper);
    color: white;
}

.cshcn-site-footer > div > p {
    max-width: 470px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.62);
}

.cshcn-footer-mark {
    display: grid;
    width: max-content;
}

.cshcn-footer-mark b {
    color: white;
}

.cshcn-footer-mark span {
    color: var(--cshcn-orange-light);
}

.cshcn-site-footer nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-content: start;
    gap: 16px 30px;
}

.cshcn-site-footer nav a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
}

.cshcn-footer-note {
    grid-column: 1 / -1;
    margin: 30px 0 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.72rem;
}

.cshcn-reveal {
    opacity: 1;
    transform: none;
}

.cshcn-reveal.is-visible {
    animation: cshcn-reveal-in 540ms cubic-bezier(.2,.75,.2,1) both;
}

@keyframes cshcn-copy-enter {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes cshcn-image-enter {
    from { opacity: 0.65; transform: scale(1.07); }
    to { opacity: 1; transform: scale(1.015); }
}

@keyframes cshcn-reveal-in {
    from { transform: translateY(16px); }
    to { transform: translateY(0); }
}

@media (max-width: 900px) {
    .cshcn-nav {
        display: none;
    }

    .cshcn-site-header {
        grid-template-columns: 1fr auto;
    }

    .cshcn-hero {
        min-height: calc(100svh - 72px);
    }

    .cshcn-hero-image {
        object-position: 58% center;
    }

    .cshcn-hero-shade {
        background: linear-gradient(90deg, rgba(3, 38, 35, 0.97) 0%, rgba(3, 38, 35, 0.82) 45%, rgba(3, 38, 35, 0.28) 100%);
    }

    .cshcn-home-intro,
    .cshcn-section-head,
    .cshcn-feature,
    .cshcn-article-layout {
        grid-template-columns: 1fr;
    }

    .cshcn-post {
        grid-template-columns: minmax(200px, 0.7fr) 1.3fr;
        gap: 35px;
    }

    .cshcn-post-no-media {
        grid-template-columns: 1fr;
        padding-left: 0;
    }

    .cshcn-article-aside {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .cshcn-article-aside > div {
        position: static;
    }

    .cshcn-route-final {
        align-items: start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .cshcn-site-header {
        min-height: 68px;
        padding: 0 20px;
    }

    .cshcn-site-mark b {
        font-size: 0.94rem;
    }

    .cshcn-site-mark small {
        font-size: 0.58rem;
    }

    .cshcn-header-action {
        padding: 9px 11px;
        font-size: 0.65rem;
    }

    .cshcn-recovery {
        font-size: 16px;
    }

    .cshcn-hero {
        min-height: calc(100svh - 68px);
    }

    .cshcn-hero-image {
        object-position: 66% center;
    }

    .cshcn-hero-shade {
        background: linear-gradient(90deg, rgba(3, 38, 35, 0.96) 0%, rgba(3, 38, 35, 0.82) 64%, rgba(3, 38, 35, 0.46) 100%);
    }

    .cshcn-hero-inner {
        width: calc(100vw - 40px);
        padding: 50px 0 70px;
    }

    .cshcn-brand {
        margin-bottom: 62px;
    }

    .cshcn-hero h1,
    .cshcn-lede {
        width: 100%;
    }

    .cshcn-hero h1 {
        font-size: clamp(3rem, 15vw, 4.7rem);
    }

    .cshcn-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .cshcn-hero-caption {
        display: none;
    }

    .cshcn-home-intro,
    .cshcn-section-head,
    .cshcn-paths,
    .cshcn-method-list,
    .cshcn-post-list,
    .cshcn-article-layout {
        width: calc(100vw - 40px);
    }

    .cshcn-home-intro {
        padding: 80px 0 65px;
    }

    .cshcn-home-intro h2,
    .cshcn-section-head h2 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .cshcn-path {
        grid-template-columns: 38px 1fr;
        gap: 10px;
        padding: 40px 0;
    }

    .cshcn-path h3 {
        font-size: 2.2rem;
    }

    .cshcn-method,
    .cshcn-posts {
        padding: 85px 0;
    }

    .cshcn-method-list {
        margin-top: 55px;
    }

    .cshcn-method-list li {
        grid-template-columns: 40px 1fr;
        gap: 10px;
    }

    .cshcn-feature {
        gap: 65px;
        padding: 90px 20px;
    }

    .cshcn-post {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cshcn-post-no-media {
        padding-left: 0;
    }

    .cshcn-post-body h3 {
        font-size: 2.3rem;
    }

    .cshcn-route-hero {
        min-height: 540px;
        padding: 75px 20px 70px;
    }

    .cshcn-route-hero-inner {
        width: 100%;
    }

    .cshcn-route-orbit {
        right: -44vw;
        bottom: -12vw;
        width: 115vw;
        opacity: 0.58;
    }

    .cshcn-breadcrumbs {
        margin-bottom: 64px;
    }

    .cshcn-route-hero h1 {
        font-size: clamp(3.2rem, 15vw, 5.3rem);
    }

    .cshcn-article-layout {
        gap: 60px;
        padding: 80px 0;
    }

    .cshcn-article-aside {
        display: block;
    }

    .cshcn-document-flag {
        max-width: 330px;
    }

    .cshcn-article-copy h2 {
        font-size: clamp(2.35rem, 11vw, 3.65rem);
    }

    .cshcn-route-steps li {
        grid-template-columns: 42px 1fr;
        gap: 10px;
    }

    .cshcn-route-checklist ul {
        grid-template-columns: 1fr;
    }

    .cshcn-route-note {
        margin-right: -6px;
        margin-left: -6px;
        padding: 35px 26px !important;
    }

    .cshcn-related,
    .cshcn-route-final {
        padding: 80px 20px;
    }

    .cshcn-route-final {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }

    .cshcn-site-footer {
        grid-template-columns: 1fr;
        padding: 70px 20px 30px;
    }

    .cshcn-site-footer nav {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cshcn-recovery *,
    .cshcn-site-header * {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
