:root {
    color-scheme: light;
    --color-china-red: #c8102e;
    --color-china-red-hover: #a90d26;
    --color-china-red-active: #8f0b20;
    --color-charcoal: #1a1d21;
    --color-text-primary: #33383f;
    --color-text-secondary: #66707a;
    --color-text-muted: #8b9097;
    --color-warm-white: #fafaf9;
    --color-pure-white: #ffffff;
    --color-soft-gray: #e6ebeb;
    --color-border: #dfe4e7;
    --color-surface-muted: #f5f7f7;
    --font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
    --font-body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --shadow-sm: 0 1px 2px rgba(16, 24, 40, .04);
    --shadow-md: 0 4px 12px rgba(16, 24, 40, .06);
    --focus-ring: rgba(200, 16, 46, .25);
    --ink: var(--color-charcoal);
    --muted: var(--color-text-secondary);
    --line: var(--color-border);
    --paper: var(--color-pure-white);
    --canvas: var(--color-warm-white);
    --green: var(--color-china-red);
    --green-dark: var(--color-china-red-hover);
    --green-soft: #fdf0f2;
    --shadow: var(--shadow-sm);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-height: 100vh; color: var(--color-text-primary); background: var(--canvas); font-family: var(--font-body); }
img { display: block; max-width: 100%; }
a { color: var(--color-china-red-hover); }
a:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 3px; }
.skip-link { position: fixed; z-index: 100; top: 10px; left: 10px; padding: 10px 14px; color: var(--color-pure-white); background: var(--color-china-red-active); border-radius: var(--radius-md); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.site-header { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 12px max(24px, calc((100vw - 1120px) / 2)); background: rgba(255,255,255,.94); border-bottom: 1px solid var(--line); }
.brand { color: var(--ink); text-decoration: none; display: inline-flex; gap: 11px; align-items: center; font-weight: 800; white-space: nowrap; }
.brand-mark { width: 30px; height: 40px; display: grid; place-items: center; flex: 0 0 auto; overflow: hidden; }
.brand-mark img { width: 100%; height: 100%; display: block; object-fit: contain; }
.site-header nav { display: flex; align-items: center; gap: 24px; }
.site-header nav a { color: var(--ink); text-decoration: none; font-size: 14px; font-weight: 700; }
.site-header nav a:hover { color: var(--green); }
.site-header .nav-cta { padding: 10px 14px; color: var(--color-pure-white); background: var(--color-china-red); border-radius: var(--radius-md); }
.site-header .nav-cta:hover { color: var(--color-pure-white); background: var(--color-china-red-hover); }
.home-checker { width: min(1120px, calc(100% - 32px)); margin: 0 auto; padding: clamp(56px, 8vw, 104px) 0 88px; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr); gap: clamp(48px, 7vw, 88px); align-items: center; }
.home-checker-copy h1 { max-width: 680px; margin: 0; font-family: var(--font-heading); font-size: clamp(48px, 6.5vw, 82px); line-height: .98; letter-spacing: -.05em; }
.home-checker-copy > p:not(.eyebrow) { max-width: 670px; margin: 28px 0 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
.home-trust { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 42px; padding-top: 24px; border-top: 1px solid var(--line); }
.home-trust span { position: relative; padding-left: 22px; color: var(--color-text-primary); font-size: 12px; line-height: 1.5; font-weight: 750; }
.home-trust span::before { content: "✓"; position: absolute; left: 0; color: var(--color-china-red); font-weight: 900; }
.home-checker-card { padding: clamp(28px, 4vw, 42px); background: var(--color-pure-white); border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow-md); }
.home-checker-card h2 { margin: 0; font-size: clamp(25px, 3vw, 34px); letter-spacing: -.03em; }
.checker-steps { position: relative; display: grid; gap: 0; margin: 30px 0; padding: 0; list-style: none; }
.checker-steps::before { content: ""; position: absolute; top: 20px; bottom: 20px; left: 17px; width: 1px; background: var(--line); }
.checker-steps li { position: relative; z-index: 1; display: grid; grid-template-columns: 36px 1fr; gap: 15px; align-items: center; min-height: 74px; }
.checker-steps li > span { width: 36px; height: 36px; display: grid; place-items: center; color: var(--muted); background: var(--color-pure-white); border: 1px solid var(--line); border-radius: 50%; font-size: 12px; font-weight: 850; }
.checker-steps li:first-child > span { color: var(--color-pure-white); background: var(--color-china-red); border-color: var(--color-china-red); }
.checker-steps strong, .checker-steps small { display: block; }
.checker-steps strong { color: var(--ink); font-size: 14px; }
.checker-steps small { margin-top: 5px; color: var(--muted); line-height: 1.4; }
.home-primary-button { min-height: 52px; display: flex; align-items: center; justify-content: center; gap: 12px; padding: 0 20px; color: var(--color-pure-white); background: var(--color-china-red); border-radius: var(--radius-md); text-decoration: none; font-weight: 850; }
.home-primary-button:hover { color: var(--color-pure-white); background: var(--color-china-red-hover); }
.checker-disclaimer { margin: 15px 0 0; color: var(--muted); font-size: 11px; line-height: 1.5; text-align: center; }
.home-section { width: min(1120px, calc(100% - 32px)); margin: 0 auto 96px; }
.home-categories { padding-top: 64px; border-top: 1px solid var(--line); }
.home-section-heading { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 34px; }
.home-section-heading h2 { margin: 0; font-family: var(--font-heading); font-size: clamp(34px, 4vw, 52px); line-height: 1.05; letter-spacing: -.04em; }
.home-section-heading > p { max-width: 450px; margin: 0; color: var(--muted); line-height: 1.65; }
.category-card-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 12px; }
.category-card { min-height: 236px; display: flex; flex-direction: column; padding: 22px 17px 18px; color: var(--ink); background: var(--color-pure-white); border: 1px solid var(--line); border-radius: var(--radius-lg); text-decoration: none; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.category-card:hover { color: var(--ink); border-color: #e5a7b2; box-shadow: var(--shadow-md); transform: translateY(-3px); }
.category-icon { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 23px; color: var(--color-text-primary); }
.category-icon svg { width: 36px; height: 36px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.category-card strong { font-size: 15px; line-height: 1.3; }
.category-card small { display: -webkit-box; margin-top: 9px; overflow: hidden; color: var(--muted); font-size: 11px; line-height: 1.45; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.category-count { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; padding-top: 17px; color: var(--muted); border-top: 1px solid var(--line); font-size: 11px; }
.category-count b { color: var(--color-china-red); font-size: 16px; }
.home-destinations { padding-top: 8px; }
.home-destination-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.home-destination-card { min-height: 142px; display: grid; place-items: center; align-content: center; gap: 12px; padding: 18px 12px; color: var(--ink); background: var(--color-pure-white); border: 1px solid var(--line); border-radius: var(--radius-lg); text-align: center; text-decoration: none; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.home-destination-card:hover { color: var(--ink); border-color: #e5a7b2; box-shadow: var(--shadow-md); transform: translateY(-3px); }
.home-destination-card strong { font-size: 14px; line-height: 1.3; }
.home-destination-icon { display: grid; width: 68px; height: 68px; place-items: center; overflow: hidden; border-radius: 16px; background: #fdf7f8; }
.home-destination-icon img { width: 100%; height: 100%; object-fit: contain; }
.home-destination-icon svg { width: 28px; height: 28px; fill: none; stroke: var(--color-china-red); stroke-width: 1.5; }
.home-guides { padding-top: 8px; }
.home-text-link { flex: 0 0 auto; padding: 10px 0; font-weight: 800; text-decoration: none; }
.featured-guide-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.featured-guide-card { background: var(--color-pure-white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.featured-guide-body { padding: 25px; }
.featured-guide-body h3 { margin: 6px 0 12px; font-size: 23px; line-height: 1.2; letter-spacing: -.025em; }
.featured-guide-body h3 a { color: var(--ink); text-decoration: none; }
.featured-guide-body h3 a:hover { color: var(--color-china-red); }
.featured-guide-body > p { display: -webkit-box; min-height: 70px; margin: 0; overflow: hidden; color: var(--muted); font-size: 14px; line-height: 1.65; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.featured-guide-meta { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 20px; padding-top: 16px; color: var(--muted); border-top: 1px solid var(--line); font-size: 12px; }
.featured-guide-meta a { font-weight: 800; text-decoration: none; white-space: nowrap; }
.home-empty { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px; background: var(--color-pure-white); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.home-empty p { margin: 0; color: var(--muted); }
.home-empty a { font-weight: 800; }
.home-source-note { width: min(1120px, calc(100% - 32px)); min-height: 62px; display: grid; grid-template-columns: 24px 1fr auto; gap: 14px; align-items: center; margin: -24px auto 72px; padding: 14px 18px; background: #edf5ff; border: 1px solid #d8e7f8; border-radius: var(--radius-md); color: #3e5f84; }
.home-source-note > span { width: 20px; height: 20px; display: grid; place-items: center; color: var(--color-pure-white); background: #4c78a8; border-radius: 50%; font-size: 12px; font-weight: 900; }
.home-source-note p { margin: 0; font-size: 12px; line-height: 1.5; }
.home-source-note a { color: #315f93; font-size: 12px; font-weight: 800; text-decoration: none; white-space: nowrap; }
.content-hero, .article-header, .author-hero { width: min(920px, calc(100% - 32px)); margin: 0 auto; padding: 84px 0 52px; }
.content-hero { text-align: center; }
.eyebrow, .card-kicker { margin: 0 0 12px; color: var(--green); text-transform: uppercase; font-size: 12px; line-height: 1.3; letter-spacing: .12em; font-weight: 850; }
.content-hero h1, .article-header h1, .author-hero h1 { margin: 0; font-family: var(--font-heading); font-size: clamp(42px, 7vw, 76px); line-height: 1; letter-spacing: -.045em; }
.content-hero > p:last-child, .author-hero p { max-width: 700px; margin: 24px auto 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
.content-shell, .policy-section, .related-section, .checker-cta { width: min(1120px, calc(100% - 32px)); margin: 0 auto 88px; }
.guide-category-nav { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 52px; }
.guide-category-nav a { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; color: var(--color-text-primary); background: var(--color-pure-white); border: 1px solid var(--line); border-radius: 999px; font-size: 14px; font-weight: 800; text-decoration: none; }
.guide-category-nav a:hover { color: var(--color-china-red-hover); background: var(--color-warm-white); border-color: var(--color-china-red); }
.guide-category-nav span { display: grid; place-items: center; min-width: 22px; height: 22px; padding: 0 6px; color: var(--color-pure-white); background: var(--color-china-red); border-radius: 999px; font-size: 11px; }
.guide-category-nav a:hover span { color: var(--color-pure-white); background: var(--color-china-red-hover); }
.guide-category-section { scroll-margin-top: 28px; margin: 0 0 66px; }
.guide-category-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin: 0 0 26px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.guide-category-heading .eyebrow { margin-bottom: 8px; }
.guide-category-heading h2 { margin: 0; font-family: var(--font-heading); font-size: clamp(32px, 4vw, 48px); letter-spacing: -.035em; }
.guide-category-heading p:not(.eyebrow) { max-width: 720px; margin: 12px 0 0; color: var(--muted); line-height: 1.6; }
.category-link { flex: 0 0 auto; padding: 10px 0; font-weight: 800; text-decoration: none; white-space: nowrap; }
.card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.content-card { position: relative; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.card-media { display: block; height: 240px; background: var(--green-soft); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.content-card:hover .card-media img { transform: scale(1.02); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.card-save, .article-save { color: var(--color-china-red); border: 1px solid var(--color-border); background: var(--color-pure-white); cursor: pointer; }
.card-save { position: absolute; z-index: 1; top: 14px; right: 14px; width: 36px; height: 36px; display: grid; place-items: center; padding: 0; border-radius: 50%; box-shadow: var(--shadow-sm); }
.card-save svg, .article-save svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card-save:hover, .article-save:hover { color: var(--color-china-red-hover); border-color: var(--color-china-red); }
.card-save.is-saved, .article-save.is-saved { color: var(--color-pure-white); border-color: var(--color-china-red); background: var(--color-china-red); }
.card-save.is-saved svg, .article-save.is-saved svg { fill: currentColor; }
.card-body { padding: 26px; }
.card-kicker { display: inline-block; text-decoration: none; }
.card-body h2, .card-body h3 { margin: 8px 0 12px; font-size: clamp(23px, 3vw, 31px); letter-spacing: -.025em; }
.card-body h2 a, .card-body h3 a { color: var(--ink); text-decoration: none; }
.card-body h2 a:hover, .card-body h3 a:hover { color: var(--color-china-red); }
.card-body p { color: var(--muted); line-height: 1.65; }
.card-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.card-meta a { font-weight: 700; text-decoration: none; }
.empty-state { padding: 48px; text-align: center; background: var(--color-pure-white); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.empty-state h2 { margin-top: 0; }
.empty-state p { color: var(--muted); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; color: var(--muted); font-size: 13px; }
.breadcrumbs a { text-decoration: none; font-weight: 700; }
.article-header { padding-bottom: 44px; }
.article-header h1 { max-width: 960px; }
.article-deck { max-width: 760px; margin: 26px 0 0; color: var(--muted); font-size: clamp(18px, 2.3vw, 23px); line-height: 1.65; }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 24px; color: var(--muted); font-size: 13px; }
.article-meta a { font-weight: 750; text-decoration: none; }
.article-save { display: inline-flex; align-items: center; gap: 7px; min-height: 32px; padding: 5px 10px; border-radius: var(--radius-md); font: inherit; font-weight: 750; }
.hero-media { margin: 46px 0 0; overflow: hidden; border-radius: var(--radius-lg); background: var(--green-soft); }
.hero-media img { width: 100%; height: auto; aspect-ratio: 2 / 1; object-fit: cover; background: var(--green-soft); }
.hero-media figcaption { margin-top: 10px; color: var(--muted); font-size: 12px; text-align: center; }
.article-layout { width: min(1000px, calc(100% - 32px)); margin: 0 auto 84px; display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 64px; align-items: start; }
.prose { min-width: 0; color: var(--color-text-primary); font-family: var(--font-body); font-size: 19px; line-height: 1.85; }
.prose h2, .prose h3, .prose h4 { color: var(--ink); font-family: var(--font-body); line-height: 1.25; letter-spacing: -.025em; }
.prose h2 { margin: 2.2em 0 .7em; font-size: 31px; }
.prose h3 { margin: 1.8em 0 .6em; font-size: 24px; }
.prose a { overflow-wrap: anywhere; }
.prose blockquote { margin: 1.8em 0; padding: 2px 0 2px 22px; border-left: 4px solid var(--color-china-red); color: var(--muted); }
.prose table { width: 100%; border-collapse: collapse; font-family: var(--font-body); font-size: 15px; }
.prose th, .prose td { padding: 11px; border: 1px solid var(--line); text-align: left; }
.article-aside { position: sticky; top: 28px; }
.aside-card { padding: 24px; background: var(--color-pure-white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.aside-card h2 { margin: 0; font-size: 24px; }
.aside-card p:not(.eyebrow) { color: var(--muted); line-height: 1.6; }
.button-link { display: inline-flex; justify-content: center; align-items: center; min-height: 46px; padding: 0 18px; border-radius: var(--radius-md); color: var(--color-pure-white); background: var(--color-china-red); text-decoration: none; font-weight: 800; }
.button-link:hover { color: var(--color-pure-white); background: var(--color-china-red-hover); }
.destination-fact { display: inline-block; margin: 24px 0 0; padding: 10px 14px; color: var(--color-text-primary); background: var(--green-soft); border: 1px solid #f1c9d0; border-radius: var(--radius-md); }
.destination-directory-tools { display: grid; grid-template-columns: auto minmax(240px, 420px) 1fr; gap: 14px; align-items: center; margin: 0 0 28px; }
.destination-directory-tools label { color: var(--ink); font-size: 14px; font-weight: 800; }
.destination-search-field { position: relative; min-width: 0; }
.destination-directory-tools input { width: 100%; min-width: 0; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-md); color: var(--ink); background: var(--color-pure-white); font: inherit; }
.destination-directory-tools input:focus { border-color: var(--color-china-red); outline: 3px solid #fbe8eb; }
.destination-directory-tools p { margin: 0; color: var(--muted); font-size: 13px; text-align: right; }
.destination-search-suggestions { position: absolute; z-index: 4; top: calc(100% + 7px); right: 0; left: 0; max-height: 280px; margin: 0; padding: 6px; overflow-y: auto; list-style: none; background: var(--color-pure-white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.destination-search-suggestions[hidden] { display: none; }
.destination-search-suggestions li { display: flex; justify-content: space-between; gap: 14px; align-items: baseline; padding: 10px 11px; border-radius: 8px; color: var(--ink); cursor: pointer; font-size: 14px; font-weight: 800; }
.destination-search-suggestions [data-destination-suggestion][hidden], .destination-card[hidden] { display: none !important; }
.destination-search-suggestions li:hover, .destination-search-suggestions li.is-active { color: var(--color-china-red-hover); background: #fdf1f3; }
.destination-search-suggestions small { color: var(--muted); font-size: 11px; font-weight: 700; text-align: right; }
.destination-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.destination-card { position: relative; display: flex; flex-direction: column; min-height: 344px; padding: 24px; background: var(--color-pure-white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.destination-card:hover { border-color: #e5a7b2; box-shadow: var(--shadow-md); }
.destination-card-header { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; }
.destination-card-icon { display: grid; flex: 0 0 auto; width: 76px; height: 76px; place-items: center; overflow: hidden; border-radius: 18px; background: #fdf7f8; }
.destination-card-icon img { display: block; width: 100%; height: 100%; object-fit: contain; }
.destination-card .card-save { position: static; flex: 0 0 auto; margin-left: auto; }
.destination-card-topline { display: flex; justify-content: space-between; gap: 10px; align-items: center; margin-top: 18px; color: var(--color-china-red); font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.destination-card-topline span:last-child { color: var(--muted); }
.destination-card h2 { margin: 18px 0 11px; font-family: var(--font-heading); font-size: clamp(29px, 3vw, 37px); line-height: 1; letter-spacing: -.035em; }
.destination-card h2 a { color: var(--ink); text-decoration: none; }
.destination-card h2 a:hover { color: var(--color-china-red); }
.destination-card > p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.destination-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; padding-top: 22px; }
.destination-tags span { padding: 6px 9px; color: #576762; background: #f2f6f4; border-radius: 999px; font-size: 11px; font-weight: 800; }
.destination-card-link { margin-top: 18px; color: var(--color-china-red); font-size: 13px; font-weight: 850; text-decoration: none; }
.destination-card-link:hover { color: var(--color-china-red-hover); }
.destination-search-empty { margin-top: 20px; }
.destination-toc { max-height: calc(100vh - 56px); margin-bottom: 16px; padding: 20px; overflow-y: auto; overscroll-behavior: contain; scrollbar-width: none; -ms-overflow-style: none; background: var(--color-pure-white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.destination-toc::-webkit-scrollbar { width: 0; height: 0; }
.destination-toc strong { color: var(--ink); font-size: 13px; }
.destination-toc ol { display: grid; gap: 9px; margin: 14px 0 0; padding: 0; list-style: none; }
.destination-toc li { font-size: 13px; line-height: 1.35; }
.destination-toc a { display: block; padding: 6px 8px; color: var(--muted); border-radius: 7px; text-decoration: none; transition: color .16s ease, background-color .16s ease; }
.destination-toc a:hover { color: var(--color-china-red); }
.destination-toc a.is-active, .destination-toc a[aria-current="location"] { color: var(--color-china-red-hover); background: #fdf1f3; font-weight: 800; }
.section-heading { max-width: 760px; margin-bottom: 28px; }
.section-heading h2, .checker-cta h2, .section-title { margin: 0; font-family: var(--font-heading); font-size: clamp(30px, 4vw, 48px); letter-spacing: -.035em; }
.section-heading > p:last-child { color: var(--muted); line-height: 1.65; }
.policy-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.policy-card { padding: 26px; background: var(--color-pure-white); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.status-chip { display: inline-flex; padding: 6px 9px; color: var(--color-china-red-hover); border: 1px solid currentColor; border-radius: 999px; font-size: 11px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.policy-card h3 { margin: 16px 0; font-size: 24px; }
.policy-card dl { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 0; }
.policy-card dl div { padding-top: 11px; border-top: 1px solid var(--line); }
.policy-card dt { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.policy-card dd { margin: 5px 0 0; font-size: 13px; font-weight: 700; overflow-wrap: anywhere; }
.source-links { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.source-links h4 { margin: 0 0 9px; }
.source-links ul { margin: 0; padding-left: 18px; display: grid; gap: 8px; }
.source-links a { font-size: 13px; font-weight: 700; overflow-wrap: anywhere; }
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.related-grid article { padding: 22px; background: var(--color-pure-white); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.related-grid h3 { margin: 0; font-size: 20px; }
.related-grid h3 a { color: var(--ink); text-decoration: none; }
.related-grid p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.related-grid span { color: var(--muted); font-size: 12px; }
.checker-cta { display: flex; justify-content: space-between; gap: 40px; align-items: center; padding: clamp(28px, 5vw, 52px); color: var(--color-text-primary); background: var(--color-surface-muted); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.checker-cta .eyebrow { color: var(--color-china-red); }
.checker-cta p:not(.eyebrow) { max-width: 690px; margin-bottom: 0; color: var(--muted); line-height: 1.65; }
.checker-cta .button-link { flex: 0 0 auto; color: var(--color-pure-white); background: var(--color-china-red); }
.author-hero { display: grid; grid-template-columns: 180px 1fr; gap: 36px; align-items: center; }
.author-hero > img { width: 180px; height: 180px; object-fit: cover; border-radius: 50%; background: var(--green-soft); }
.author-hero p { margin-left: 0; }
.section-title { margin-bottom: 28px; }
.not-found { min-height: 55vh; display: flex; flex-direction: column; justify-content: center; }
.not-found-actions { display: flex; justify-content: center; gap: 18px; align-items: center; margin-top: 26px; }
.site-footer { width: min(1120px, calc(100% - 32px)); margin: 0 auto; padding: 32px 0 48px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; display: flex; justify-content: space-between; gap: 24px; }
.site-footer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 42px; width: 100%; }
.site-footer h2 { margin: 0 0 14px; color: var(--ink); font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }
.site-footer ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--color-china-red); }
.site-footer-bottom { width: 100%; display: flex; justify-content: space-between; gap: 24px; margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--line); }
.site-footer p { margin: 0; }
.static-page-hero { padding-bottom: 44px; }
.static-last-updated { margin: 18px 0 0; color: var(--muted); font-size: 13px; }
.static-page-layout { width: min(1000px, calc(100% - 32px)); margin: 0 auto 84px; display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: 58px; align-items: start; }
.static-page-layout-no-aside { grid-template-columns: minmax(0, 1fr); }
.static-page-aside { position: sticky; top: 28px; }
.static-page-toc { padding: 20px; background: var(--color-pure-white); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.static-page-toc strong { color: var(--ink); font-size: 13px; }
.static-page-toc ol { display: grid; gap: 10px; margin: 14px 0 0; padding-left: 20px; color: var(--muted); font-size: 13px; }
.static-page-toc a { text-decoration: none; }
.static-page-prose { max-width: 760px; }
.static-page-prose section { scroll-margin-top: 28px; }
.static-page-prose > section:first-child h2 { margin-top: 0; }
.static-page-prose h2 { font-size: 29px; }
.static-page-prose h3 { margin-top: 1.45em; font-size: 21px; }
.static-cta { margin-top: 52px; padding: 28px; background: var(--green-soft); border: 1px solid #f1c9d0; border-radius: var(--radius-lg); }
.static-cta h2 { margin: 0; }
.static-cta-actions { display: flex; flex-wrap: wrap; gap: 12px 18px; align-items: center; margin-top: 20px; }
.contact-email-card { margin: 28px 0 18px; padding: 24px 28px; background: var(--green-soft); border: 1px solid #f1c9d0; border-radius: var(--radius-lg); }
.contact-email-link { color: var(--ink); font-size: clamp(22px, 4vw, 34px); font-weight: 850; letter-spacing: -0.02em; text-decoration-thickness: 2px; text-underline-offset: 4px; }
@media (max-width: 820px) {
    .home-checker { grid-template-columns: 1fr; gap: 44px; padding-top: 60px; }
    .home-checker-copy h1 { max-width: 760px; }
    .category-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .category-card { min-height: 210px; }
    .home-destination-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .featured-guide-grid { grid-template-columns: 1fr 1fr; }
    .card-grid, .policy-grid { grid-template-columns: 1fr; }
    .destination-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .guide-category-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
    .article-layout { grid-template-columns: 1fr; gap: 34px; }
    .article-aside { position: static; }
    .destination-toc { display: none; }
    .related-grid { grid-template-columns: 1fr; }
    .checker-cta { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 620px) {
    .site-header { min-height: 64px; padding: 10px 16px; }
    .site-header nav { gap: 12px; }
    .site-header nav > a:not(.nav-cta) { display: none; }
    .home-checker, .home-section, .home-source-note { width: min(100% - 24px, 1120px); }
    .home-checker { padding: 48px 0 64px; }
    .home-checker-copy h1 { font-size: clamp(43px, 13vw, 62px); }
    .home-checker-copy > p:not(.eyebrow) { font-size: 16px; }
    .home-trust { grid-template-columns: 1fr; }
    .home-checker-card { padding: 25px 20px; }
    .home-section { margin-bottom: 64px; }
    .home-categories { padding-top: 48px; }
    .home-section-heading { align-items: flex-start; flex-direction: column; gap: 16px; }
    .category-card-grid, .featured-guide-grid { grid-template-columns: 1fr; }
    .category-card { min-height: 190px; }
    .home-destination-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
    .home-destination-card { min-height: 118px; padding: 13px 8px; gap: 8px; }
    .home-destination-icon { width: 54px; height: 54px; border-radius: 13px; }
    .home-destination-card strong { font-size: 12px; }
    .home-source-note { grid-template-columns: 24px 1fr; margin-top: -6px; margin-bottom: 52px; }
    .home-source-note a { grid-column: 2; white-space: normal; }
    .content-hero, .article-header, .author-hero { width: min(100% - 24px, 920px); padding-top: 52px; }
    .content-shell, .policy-section, .related-section, .checker-cta { width: min(100% - 20px, 1120px); margin-bottom: 56px; }
    .article-layout { width: min(100% - 28px, 1000px); margin-bottom: 56px; }
    .card-media { height: 200px; }
    .destination-directory-tools { grid-template-columns: 1fr; gap: 9px; }
    .destination-directory-tools p { text-align: left; }
    .destination-card-grid { grid-template-columns: 1fr; }
    .card-body { padding: 21px; }
    .hero-media { margin-top: 30px; }
    .hero-media img { border-radius: 16px; }
    .policy-card dl { grid-template-columns: 1fr; }
    .author-hero { grid-template-columns: 1fr; text-align: center; }
    .author-hero > img { margin: 0 auto; }
    .author-hero p { margin-left: auto; }
    .site-footer { align-items: flex-start; flex-direction: column; }
    .site-footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
    .site-footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
    .static-page-layout { grid-template-columns: 1fr; gap: 28px; }
    .static-page-layout-no-aside { grid-template-columns: 1fr; }
    .static-page-aside { position: static; }
    .static-page-toc ol { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
