:root {
    --ink: #202824;
    --muted: #626e68;
    --green: #16624f;
    --green-dark: #104b3d;
    --line: #dfe5e1;
    --soft: #f4f6f5;
    --white: #fff;
    --radius: 6px;
    color-scheme: light;
    font-family: Inter,"Segoe UI","PingFang SC","Microsoft YaHei",sans-serif;
    color: var(--ink);
    background: var(--white);
    font-synthesis: none;
}
* {
    box-sizing: border-box;
    letter-spacing: 0;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 24px;
}
body {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    color: var(--green);
}
button,input {
    font: inherit;
}
button,a,input {
    -webkit-tap-highlight-color: transparent;
}
button {
    cursor: pointer;
}
button:disabled {
    cursor: default;
}
button {
    color: inherit;
}
img {
    max-width: 100%;
    display: block;
}
svg.lucide,[data-lucide] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    vertical-align: middle;
}
h1,h2,h3,p {
    margin: 0;
}
h1,h2,h3 {
    line-height: 1.35;
    overflow-wrap: anywhere;
}
h1 {
    font-size: 40px;
    font-weight: 750;
}
h2 {
    font-size: 24px;
    font-weight: 700;
}
h3 {
    font-size: 20px;
}
p {
    overflow-wrap: anywhere;
}
a:focus-visible,button:focus-visible,input:focus-visible {
    outline: 3px solid #75b49f;
    outline-offset: 4px;
}
[hidden] {
    display: none !important;
}
.container {
    width: min(1240px,calc(100% - 64px));
    margin-inline: auto;
}
.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;
}
.skip-link {
    position: fixed;
    left: 16px;
    top: -90px;
    padding: 10px 20px;
    background: var(--white);
    z-index: 100;
}
.skip-link:focus {
    top: 10px;
}
.muted {
    color: var(--muted);
    font-size: 13px;
}
.eyebrow {
    font-size: 11px;
    font-weight: 650;
    color: var(--green);
    margin-bottom: 12px;
}
.utility-bar {
    background: var(--ink);
    color: #edf2ef;
    font-size: 12px;
}
.utility-inner {
    min-height: 33px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.utility-inner>span,.utility-inner>a {
    display: flex;
    align-items: center;
    gap: 6px;
}
.utility-inner svg {
    width: 13px;
    height: 13px;
}
.utility-inner a:hover {
    color: #c6e3d4;
}
.masthead {
    border-bottom: 1px solid var(--line);
    background: var(--white);
}
.masthead-inner {
    min-height: 93px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}
.brand {
    display: flex;
    gap: 11px;
    align-items: center;
    flex-shrink: 0;
}
.brand-mark {
    width: 42px;
    height: 46px;
    display: grid;
    place-items: center;
    background: var(--green);
    color: var(--white);
    border-radius: 4px;
}
.brand-mark svg {
    width: 25px;
    height: 25px;
}
.brand strong {
    display: block;
    font-size: 23px;
    line-height: 1.35;
    font-weight: 750;
}
.brand small {
    display: block;
    font-size: 10px;
    color: var(--muted);
    margin-top: 4px;
}
.navigation {
    display: flex;
    gap: 24px;
    align-items: stretch;
    align-self: stretch;
}
.navigation a {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 172px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}
.navigation a[aria-current=page] {
    color: var(--green);
}
.navigation a[aria-current=page]:after {
    content: "";
    height: 3px;
    background: var(--green);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
.icon-button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 4px;
    display: inline-grid;
    place-items: center;
    background: var(--white);
    flex-shrink: 0;
}
.icon-button:hover {
    background: var(--soft);
    color: var(--green);
}
.menu-toggle {
    display: none;
}
.intro-band {
    padding: 46px 0 32px;
}
.intro-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}
.intro-copy {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
    margin-top: 18px;
}
.intro-aside {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    font-size: 12px;
    color: var(--muted);
    padding-bottom: 4px;
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--green);
    font-size: 14px;
    font-weight: 600;
}
.text-link svg {
    width: 17px;
    height: 17px;
}
.services-section {
    padding-bottom: 40px;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 24px;
}
.service-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
}
.service-image {
    position: relative;
    display: block;
    aspect-ratio: 1.85;
    overflow: hidden;
    background: #e6e9e7;
}
.service-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}
.service-image:hover img {
    transform: scale(1.025);
}
.image-caption {
    position: absolute;
    bottom: 9px;
    right: 10px;
    background: rgba(255,255,255,.92);
    color: #404942;
    padding: 2px 6px;
    border-radius: 2px;
    font-size: 10px;
}
.service-card-content {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.service-number {
    font-size: 10px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 9px;
}
.service-card h2 {
    font-size: 24px;
    min-height: 65px;
    display: flex;
    align-items: flex-start;
}
.service-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    margin: 9px 0 24px;
}
.service-link {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 13px;
}
.service-link svg {
    color: var(--green);
    width: 19px;
    height: 19px;
}
.guide-band {
    background: #edf2ef;
    border-block: 1px solid var(--line);
}
.guide-band-inner {
    padding-block: 27px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.guide-band h2 {
    font-size: 21px;
}
.guide-band .eyebrow {
    margin-bottom: 6px;
}
.planning-points {
    display: flex;
    gap: 30px;
}
.planning-points>span {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
}
.planning-points svg {
    color: var(--green);
}
.reading-section {
    display: grid;
    grid-template-columns: minmax(0,1fr) 280px;
    gap: 64px;
    padding-block: 50px 64px;
}
.reading-main,.reading-aside {
    min-width: 0;
}
.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}
.section-heading .muted {
    flex-shrink: 0;
}
.section-heading .eyebrow {
    margin-bottom: 6px;
}
.section-heading h2 {
    font-size: 25px;
}
.search-form {
    display: flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    background: #fafbfa;
    margin-bottom: 8px;
}
.search-form input {
    min-width: 0;
    width: 100%;
    border: 0;
    padding: 11px 14px;
    background: transparent;
    font-size: 14px;
    color: var(--ink);
}
.search-form input:focus-visible {
    outline-offset: -3px;
}
.search-form .icon-button {
    border: 0;
    background: transparent;
}
.article-row {
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
}
.article-row h3 {
    font-size: 21px;
    margin: 9px 0 10px;
    line-height: 1.55;
}
.article-row p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
}
.article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 12px;
    color: var(--muted);
}
.article-meta>a {
    color: var(--green);
    font-weight: 600;
}
.article-row .text-link {
    font-size: 12px;
    margin-top: 12px;
}
.sidebar-section {
    padding: 0 0 25px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--line);
}
.sidebar-section h2 {
    font-size: 18px;
    margin-bottom: 16px;
}
.sidebar-section>p:not(.eyebrow) {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 16px;
}
.topic-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid #eef0ee;
    font-size: 14px;
    line-height: 1.5;
}
.topic-link>span:first-child {
    min-width: 0;
    overflow-wrap: anywhere;
}
.topic-link>span:last-child:not(:first-child) {
    color: var(--muted);
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 12px;
}
.topic-link svg {
    width: 15px;
    height: 15px;
}
.topic-link:last-child {
    border: 0;
}
.sidebar-article {
    display: block;
    font-size: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}
