:root {
    --site-bg: #fff;
    --site-card: #fff;
    --site-text: #111;
    --site-primary: #4a90d9;
    --site-accent: #4a90d9;
    --site-secondary: #eef4fb;
    --site-muted: #6b7280;
    --site-border: #e5e8eb;
    --site-header-bg: #fff;
    --site-header-text: #6b7280;
    --site-header-hover: #4a90d9;
    --site-footer-bg: #f9fafb;
    --site-section-bg-soft: #f9fafb;
    --site-section-bg-accent: linear-gradient(135deg, #4a90d9, #3574b8);
    --site-section-bg-dark: linear-gradient(135deg, #111, #1e293b);
    --site-button-bg: #4a90d9;
    --site-button-text: #fff;
    --site-button-border: #4a90d9;
    --site-button-shadow: 0 8px 24px rgba(74, 144, 217, 0.18);
}

body {
    background: var(--site-bg);
    color: var(--site-text);
}

.site-shell {}

.site-header {
    background: var(--site-header-bg);
    border-bottom: 1px solid var(--site-border);
}

.site-header__inner {}

.site-brand__text {
    color: #111;
    font-weight: 800;
}

.site-nav {}

.site-nav a {
    color: var(--site-header-text);
}

.site-nav a:hover {
    background: var(--site-secondary);
    color: var(--site-primary);
}

.site-main {}

.site-page-grid {}

.site-row {}

.site-column {}

.site-hero {
    background: #f5f8fc;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(74, 144, 217, 0.06);
}

.site-hero h1 {
    color: #111;
    font-weight: 900;
}

.site-custom-section {}

.site-custom-section--align-center {
    text-align: center;
}

.site-custom-section--bg-soft {
    background: var(--site-section-bg-soft);
}

.site-custom-section--bg-accent {
    background: var(--site-section-bg-accent);
    color: #fff;
}

.site-custom-section--bg-dark {
    background: var(--site-section-bg-dark);
    color: #fff;
}

.site-custom-section--intro_hero {
    background: #f5f8fc;
    color: #111;
}

.site-custom-section--intro_hero h2 {
    color: #111;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.site-custom-section--intro_hero .site-muted-copy {
    color: #555;
    font-size: 18px;
}

.site-custom-section--cta_banner {
    background: linear-gradient(135deg, #4a90d9, #3574b8);
    color: #fff;
}

.site-custom-section--cta_banner h2 {
    color: #fff;
}

.site-custom-section__eyebrow {
    background: rgba(74, 144, 217, 0.1);
    color: #3574b8;
}

.site-custom-section__hero {}

.site-custom-section__copy {}

.site-custom-section__items {}

.site-custom-section__items--grid {}

.site-custom-section__item {
    background: #fff;
    border: 1px solid var(--site-border);
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.site-custom-section__item:hover {
    box-shadow: 0 16px 40px rgba(74, 144, 217, 0.12);
}

.site-custom-section__item strong {
    color: #111;
    font-size: 18px;
}

.site-custom-section__item p {
    color: var(--site-muted);
}

.site-link-chip {
    background: #4a90d9;
    color: #fff;
    border: 1px solid #4a90d9;
    box-shadow: 0 8px 24px rgba(74, 144, 217, 0.18);
}

.site-link-chip:hover {
    background: #3574b8;
    border-color: #3574b8;
    box-shadow: 0 12px 32px rgba(74, 144, 217, 0.28);
}

.site-card {
    background: var(--site-card);
    border: 1px solid var(--site-border);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.site-card:hover {
    box-shadow: 0 16px 40px rgba(74, 144, 217, 0.1);
}

.site-muted-copy {
    color: var(--site-muted);
}

.site-section {}

.site-post-list {}

.site-post-item {
    border-bottom: 1px solid var(--site-border);
    padding-bottom: 20px;
}

.site-post-item__title {
    color: #111;
    font-weight: 800;
    font-size: 20px;
}

.site-post-item__meta {
    color: var(--site-muted);
}

.site-post-item__summary {
    color: var(--site-muted);
}

.site-side-list {}

.site-side-list a {
    background: #f5f8fc;
    border-radius: 14px;
}

.site-category-grid {}

.site-category-card {
    background: linear-gradient(135deg, #eef4fb 0%, #f0e6ff 50%, #fce4ec 100%);
    border: 1px solid var(--site-border);
    border-radius: 18px;
}

.site-empty-box {
    border: 1px dashed var(--site-border);
    background: #f9fafb;
    border-radius: 18px;
}

.site-article {
    background: var(--site-card);
    border: 1px solid var(--site-border);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.site-article__title {
    color: #111;
    font-weight: 900;
}

.site-article__body {
    color: #222;
    line-height: 1.9;
}

.site-article__footer {
    border-top: 1px solid var(--site-border);
}

.site-post-article {}

.site-policy {
    background: var(--site-card);
    border: 1px solid var(--site-border);
    border-radius: 20px;
}

.site-footer {
    background: var(--site-footer-bg);
    border-top: 1px solid var(--site-border);
}

.site-footer__inner {
    color: var(--site-muted);
}

.site-footer__nav {}

@media (max-width: 920px) {
    .site-hero h1 {
        font-size: 28px;
    }

    .site-custom-section--intro_hero h2 {
        font-size: clamp(32px, 8vw, 48px);
    }
}
