html,body{margin:0;padding:0}a{color:inherit;text-decoration:none}*{box-sizing:border-box}
@font-face {
    font-family: Interdisplay;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/toku-trust-center-preview/shared-assets/fonts/Inter/Inter-Regular.ttf') format('truetype');
}

@font-face {
    font-family: Interdisplay;
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/toku-trust-center-preview/shared-assets/fonts/Inter/Inter-Medium.ttf') format('truetype');
}

@font-face {
    font-family: Interdisplay;
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/toku-trust-center-preview/shared-assets/fonts/Inter/Inter-SemiBold.ttf')
        format('truetype');
}

@font-face {
    font-family: Interdisplay;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/toku-trust-center-preview/shared-assets/fonts/Inter/Inter-Bold.ttf') format('truetype');
}

@font-face {
    font-family: Interdisplay;
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('/toku-trust-center-preview/shared-assets/fonts/Inter/Inter-ExtraBold.ttf')
        format('truetype');
}

.page {
    --toku-blue: #1646ce;
    --toku-blue-dark: #0f2f8f;
    --ink: #101828;
    --muted: #667085;
    --line: #d9e2f2;
    --soft-blue: #f4f7ff;
    --soft-green: #edf8f2;
    --soft-amber: #fff8e7;
    --surface: #ffffff;
    --shadow: 0 24px 70px rgba(16, 24, 40, 0.08);

    min-height: 100vh;
    color: var(--ink);
    background: #fbfcff;
    font-family: Interdisplay, Arial, sans-serif;
}

.page,
.page *,
.page *::before,
.page *::after {
    font-family: Interdisplay, Arial, sans-serif;
}

.skipLink {
    position: absolute;
    left: 16px;
    top: -80px;
    z-index: 20;
    border-radius: 8px;
    background: var(--ink);
    color: white;
    padding: 10px 14px;
    text-decoration: none;
}

.skipLink:focus {
    top: 16px;
}

.siteHeader {
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid #e7ecf5;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
}

.promoBar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    min-height: 37px;
    background: #0d2870;
    color: white;
    padding: 8px 20px;
    font-size: 14px;
    line-height: 1.35;
    text-align: center;
}

.promoBar a {
    color: white;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.header {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    width: min(1320px, calc(100% - 40px));
    margin: 0 auto;
    min-height: 80px;
    padding: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: max-content;
}

.logo {
    width: 108px;
    height: auto;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    overflow-x: auto;
    padding: 0;
    scrollbar-width: none;
}

.nav::-webkit-scrollbar {
    display: none;
}

.headerCta,
.primaryCta,
.secondaryCta,
.textLink,
.breadcrumbs a,
.sideNav a,
.articleLinkList a {
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.nav > a,
.marketingNavItem summary {
    flex: 0 0 auto;
    border: 0;
    background: transparent;
    color: #222222;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    padding: 10px 0;
    white-space: nowrap;
    cursor: pointer;
    list-style: none;
    text-decoration: none;
}

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

.marketingNavItem summary::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    margin: -4px 0 0 8px;
    transform: rotate(45deg);
    color: #5f6b7c;
    vertical-align: middle;
}

.marketingNavItem[open] summary::after {
    margin-top: 4px;
    transform: rotate(225deg);
}

.nav > a:hover,
.nav > a:focus-visible,
.marketingNavItem summary:hover,
.marketingNavItem summary:focus-visible {
    color: #222222;
}

.headerCta,
.primaryCta,
.secondaryCta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    min-height: 46px;
    white-space: nowrap;
}

.headerCta {
    justify-self: end;
    border: 0;
    border-radius: 8px;
    color: white;
    padding: 0 18px;
    background: var(--toku-blue);
    font-weight: 600;
    line-height: 21px;
}

.headerCta:hover,
.headerCta:focus-visible {
    background: var(--toku-blue-dark);
}

@media (min-width: 1081px) {
    .headerCta {
        transform: translateX(-99px);
    }
}

.marketingNavItem {
    position: static;
}

