:root {
    --site-bg: #fff;
    --site-card: #fff;
    --site-text: #1a1a1a;
    --site-primary: #84cc16;
    --site-accent: #65a30d;
    --site-secondary: #f0fdf4;
    --site-muted: #6b7280;
    --site-border: #e2e8d4;
    --site-header-bg: #fff;
    --site-header-text: #6b7280;
    --site-header-hover: #65a30d;
    --site-footer-bg: #f9fdf5;
    --site-section-bg-soft: #f9fdf5;
    --site-section-bg-accent: linear-gradient(135deg, #65a30d, #4d7c0f);
    --site-section-bg-dark: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    --site-button-bg: #65a30d;
    --site-button-text: #fff;
    --site-button-border: #65a30d;
    --site-button-shadow: 0 8px 24px rgba(101, 163, 13, 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: var(--site-accent);
    font-weight: 800;
}

.site-nav {}

.site-nav a {
    color: var(--site-header-text);
}

.site-nav a:hover {
    background: var(--site-secondary);
    color: var(--site-accent);
}

.site-main {}

.site-page-grid {}

.site-row {}

.site-column {}

.site-hero {
    background: linear-gradient(135deg, #f0fdf4, #fff);
    border-radius: 20px;
    box-shadow: 0 16px 32px rgba(101, 163, 13, 0.06);
}

.site-hero h1 {
    color: var(--site-text);
}

.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: linear-gradient(135deg, #c6f221 0%, #d4e157 50%, #e8f5c8 100%);
    color: #1a1a1a;
}

.site-custom-section--intro_hero h2 {
    color: #1a1a1a;
}

.site-custom-section--intro_hero .site-muted-copy {
    color: #3d4a2e;
}

.site-custom-section--cta_banner {
    background: linear-gradient(135deg, #65a30d, #4d7c0f);
    color: #fff;
}

.site-custom-section--cta_banner h2 {
    color: #fff;
}

.site-custom-section__eyebrow {
    background: rgba(101, 163, 13, 0.12);
    color: #4d7c0f;
}

.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: 16px;
}

.site-custom-section__item:hover {
    border-color: #bef264;
    box-shadow: 0 12px 32px rgba(101, 163, 13, 0.1);
}

.site-custom-section__item strong {
    color: var(--site-text);
}

.site-custom-section__item p {
    color: var(--site-muted);
}

.site-link-chip {
    background: #65a30d;
    color: #fff;
    border: 1px solid #65a30d;
    box-shadow: 0 8px 24px rgba(101, 163, 13, 0.18);
}

.site-link-chip:hover {
    background: #4d7c0f;
    border-color: #4d7c0f;
    box-shadow: 0 12px 32px rgba(101, 163, 13, 0.28);
}

.site-card {
    background: var(--site-card);
    border: 1px solid var(--site-border);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.site-card:hover {
    box-shadow: 0 12px 32px rgba(101, 163, 13, 0.08);
}

.site-muted-copy {
    color: var(--site-muted);
}

.site-section {}

.site-post-list {}

.site-post-item {
    border-bottom: 1px solid var(--site-border);
}

.site-post-item__title {
    color: var(--site-text);
}

.site-post-item__meta {
    color: var(--site-muted);
}

.site-post-item__summary {
    color: var(--site-muted);
}

.site-side-list {}

.site-side-list a {
    background: #f0fdf4;
    border-radius: 12px;
}

.site-category-grid {}

.site-category-card {
    background: linear-gradient(180deg, #fff, #f0fdf4);
    border: 1px solid var(--site-border);
    border-radius: 16px;
}

.site-empty-box {
    border: 1px dashed var(--site-border);
    background: linear-gradient(180deg, #fff, #f9fdf5);
    border-radius: 16px;
}

.site-article {
    background: var(--site-card);
    border: 1px solid var(--site-border);
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.site-article__title {
    color: var(--site-text);
}

.site-article__body {
    color: var(--site-text);
}

.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: 18px;
}

.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;
    }
}
