html {
    box-sizing: border-box;
    overflow-y: scroll;
    /* 스크롤바 점프 방지 */
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body.we-body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #F3F3F5;
    color: #1F1F1F;
}

/* 컨테이너 공통 */
.we-main {
    padding: 32px 16px 48px;
}

.we-container {
    max-width: 960px;
    margin: 0 auto;
}

/* 헤더 */
.we-site-header {
    background: #FFFFFF;
    border-bottom: 1px solid #E5E5EA;
}

.we-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.we-site-title a {
    font-weight: 600;
    text-decoration: none;
    color: #111827;
}

.we-site-tagline {
    display: block;
    font-size: 0.8rem;
    color: #6B7280;
    margin-top: 2px;
}

.we-primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 16px;
}

.we-primary-menu a {
    text-decoration: none;
    font-size: 1rem;
    color: #4B5563;
    padding: 4px 8px;
    border-radius: 999px;
}

.we-primary-menu .current-menu-item>a,
.we-primary-menu a:hover {
    background: #F3E4DA;
    color: #B4532A;
}

/* 푸터 */
.we-site-footer {
    border-top: 1px solid #E5E5EA;
    background: #FFFFFF;
}

.we-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px;
    font-size: 0.85rem;
    color: #6B7280;
    text-align: center;
}

/* 버튼 공통 */
.we-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid #D1D5DB;
    background: #FFFFFF;
    color: #374151;
    text-decoration: none;
    font-size: 0.85rem;
}

.we-button--ghost {
    background: transparent;
}