:root {
    --site-bg: #fff;
    --site-card: #fff;
    --site-text: #111827;
    --site-primary: #7c3aed;
    --site-accent: #8b5cf6;
    --site-secondary: #f5f3ff;
    --site-border: #e9d5ff;
    --site-muted: #6b7280;
    --site-header-bg: #fff;
    --site-header-text: #6b7280;
    --site-header-hover: #7c3aed;
    --site-footer-bg: #faf5ff;
    --site-section-bg-soft: #faf5ff;
    --site-section-bg-accent: linear-gradient(135deg, #7c3aed, #8b5cf6);
    --site-section-bg-dark: linear-gradient(135deg, #1e1b4b, #312e81);
    --site-button-bg: #7c3aed;
    --site-button-text: #fff;
    --site-button-border: #7c3aed;
    --site-button-shadow: 0 4px 14px rgba(124, 58, 237, 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: #7c3aed;
    letter-spacing: -0.02em;
}

.site-nav {
    gap: 4px;
}

.site-nav a {
    color: var(--site-header-text);
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 999px;
    transition: background 0.2s, color 0.2s;
}

.site-nav a:hover {
    background: #f5f3ff;
    color: #7c3aed;
}

.site-main {
    padding: 32px 0 56px;
}

.site-page-grid {
    gap: 24px;
}

.site-hero {
    background: linear-gradient(135deg, #f5f3ff 0%, #fff 60%);
    border-radius: 22px;
    border: 1px solid var(--site-border);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.06);
}

.site-custom-section {
    border-radius: 16px;
}

.site-custom-section--bg-soft {
    background: #faf5ff;
    border: 1px solid #f3e8ff;
}

.site-custom-section--bg-accent {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    color: #fff;
}

.site-custom-section--bg-dark {
    background: linear-gradient(135deg, #1e1b4b, #312e81);
    color: #fff;
}

.site-custom-section--intro_hero {
    background: #f5f3ff;
    min-height: 60vh;
    border-radius: 0;
}

.site-custom-section--intro_hero h2 {
    color: #111827;
    font-weight: 800;
}

.site-custom-section--cta_banner {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    color: #fff;
    border-radius: 0;
}

.site-custom-section__eyebrow {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
    font-weight: 700;
    border-radius: 999px;
}

.site-custom-section__items--grid {
    gap: 18px;
}

.site-custom-section__item {
    background: var(--site-card);
    border: 1px solid var(--site-border);
    border-radius: 16px;
    padding: 20px;
    transition: transform 0.25s, box-shadow 0.25s;
}

.site-custom-section__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(124, 58, 237, 0.1);
}

.site-link-chip {
    background: #7c3aed;
    color: #fff;
    border: 1px solid #7c3aed;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.25);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.site-link-chip:hover {
    background: #6d28d9;
    border-color: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.site-card {
    background: var(--site-card);
    border: 1px solid var(--site-border);
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.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;
}

.site-post-item__title {
    color: #111827;
    font-weight: 700;
}

.site-post-item__meta {
    color: #7c3aed;
}

.site-side-list {
    gap: 10px;
}

.site-side-list a {
    background: #f5f3ff;
    border-radius: 12px;
    padding: 12px 14px;
    transition: background 0.2s;
}

.site-side-list a:hover {
    background: #ede9fe;
}

.site-category-grid {
    gap: 16px;
}

.site-category-card {
    background: linear-gradient(180deg, #fff, #f5f3ff);
    border: 1px solid var(--site-border);
    border-radius: 16px;
}

.site-empty-box {
    background: #faf5ff;
    border: 1px dashed var(--site-border);
    border-radius: 16px;
}

.site-article {
    background: var(--site-card);
    border: 1px solid var(--site-border);
    border-radius: 22px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.site-article__title {
    color: #111827;
    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: 22px;
}

.site-policy {
    background: var(--site-card);
    border: 1px solid var(--site-border);
    border-radius: 22px;
}

.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;
}

.site-footer__nav a {
    color: var(--site-muted);
}

.site-footer__nav a:hover {
    color: #7c3aed;
}

@media (max-width: 920px) {
    .site-custom-section--intro_hero {
        min-height: 45vh;
        padding: 32px 16px;
    }

    .site-custom-section--cta_banner {
        padding: 28px 16px;
    }
}