.megaMenu {
    position: absolute;
    top: calc(100% - 4px);
    left: 50%;
    display: none;
    box-sizing: border-box;
    width: min(824px, calc(100vw - 80px));
    transform: translateX(-50%);
    border: 1px solid #d9e2f2;
    border-radius: 14px;
    background: white;
    box-shadow: 0 24px 70px rgba(16, 24, 40, 0.14);
    padding: 24px;
}

.marketingNavItem[data-nav-group='company'] .megaMenu {
    right: clamp(0px, calc((100vw - 1328px) * 0.5 - 4px), 52px);
    left: auto;
    transform: none;
}

.marketingNavItem[open] .megaMenu,
.marketingNavItem:hover .megaMenu,
.marketingNavItem:focus-within .megaMenu {
    display: block;
}

.megaInner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
    gap: 28px;
}

.megaColumns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 26px;
}

.megaSection h2,
.featureTop span {
    margin: 0 0 18px;
    color: #111827;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    text-transform: uppercase;
}

.megaSection h2 {
    border-bottom: 1px solid #e5eaf3;
    padding-bottom: 18px;
}

.megaLinks {
    display: grid;
    gap: 8px;
}

.megaLink {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    border-radius: 10px;
    color: #111827;
    padding: 10px;
    text-decoration: none;
}

.megaLink:hover,
.megaLink:focus-visible {
    background: #f5f7fb;
}

.megaIcon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #dce5f4;
    border-radius: 8px;
    background: #f8faff;
}

.megaIcon img {
    width: 22px;
    height: 22px;
}

.megaLink strong,
.featureCard span {
    display: block;
    color: #101828;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
}

.megaLink span span,
.featureCard p {
    display: block;
    margin: 4px 0 0;
    color: #4b5565;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}

.megaFeature {
    border-radius: 12px;
    background: #f5f7fc;
    padding: 22px;
}

.featureTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e1e7f1;
    padding-bottom: 18px;
}

.featureTop span {
    margin: 0;
}

.featureTop a {
    color: #101828;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    text-decoration: none;
}

.featureTop a::after {
    content: '>';
    margin-left: 8px;
}

.featureCard {
    display: block;
    margin-top: 20px;
    border-radius: 10px;
    background: white;
    padding: 22px;
    text-decoration: none;
}

.featureCard:hover,
.featureCard:focus-visible {
    box-shadow: 0 14px 34px rgba(16, 24, 40, 0.08);
}

.megaFooter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid #e1e7f1;
    margin-top: 22px;
    padding-top: 20px;
    color: #4b5565;
    font-size: 14px;
    line-height: 21px;
}

.megaFooter strong {
    color: #111827;
}

.megaFooter a {
    flex: 0 0 auto;
    border: 1px solid #d9e2f2;
    border-radius: 8px;
    color: #111827;
    padding: 13px 18px;
    text-decoration: none;
    font-weight: 600;
}

.megaFooter a:hover,
.megaFooter a:focus-visible {
    background: #f5f7fb;
}

.main {
    padding-bottom: 88px;
}

.heroWrap {
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.64fr);
    gap: 72px;
    width: min(1220px, calc(100% - 40px));
    margin: 0 auto;
    padding: 92px 0 76px;
    align-items: center;
}

.heroCopy {
    max-width: 820px;
}

