/* Main Stylesheet */

:root {
    --site-font: 'Noto Sans KR';
}

@font-face {
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 300;
    font-stretch: 100%;
    font-display: auto;
    src: url('/wp-content/uploads/core-framework/fonts/Noto Sans KR-300.woff2') format('woff2');
}

@font-face {
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    font-display: auto;
    src: url('/wp-content/uploads/core-framework/fonts/Noto Sans KR-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 600;
    font-stretch: 100%;
    font-display: auto;
    src: url('/wp-content/uploads/core-framework/fonts/Noto Sans KR-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 700;
    font-stretch: 100%;
    font-display: auto;
    src: url('/wp-content/uploads/core-framework/fonts/Noto Sans KR-700.woff2') format('woff2');
}

body {
    color: var(--text-body);
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 400;
    line-height: 1.7
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-title);
}

p {
    word-break: keep-all;
    line-height: 1.7;
}

.site-logo {
    height: 36px;
}

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header-content {
    display: flex;
    gap: var(--space-xl);
    align-items: center;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-items {
    display: flex;
    align-items: center;
    gap: var(--space-l);
    color: var(--light);
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.nav-item {
    text-decoration-line: none;
    color: var(--light);
    padding: var(--space-2xs) var(--space-xs);
    font-weight: 300;
    transition: all 0.3s ease;
}

.nav-item:hover {
    background-color: var(--light-10);
    border-radius: var(--radius-xs);
}

.section {
    padding: var(--space-2xl) var(--space-m);
    background-color: var(--bg-body);
}

.section.dark {
    background-color: var(--primary-d-6);
    color: var(--light);
}

.section.dark :is(h1, h2, h3, h4, h5, h6) {
    color: var(--light);
}

.container {
    width: 100%;
    max-width: 1280px;
    padding: var(--space-m);
    margin: 0 auto;
}

.section-title {
    max-width: 900px;
    margin: 0;
}

.section-subtitle {
    max-width: 700px;
    margin: 0;
}

.section-content {
    width: 100%;
    margin-top: var(--space-xl);
}

.btn-group {
    display: flex;
    gap: var(--space-xs);
    align-items: center;
}

.card h3,
.card p,
.card ul {
    margin: 0;
}

.card ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xs);
    list-style-type: none;
    padding-left: 0;
}

.card li {
    display: flex;
    align-items: center;
    font-size: var(--text-s);
    gap: var(--space-2xs);
}