/* Design Direction 3b: Minimalist Editorial (미니멀 에디토리얼) */

:root {
    --bg-dark: #0B0B0C;
    --text-light: #F6F5F2;
    --text-muted: rgba(246, 245, 242, 0.5);
    --pink-accent: #FF3F7F;
    --border-color: rgba(246, 245, 242, 0.1);
    --font-serif: 'Playfair Display', 'Noto Serif KR', serif;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-sans);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

.minimal-wrapper {
    width: 100%;
    max-width: 940px;
    padding: 60px 40px;
    box-sizing: border-box;
}

/* Nav */
.min-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
    margin-bottom: 60px;
}

.brand {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pink-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--pink-accent);
    box-shadow: 0 0 8px var(--pink-accent);
}

.menu {
    display: flex;
    gap: 32px;
}

.menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: var(--text-light);
}

/* Header */
.min-header {
    margin-bottom: 60px;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 18px;
}

.issue-no {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 16px;
    color: var(--text-muted);
}

.min-header h1 {
    font-family: var(--font-serif);
    font-size: 72px;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin: 0;
    line-height: 0.95;
}

.header-divider {
    height: 1px;
    background-color: var(--border-color);
}

/* Content */
.min-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.lead-section h2 {
    font-family: var(--font-serif);
    font-size: 34px;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
    line-height: 1.3;
}

.lead-paragraph {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-muted);
    text-align: justify;
}

.sections-list {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.list-item {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.list-item:hover {
    transform: translateX(6px);
}

.num {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 18px;
    color: var(--pink-accent);
}

.item-text h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.item-text p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Footer */
.min-footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.min-footer .links {
    display: flex;
    gap: 24px;
}

.min-footer .links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.min-footer .links a:hover {
    color: var(--text-light);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .minimal-wrapper {
        padding: 30px 20px;
    }

    .min-nav {
        margin-bottom: 40px;
    }

    .min-header h1 {
        font-size: 40px;
    }

    .min-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