.eyebrow,
.cardEyebrow {
    margin: 0;
    color: var(--toku-blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero h1,
.pageHero h1,
.sectionIntro h2,
.contactBand h2 {
    margin: 0;
    color: #080f21;
    letter-spacing: 0;
}

.hero h1 {
    margin-top: 14px;
    font-size: 72px;
    line-height: 1;
    font-weight: 800;
}

.heroText {
    max-width: 720px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.68;
}

.heroActions,
.contactLinks {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.primaryCta,
.secondaryCta {
    padding: 0 22px;
}

.primaryCta {
    background: var(--toku-blue);
    color: white;
    box-shadow: 0 18px 36px rgba(22, 70, 206, 0.2);
}

.primaryCta:hover,
.primaryCta:focus-visible {
    background: var(--toku-blue-dark);
}

.secondaryCta {
    border: 1px solid rgba(22, 70, 206, 0.18);
    color: var(--toku-blue);
    background: white;
}

.heroGuide {
    overflow: hidden;
    border: 1px solid rgba(22, 70, 206, 0.16);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
    padding: 26px;
}

.guideTop {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #182230;
    font-size: 15px;
    font-weight: 800;
}

.guideTop img {
    width: 28px;
    height: 28px;
}

.guideLinks {
    display: grid;
    gap: 10px;
    margin-top: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(
            145deg,
            rgba(244, 247, 255, 0.72),
            rgba(255, 255, 255, 0.92)
        ),
        url('/toku-trust-center-preview/images/layout/footer-waves.svg') right -220px bottom -180px /
            760px auto no-repeat;
    padding: 16px;
}

.guideLinks a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(22, 70, 206, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    color: #182230;
    padding: 15px 16px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
}

.guideLinks a::after {
    content: '>';
    color: var(--toku-blue);
    font-size: 18px;
    line-height: 1;
}

.guideLinks a:hover,
.guideLinks a:focus-visible {
    border-color: rgba(22, 70, 206, 0.32);
    color: var(--toku-blue);
    box-shadow: 0 10px 24px rgba(22, 70, 206, 0.08);
}

.programBand,
.resources,
.contactBand,
.pageHero,
.categoryLayout,
.articleLayout {
    width: min(1220px, calc(100% - 40px));
    margin: 0 auto;
}

.programBand {
    padding: 76px 0 20px;
}

.sectionIntro {
    max-width: 760px;
    margin-bottom: 34px;
}

.sectionIntro h2,
.contactBand h2 {
    margin-top: 12px;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 800;
}

.sectionIntro p:not(.eyebrow),
.programHeader > p,
.contactBand p,
.pageHero p:not(.eyebrow) {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.programHeader {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.55fr);
    gap: 42px;
    align-items: end;
    margin-bottom: 34px;
}

.programHeader h2 {
    margin: 12px 0 0;
    color: #080f21;
    font-size: 44px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: 0;
}

.programHeader > p {
    margin-bottom: 4px;
}

.categoryGrid,
.resourceGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.overviewGrid {
    display: grid;
    gap: 18px;
}

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

.topicCard {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    padding: 20px;
    box-shadow: 0 12px 36px rgba(16, 24, 40, 0.04);
}

.topicCard:first-child {
    grid-column: span 2;
    grid-template-columns: 260px minmax(0, 1fr);
}

.topicMedia {
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    min-height: 170px;
    border: 1px solid rgba(22, 70, 206, 0.12);
    border-radius: 8px;
    background: linear-gradient(
            145deg,
            rgba(244, 247, 255, 0.9),
            rgba(255, 255, 255, 0.92)
        ),
        url('/toku-trust-center-preview/images/layout/footer-waves.svg') right -210px bottom -200px /
            680px auto no-repeat;
}

.topicMedia::before,
.topicMedia::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    background: rgba(22, 70, 206, 0.12);
}

.topicMedia::before {
    width: 132px;
    height: 132px;
}

.topicMedia::after {
    width: 78px;
    height: 78px;
    border: 1px solid rgba(22, 70, 206, 0.16);
    background: rgba(255, 255, 255, 0.7);
}

.topicMedia[data-accent='green']::before {
    background: rgba(22, 163, 74, 0.14);
}

.topicMedia[data-accent='violet']::before {
    background: rgba(124, 58, 237, 0.12);
}

.topicMedia[data-accent='amber']::before {
    background: rgba(245, 158, 11, 0.16);
}

.topicMedia[data-accent='slate']::before {
    background: rgba(71, 85, 105, 0.14);
}

.topicMedia img {
    position: relative;
    z-index: 1;
    width: 54px;
    height: 54px;
}

.topicContent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 4px;
}

.topicContent h3 {
    margin: 0;
    color: #0a1020;
    font-size: 28px;
    line-height: 1.12;
}

.topicContent p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.62;
}

.categoryCard,
.resourceCard {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    min-height: 100%;
    padding: 26px;
    box-shadow: 0 12px 36px rgba(16, 24, 40, 0.04);
    color: inherit;
    text-decoration: none;
}

