:root {
    --site-bg: #fff;
    --site-card: #fff;
    --site-text: #111;
    --site-primary: #3b82f6;
    --site-accent: #4f46e5;
    --site-secondary: #eef2ff;
    --site-border: #e0e7ff;
    --site-muted: #6b7280;
    --site-header-bg: #fff;
    --site-header-text: #6b7280;
    --site-header-hover: #3b82f6;
    --site-footer-bg: #f8fafc;
    --site-section-bg-soft: #f8fafc;
    --site-section-bg-accent: linear-gradient(135deg, #3b82f6, #4f46e5);
    --site-section-bg-dark: linear-gradient(135deg, #111827, #1e293b);
    --site-button-bg: #3b82f6;
    --site-button-text: #fff;
    --site-button-border: #3b82f6;
    --site-button-shadow: 0 4px 14px rgba(59, 130, 246, 0.25);
    --site-font-family: "Pretendard", "Segoe UI", "Malgun Gothic", sans-serif;
}

body {
    background: var(--site-bg);
    color: var(--site-text);
}

.site-shell {
    width: min(1100px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    background: var(--site-header-bg);
    border-bottom: 1px solid var(--site-border);
}

.site-header__inner {
    min-height: 64px;
}

.site-brand__text {
    font-weight: 800;
    color: var(--site-accent);
    letter-spacing: -0.02em;
}

.site-nav {
    gap: 4px;
}

.site-nav a {
    color: var(--site-header-text);
    font-weight: 500;
    border-radius: 8px;
    padding: 8px 14px;
    transition: background 0.2s, color 0.2s;
}

.site-nav a:hover {
    background: var(--site-secondary);
    color: var(--site-primary);
}

.site-main {
    padding: 32px 0 56px;
}

.site-page-grid {
    gap: 24px;
}

.site-hero {
    background: linear-gradient(135deg, #eef2ff 0%, #fff 60%);
    border-radius: 20px;
    border: 1px solid var(--site-border);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.06);
}

.site-custom-section {
    border-radius: 16px;
}

.site-custom-section--bg-soft {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
}

.site-custom-section--bg-accent {
    background: linear-gradient(135deg, #3b82f6, #4f46e5);
    color: #fff;
}

.site-custom-section--bg-dark {
    background: linear-gradient(135deg, #111827, #1e293b);
    color: #fff;
}

.site-custom-section--intro_hero {
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 40%, #fff 100%);
    min-height: 60vh;
    border-radius: 0;
}

.site-custom-section--intro_hero h2 {
    color: #111;
    font-weight: 800;
}

.site-custom-section--cta_banner {
    background: linear-gradient(135deg, #3b82f6, #4f46e5);
    color: #fff;
    border-radius: 0;
}

.site-custom-section__eyebrow {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #fff;
    font-weight: 700;
    border-radius: 999px;
    padding: 4px 14px;
}

.site-custom-section__items--grid {
    gap: 20px;
}

.site-custom-section__item {
    background: var(--site-card);
    border: 1px solid var(--site-border);
    border-radius: 14px;
    padding: 20px;
    transition: transform 0.25s, box-shadow 0.25s;
}

.site-custom-section__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.1);
}

.site-link-chip {
    background: var(--site-primary);
    color: #fff;
    border: 1px solid var(--site-primary);
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.25);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.site-link-chip:hover {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.site-card {
    background: var(--site-card);
    border: 1px solid var(--site-border);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.site-muted-copy {
    color: var(--site-muted);
}

.site-section {
    border-radius: 16px;
}

.site-post-list {
    gap: 0;
}

.site-post-item {
    border-bottom: 1px solid var(--site-border);
    padding: 18px 0;
    transition: background 0.2s;
}

.site-post-item__title {
    color: #111;
    font-weight: 700;
}

.site-side-list {
    gap: 10px;
}

.site-side-list a {
    background: #f8fafc;
    border-radius: 10px;
    padding: 12px 14px;
    transition: background 0.2s;
}

.site-category-grid {
    gap: 16px;
}

.site-category-card {
    background: #fff;
    border: 1px solid var(--site-border);
    border-radius: 14px;
    transition: box-shadow 0.25s, transform 0.25s;
}

.site-empty-box {
    background: #f8fafc;
    border: 1px dashed var(--site-border);
    border-radius: 14px;
}

.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: 800;
}

.site-article__body {
    color: var(--site-text);
    line-height: 1.85;
}

.site-post-article {
    background: var(--site-card);
    border: 1px solid var(--site-border);
    border-radius: 20px;
}

.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);
    font-size: 14px;
}

.site-footer__nav {
    gap: 14px;
}

@media (max-width: 920px) {
    .site-custom-section--intro_hero {
        min-height: 45vh;
        padding: 32px 16px;
    }

    .site-custom-section--cta_banner {
        padding: 28px 16px;
    }
}