.sidebar-phone {
    font-size: 22px;
    font-weight: 600;
    color: var(--green);
}
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 27px;
    font-size: 13px;
}
.pagination a,.pagination>span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.pagination [aria-disabled=true] {
    color: #959f99;
}
.empty-state {
    padding: 40px 0;
    color: var(--muted);
    font-size: 15px;
    border-bottom: 1px solid var(--line);
}
.footer {
    background: #f2f4f3;
    border-top: 1px solid var(--line);
    padding-top: 38px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .8fr 1fr;
    gap: 48px;
    padding-bottom: 32px;
}
.footer-brand {
    font-size: 22px;
}
.footer p {
    font-size: 12px;
    color: var(--muted);
    margin-top: 10px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 13px;
}
.footer-label {
    font-size: 12px;
    color: var(--muted);
}
.footer-phone {
    display: block;
    font-size: 24px;
    font-weight: 650;
    line-height: 1.5;
    margin: 8px 0;
}
.footer-note {
    font-size: 11px;
    color: var(--muted);
    display: block;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    padding-block: 19px 25px;
    border-top: 1px solid var(--line);
    font-size: 11px;
    color: var(--muted);
}
.contact-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    max-width: calc(100% - 32px);
}
.contact-trigger {
    height: 48px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    background: var(--green);
    border: 1px solid var(--green);
    border-radius: 5px;
    box-shadow: 0 4px 14px #15291d22;
    font-size: 14px;
    font-weight: 600;
}
.contact-trigger:hover {
    background: var(--green-dark);
}
.contact-panel {
    width: 280px;
    max-width: 100%;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-top: 3px solid var(--green);
    border-radius: 6px;
    box-shadow: 0 8px 30px #15291d1a;
}
.contact-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    font-weight: 650;
    font-size: 14px;
}
.contact-heading .icon-button {
    width: 28px;
    height: 28px;
    border: 0;
}
.contact-heading svg {
    width: 17px;
    height: 17px;
}
.contact-panel>p:not(.copy-status) {
    color: var(--muted);
    font-size: 12px;
    margin-top: 10px;
}
.contact-number {
    display: block;
    font-size: 23px;
    font-weight: 650;
    margin: 13px 0;
}
.contact-actions {
    display: flex;
    gap: 10px;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 17px;
    border: 1px solid transparent;
    border-radius: 4px;
    min-height: 40px;
    font-size: 13px;
    font-weight: 600;
}
.button svg {
    width: 16px;
    height: 16px;
}
.button-primary {
    color: #fff;
    background: var(--green);
}
.button-primary:hover {
    color: #fff;
    background: var(--green-dark);
}
.contact-actions .button {
    flex: 1;
}
.copy-status {
    font-size: 11px;
    color: var(--green);
    min-height: 18px;
    margin-top: 9px;
}
.contact-panel small {
    font-size: 10px;
    color: var(--muted);
}
.channel-heading-band {
    background: var(--soft);
    border-bottom: 1px solid var(--line);
    padding: 25px 0 38px;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    line-height: 1.6;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 30px;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
.channel-heading-band h1 {
    max-width: 860px;
    font-size: 36px;
}
.channel-description {
    max-width: 820px;
    color: var(--muted);
    font-size: 16px;
    margin-top: 17px;
    line-height: 1.85;
}
.topic-tags {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 24px;
    font-size: 12px;
    color: var(--green);
}
.topic-tags span {
    border-bottom: 1px solid #b3cbc0;
    padding-bottom: 4px;
}
.channel-planning {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 70px;
    padding-block: 36px;
    border-bottom: 1px solid var(--line);
}
.channel-planning h2 {
    font-size: 23px;
}
.planning-copy {
    color: var(--muted);
    font-size: 14px;
}
.planning-copy p+p {
    margin-top: 10px;
}
.article-page {
    padding-block: 25px 64px;
}
.article-layout {
    display: grid;
    grid-template-columns: minmax(0,820px) 260px;
    justify-content: space-between;
    gap: 60px;
}
.article-main {
    min-width: 0;
}
.article-header {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--line);
}
.article-header h1 {
    font-size: 34px;
    line-height: 1.5;
    margin-bottom: 22px;
}
.article-deck {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.85;
    margin-top: 25px;
}
.article-body {
    font-size: 17px;
    line-height: 1.95;
    overflow-wrap: anywhere;
}
.article-body p {
    margin: 0 0 22px;
}
.article-body h1,.article-body h2 {
    font-size: 26px;
    margin: 38px 0 18px;
    line-height: 1.5;
}
.article-body h3 {
    font-size: 21px;
    margin: 30px 0 14px;
}
.article-body h4 {
    font-size: 18px;
    margin: 24px 0 12px;
}
.article-body ul,.article-body ol {
    padding-left: 25px;
    margin: 20px 0;
}
.article-body li {
    margin: 7px 0;
}
.article-body a {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.article-body img {
    height: auto;
    margin: 24px auto;
    border-radius: 4px;
}
.article-body blockquote {
    border-left: 3px solid var(--green);
    margin: 26px 0;
    padding: 8px 20px;
    background: var(--soft);
    color: var(--muted);
}
.article-body blockquote p:last-child {
    margin: 0;
}
.article-body pre {
    overflow: auto;
    padding: 18px;
    background: var(--soft);
    font-size: 14px;
    border-radius: 4px;
}
.article-table-wrap {
    overflow-x: auto;
    max-width: 100%;
    margin-block: 24px;
}
.article-body table {
    border-collapse: collapse;
    width: 100%;
    font-size: 14px;
    line-height: 1.7;
}
.article-body th,.article-body td {
    border: 1px solid var(--line);
    padding: 12px;
    min-width: 90px;
    text-align: left;
}
.article-body th {
    background: var(--soft);
}
.article-body hr {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 28px 0;
}
.article-disclaimer {
    display: flex;
    gap: 12px;
    background: var(--soft);
    padding: 18px;
    margin-top: 36px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
    border-left: 2px solid #bdcac2;
}
.article-disclaimer svg {
    width: 17px;
    height: 17px;
    margin-top: 2px;
}
.article-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--green);
    padding-block: 25px;
}
.article-aside {
    padding-top: 10px;
    min-width: 0;
}
.article-toc nav {
    display: flex;
    flex-direction: column;
    gap: 13px;
    font-size: 13px;
    color: var(--muted);
}
.article-toc a {
    padding-left: 10px;
    border-left: 2px solid var(--line);
}
.article-toc a:hover {
    border-color: var(--green);
}
.related-section {
    padding-top: 34px;
    margin-top: 18px;
    border-top: 1px solid var(--line);
}
.related-section h2 {
    margin-bottom: 15px;
}
.related-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 19px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
    line-height: 1.6;
}
.related-link span {
    min-width: 0;
    overflow-wrap: anywhere;
}
.related-link>span:last-child:not(:first-child) {
    font-size: 13px;
    color: var(--muted);
    flex-shrink: 0;
}
.related-link svg {
    width: 17px;
    height: 17px;
}
.about-heading {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}
.about-heading .text-link {
    flex-shrink: 0;
}
.about-content {
    display: grid;
    grid-template-columns: minmax(0,1fr) 310px;
    gap: 90px;
    padding-block: 52px 72px;
}
.about-story h2 {
    font-size: 24px;
    margin-bottom: 20px;
}
.about-story p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.95;
    margin-bottom: 24px;
}
.about-story h2:not(:first-child) {
    margin-top: 40px;
}
.about-facts {
    border-top: 3px solid var(--green);
    padding-top: 24px;
}
.about-facts h2 {
    font-size: 23px;
}
.about-facts dl {
    margin: 20px 0 26px;
}
.about-facts dl>div {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}
.about-facts dt {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 6px;
}
.about-facts dd {
    font-size: 15px;
    margin: 0;
    overflow-wrap: anywhere;
}
.archive-list {
    max-width: 880px;
    padding-block: 30px 70px;
    min-height: 300px;
}
@media(min-width:1440px) {
    .article-layout {
        grid-template-columns: minmax(0,810px) 280px;
    }
    .article-page {
        padding-right: 20px;
    }
}
@media(max-width:1199px) {
    .container {
        width: calc(100% - 48px);
    }
    .masthead-inner {
        flex-wrap: wrap;
        gap: 0;
        min-height: 86px;
        padding-top: 20px;
    }
    .brand strong {
        font-size: 22px;
    }
    .navigation {
        width: 100%;
        justify-content: space-between;
        gap: 20px;
        margin-top: 16px;
        min-height: 52px;
    }
    .navigation a {
        max-width: none;
        padding-bottom: 7px;
    }
    .reading-section {
        gap: 35px;
        grid-template-columns: minmax(0,1fr) 245px;
    }
    .service-card-content {
        padding: 20px;
    }
    .service-card h2 {
        font-size: 22px;
    }
    .planning-points {
        gap: 18px;
    }
    .article-layout {
        grid-template-columns: minmax(0,1fr) 235px;
        gap: 35px;
    }
    .about-content {
        gap: 50px;
    }
    .contact-panel {
        width: 260px;
    }
}
@media(max-width:899px) {
    .intro-inner {
        display: block;
    }
    .intro-aside {
        align-items: flex-start;
        flex-direction: row;
        justify-content: space-between;
        margin-top: 23px;
    }
    .service-grid {
        gap: 16px;
    }
    .service-card h2 {
        font-size: 20px;
        min-height: 57px;
    }
    .service-card-content {
        padding: 17px;
    }
    .service-card p {
        font-size: 13px;
    }
    .guide-band-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }
    .reading-section {
        grid-template-columns: minmax(0,1fr);
    }
    .reading-aside {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .reading-aside .sidebar-section {
        margin: 0;
    }
    .article-layout {
        grid-template-columns: minmax(0,1fr);
    }
    .article-aside {
        display: none;
    }
    .article-main {
        max-width: 760px;
        margin: auto;
    }
    .article-header h1 {
        font-size: 32px;
    }
    .channel-planning {
        gap: 30px;
    }
    .about-content {
        grid-template-columns: minmax(0,1fr) 270px;
        gap: 30px;
    }
    .footer-grid {
        gap: 30px;
    }
    .contact-widget {
        right: 18px;
        bottom: 18px;
    }
    .contact-panel {
        max-height: 60vh;
        overflow-y: auto;
    }
}
@media(max-width:639px) {
    .container {
        width: calc(100% - 36px);
    }
    .utility-inner {
        font-size: 10px;
        min-height: 30px;
        gap: 5px;
    }
    .utility-inner svg {
        display: none;
    }
    .masthead-inner {
        padding: 17px 0;
        min-height: 85px;
        gap: 10px;
        justify-content: space-between;
    }
    .brand {
        gap: 9px;
        max-width: calc(100% - 50px);
        min-width: 0;
    }
    .brand-mark {
        width: 32px;
        height: 38px;
    }
    .brand-mark svg {
        width: 21px;
        height: 21px;
    }
    .brand strong {
        font-size: 18px;
    }
    .brand small {
        font-size: 8px;
        margin-top: 4px;
    }
    .navigation {
        gap: 0 16px;
        flex-wrap: wrap;
        margin-top: 5px;
        min-height: 0;
    }
    .navigation a {
        font-size: 12px;
        padding: 12px 0;
        max-width: 100%;
    }
    .js .menu-toggle {
        display: inline-grid;
        width: 36px;
        height: 36px;
    }
    .js .navigation {
        display: none;
    }
    .js .navigation.is-open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding-top: 12px;
        border-top: 1px solid var(--line);
    }
    .js .navigation a {
        padding: 12px 6px;
    }
    .navigation a[aria-current=page]:after {
        height: 1px;
    }
    .intro-band {
        padding: 30px 0 23px;
    }
    h1 {
        font-size: 30px;
    }
    .intro-copy {
        font-size: 14px;
        margin-top: 14px;
    }
    .intro-aside {
        font-size: 11px;
        align-items: flex-start;
        gap: 12px;
        flex-direction: column;
        margin-top: 18px;
    }
    .intro-aside .text-link {
        font-size: 12px;
    }
    .eyebrow {
        font-size: 10px;
        margin-bottom: 9px;
    }
    .service-grid {
        grid-template-columns: minmax(0,1fr);
        gap: 22px;
    }
    .service-image {
        aspect-ratio: 1.9;
    }
    .service-card-content {
        padding: 21px;
    }
    .service-card h2 {
        font-size: 24px;
        min-height: 0;
    }
    .service-card p {
        font-size: 14px;
        margin-bottom: 18px;
    }
    .service-number {
        margin-bottom: 9px;
    }
    .services-section {
        padding-bottom: 30px;
    }
    .guide-band-inner {
        padding-block: 24px;
        gap: 18px;
    }
    .guide-band h2 {
        font-size: 20px;
    }
    .planning-points {
        gap: 12px;
        flex-wrap: wrap;
    }
    .planning-points>span {
        font-size: 11px;
        gap: 6px;
    }
    .planning-points svg {
        width: 16px;
        height: 16px;
    }
    .reading-section {
        padding-block: 34px 45px;
        gap: 34px;
    }
    .section-heading {
        align-items: center;
        gap: 10px;
        margin-bottom: 21px;
    }
    .section-heading h2 {
        font-size: 23px;
    }
    .section-heading .muted {
        font-size: 11px;
    }
    .article-row {
        padding: 22px 0;
    }
    .article-row h3 {
        font-size: 19px;
    }
    .article-row p {
        font-size: 13px;
    }
    .article-meta {
        font-size: 11px;
        gap: 7px 12px;
    }
    .reading-aside {
        display: block;
    }
    .reading-aside .sidebar-section {
        margin-bottom: 25px;
    }
    .footer-grid {
        grid-template-columns: minmax(0,1fr);
        gap: 25px;
    }
    .footer-links {
        flex-direction: row;
        gap: 22px;
        flex-wrap: wrap;
    }
    .footer-phone {
        font-size: 22px;
    }
    .footer-bottom {
        display: block;
        padding-bottom: 95px;
    }
    .footer-bottom span {
        display: block;
        margin-bottom: 6px;
    }
    .footer {
        padding-top: 29px;
    }
    .contact-widget {
        bottom: max(14px,env(safe-area-inset-bottom));
        right: 14px;
        max-width: calc(100% - 28px);
    }
    .contact-trigger {
        height: 43px;
        padding: 0 14px;
        font-size: 13px;
    }
    .contact-panel {
        width: 280px;
        max-height: 60vh;
    }
    .channel-heading-band {
        padding-block: 22px 30px;
    }
    .channel-heading-band h1 {
        font-size: 29px;
    }
    .breadcrumb {
        font-size: 11px;
        margin-bottom: 22px;
        gap: 8px;
    }
    .channel-description {
        font-size: 14px;
        margin-top: 15px;
    }
    .topic-tags {
        gap: 12px;
        font-size: 11px;
    }
    .channel-planning {
        grid-template-columns: minmax(0,1fr);
        gap: 17px;
        padding-block: 27px;
    }
    .channel-planning h2 {
        font-size: 22px;
    }
    .planning-copy {
        font-size: 13px;
    }
    .article-page {
        padding-block: 23px 45px;
    }
    .article-header h1 {
        font-size: 27px;
        line-height: 1.5;
    }
    .article-header {
        padding-bottom: 22px;
        margin-bottom: 24px;
    }
    .article-deck {
        font-size: 15px;
        margin-top: 21px;
    }
    .article-body {
        font-size: 16px;
        line-height: 1.95;
    }
    .article-body h1,.article-body h2 {
        font-size: 23px;
        margin-top: 30px;
    }
    .article-body h3 {
        font-size: 20px;
    }
    .article-disclaimer {
        padding: 14px;
        font-size: 11px;
        gap: 9px;
    }
    .article-body table {
        font-size: 12px;
    }
    .article-body th,.article-body td {
        padding: 9px;
    }
    .about-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }
    .about-content {
        grid-template-columns: minmax(0,1fr);
        gap: 24px;
        padding-block: 32px 50px;
    }
    .about-story h2 {
        font-size: 22px;
    }
    .about-story p {
        font-size: 15px;
    }
    .about-facts {
        padding-top: 20px;
    }
    .related-link {
        font-size: 15px;
    }
    .pagination {
        font-size: 12px;
        gap: 10px;
    }
    .archive-list {
        padding-block: 20px 45px;
    }
}
@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto;
    }
    * {
        transition: none !important;
    }
}
.service-image img {
    object-position: center bottom;
}
.contact-dock-phone {
    display: none;
}
@media (max-width: 639px) {
    .contact-widget {
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: none;
        padding: 10px 18px max(10px, env(safe-area-inset-bottom));
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        background: var(--white);
        border-top: 1px solid var(--line);
    }
    .contact-dock-phone {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 14px;
        font-weight: 600;
        white-space: nowrap;
    }
    .contact-dock-phone svg {
        width: 15px;
        height: 15px;
        color: var(--green);
    }
    .contact-panel {
        position: absolute;
        bottom: calc(100% + 10px);
        right: 14px;
        max-width: calc(100% - 28px);
    }
    .contact-trigger {
        flex-shrink: 0;
    }
}
.section-heading h1 {
    font-size: 25px;
}
@media print {
    .utility-bar,.navigation,.menu-toggle,.contact-widget,.footer,.article-aside,.article-tags,.related-section,.skip-link {
        display: none !important;
    }
    .container {
        width: 100%;
    }
    .masthead-inner {
        padding: 0;
        min-height: 60px;
    }
    .article-layout {
        display: block;
    }
    .article-header h1 {
        font-size: 26px;
    }
    .article-body {
        font-size: 12pt;
    }
    .article-body a {
        color: inherit;
    }
    .article-body img {
        max-height: 400px;
        object-fit: contain;
    }
}