.resourceCard {
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease,
        transform 160ms ease;
}

.resourceCard:hover,
.resourceCard:focus-visible {
    border-color: rgba(22, 70, 206, 0.38);
    box-shadow: 0 18px 44px rgba(16, 24, 40, 0.08);
    transform: translateY(-2px);
}

.overviewCard {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    padding: 28px 30px;
    box-shadow: 0 12px 36px rgba(16, 24, 40, 0.04);
}

.categoryCard h3,
.resourceCard h3,
.overviewCard h2 {
    margin: 10px 0 0;
    color: #0a1020;
    font-size: 25px;
    line-height: 1.2;
}

.overviewCard h2 {
    margin: 0;
}

.categoryCard p,
.resourceCard p,
.overviewCard p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.62;
}

.resourceCta {
    display: inline-flex;
    width: max-content;
    margin-top: 24px;
    color: var(--toku-blue);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.resourceCta::after {
    content: '>';
    margin-left: 8px;
}

.articleLinkList {
    display: grid;
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.articleLinkList a,
.textLink,
.breadcrumbs a,
.sideNav a {
    color: var(--toku-blue);
}

.articleLinkList a:hover,
.articleLinkList a:focus-visible,
.textLink:hover,
.textLink:focus-visible,
.breadcrumbs a:hover,
.breadcrumbs a:focus-visible,
.sideNav a:hover,
.sideNav a:focus-visible {
    color: var(--toku-blue-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.textLink {
    display: inline-flex;
    width: max-content;
    margin-top: 18px;
}

.overviewCard .textLink {
    margin-top: 18px;
    white-space: normal;
}

.resources {
    padding: 78px 0 20px;
}

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

.resourceCard:nth-child(2) {
    background: var(--soft-blue);
}

.resourceCard:nth-child(3) {
    background: var(--soft-amber);
}

.overviewGrid {
    align-items: stretch;
}

.overviewCard {
    justify-content: flex-start;
}

.overviewCard h2 {
    margin-top: 0;
}

.contactBand {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 36px;
    align-items: center;
    margin-top: 72px;
    border: 1px solid rgba(22, 70, 206, 0.16);
    border-radius: 8px;
    background: #f7f9ff;
    padding: 34px;
}

.contactBand p {
    max-width: 680px;
}

.contactLinks {
    justify-content: flex-end;
    margin-top: 0;
}

.pageHero {
    padding: 64px 0 36px;
}

.pageHero h1 {
    max-width: 860px;
    margin-top: 12px;
    font-size: 58px;
    line-height: 1;
    font-weight: 800;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 28px;
    color: var(--muted);
}

.breadcrumbs span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.metaGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.metaGrid span {
    border: 1px solid rgba(22, 70, 206, 0.14);
    border-radius: 999px;
    background: white;
    color: #344054;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 700;
}

.articleLayout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 42px;
    align-items: start;
    padding: 20px 0 80px;
}

.categoryLayout {
    padding: 20px 0 80px;
}

.articleContent {
    border-top: 1px solid var(--line);
    padding-top: 30px;
}

.articleContent h2,
.articleContent h3,
.articleContent p,
.articleContent blockquote,
.articleContent ul,
.articleContent ol,
.tableWrap,
.callout {
    max-width: 820px;
}

.articleContent h2 {
    margin: 38px 0 12px;
    color: #0a1020;
    font-size: 30px;
    line-height: 1.18;
    font-weight: 800;
}

.articleContent h2:first-child {
    margin-top: 0;
}

.articleContent h3 {
    margin: 28px 0 10px;
    color: #182230;
    font-size: 22px;
    line-height: 1.25;
}

.articleContent p,
.articleContent li,
.articleContent blockquote {
    color: #344054;
    font-size: 16px;
    line-height: 1.72;
}

.articleContent p {
    margin: 12px 0 0;
}

.contentList {
    display: grid;
    gap: 8px;
    margin: 14px 0 0;
    padding-left: 22px;
}

.articleContent ul.contentList {
    list-style: disc;
}

.articleContent ol.contentList {
    list-style: decimal;
}

.articleContent blockquote {
    margin: 22px 0 0;
    border-left: 4px solid var(--toku-blue);
    background: var(--soft-blue);
    padding: 18px 22px;
}

.callout {
    margin-top: 22px;
    border: 1px solid rgba(22, 70, 206, 0.16);
    border-radius: 8px;
    background: var(--soft-blue);
    padding: 20px 22px;
}

.callout h2,
.callout h3,
.callout p,
.callout ul,
.callout ol {
    max-width: none;
}

.tableWrap {
    overflow-x: auto;
    margin-top: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
}

.tableWrap table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
}

.tableWrap th,
.tableWrap td {
    border-bottom: 1px solid var(--line);
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
    font-size: 14px;
    line-height: 1.55;
}

.tableWrap th {
    background: #f6f8fc;
    color: #182230;
    font-weight: 800;
}

.tableWrap td {
    color: #344054;
}

.tableWrap tr:last-child td {
    border-bottom: 0;
}

.sideNav {
    position: sticky;
    top: 96px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    padding: 20px;
    box-shadow: 0 12px 36px rgba(16, 24, 40, 0.04);
}

.sideNav h2 {
    margin: 0 0 12px;
    color: #0a1020;
    font-size: 16px;
    line-height: 1.3;
}

.sideNav ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sideNav a {
    display: block;
    border-radius: 8px;
    padding: 8px 10px;
}

.sideNav a[aria-current='page'] {
    background: var(--soft-blue);
    color: var(--toku-blue-dark);
}

@media (max-width: 1080px) {
    .header {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .headerCta {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-top: 56px;
    }

    .hero h1 {
        font-size: 62px;
    }

    .heroGuide {
        max-width: 560px;
    }

    .programHeader {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .topicList {
        grid-template-columns: 1fr;
    }

    .topicCard,
    .topicCard:first-child {
        grid-column: auto;
        grid-template-columns: 170px minmax(0, 1fr);
    }

    .categoryLayout,
    .articleLayout {
        grid-template-columns: 1fr;
    }

    .sideNav {
        position: static;
        order: -1;
    }

    .contactBand {
        grid-template-columns: 1fr;
    }

    .contactLinks {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .header,
    .hero,
    .programBand,
    .resources,
    .contactBand,
    .pageHero,
    .categoryLayout,
    .articleLayout {
        width: min(100% - 28px, 1220px);
    }

    .header {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 14px 0;
    }

    .nav {
        width: 100%;
        justify-content: flex-start;
        gap: 22px;
    }

    .hero {
        padding: 42px 0 44px;
    }

    .hero h1,
    .pageHero h1 {
        font-size: 42px;
        line-height: 1.04;
    }

    .heroText,
    .sectionIntro p:not(.eyebrow),
    .contactBand p,
    .pageHero p:not(.eyebrow) {
        font-size: 16px;
    }

    .sectionIntro h2,
    .programHeader h2,
    .contactBand h2 {
        font-size: 32px;
    }

    .heroActions,
    .contactLinks {
        flex-direction: column;
        align-items: stretch;
    }

    .primaryCta,
    .secondaryCta {
        width: 100%;
        min-height: 48px;
        padding: 0 16px;
        text-align: center;
    }

    .heroGuide,
    .topicCard,
    .categoryCard,
    .resourceCard,
    .overviewCard,
    .contactBand {
        padding: 22px;
    }

    .topicCard {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .topicCard:first-child {
        grid-template-columns: 1fr;
    }

    .topicCard .textLink {
        grid-column: auto;
    }

    .topicMedia {
        min-height: 112px;
    }

    .categoryGrid,
    .resourceGrid,
    .overviewGrid {
        grid-template-columns: 1fr;
    }

    .overviewCard .textLink {
        width: auto;
    }

    .programBand,
    .resources {
        padding-top: 56px;
    }

    .pageHero {
        padding-top: 44px;
    }

    .articleContent h2 {
        font-size: 26px;
    }

    .articleContent h3 {
        font-size: 20px;
    }

    .tableWrap table {
        min-width: 560px;
    }
}
