/* Design Direction 1b: Cover Story (대담한 매거진 표지형) */

:root {
    --bg-color: #EC6B87;
    --text-color: #FBF3EC;
    --dark-accent: #2A1418;
    --photo-bg: #F2A0B4;
    --font-serif: 'Noto Serif KR', serif;
    --font-display: 'Instrument Serif', serif;
    --font-mono: ui-monospace, Menlo, monospace;
}

body {
    margin: 0;
    padding: 40px 20px;
    background-color: var(--dark-accent);
    color: var(--text-color);
    font-family: var(--font-serif);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.cover-container {
    width: 100%;
    max-width: 940px;
    background-color: var(--bg-color);
    border: 1px solid rgba(251, 243, 236, 0.25);
    box-shadow: 0 10px 40px rgba(42, 20, 24, 0.4);
    overflow: hidden;
    position: relative;
}

/* Header */
.cover-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    border-bottom: 1px solid rgba(251, 243, 236, 0.4);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
}

/* Cover Grid */
.cover-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    padding: 40px 40px 0;
}

.info-block {
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding-top: 8px;
}

.special-issue-tag {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 24px;
    letter-spacing: 0.02em;
    color: var(--text-color);
}

.article-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    gap: 14px;
    align-items: baseline;
    cursor: pointer;
}

.highlight-num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 26px;
    color: var(--dark-accent);
}

.highlight-title {
    margin: 0;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 700;
    transition: transform 0.2s ease, color 0.2s ease;
}

.highlight-title.secondary {
    font-weight: 500;
    color: rgba(251, 243, 236, 0.92);
}

.highlight-item:hover .highlight-title {
    transform: translateX(6px);
    color: var(--dark-accent);
}

/* Circular Sticker */
.sticker {
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background-color: var(--dark-accent);
    color: var(--bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    transform: rotate(-9deg);
    margin-top: 4px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(42, 20, 24, 0.3);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sticker:hover {
    transform: rotate(5deg) scale(1.08);
}

.sticker-small {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 15px;
}

.sticker-main {
    font-size: 20px;
    font-weight: 700;
}

.sticker-link {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.1em;
}

/* Photo Block */
.photo-block {
    position: relative;
}

.cover-photo {
    position: relative;
    height: 560px;
    background: repeating-linear-gradient(135deg, rgba(42, 20, 24, 0.16) 0 12px, rgba(42, 20, 24, 0) 12px 26px), var(--photo-bg);
    border: 1px solid rgba(42, 20, 24, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.cover-photo:hover {
    transform: scale(1.005);
    filter: saturate(1.1);
}

.photo-placeholder-text {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: rgba(42, 20, 24, 0.6);
    text-align: center;
    line-height: 1.6;
}

.photo-badge {
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--text-color);
    color: var(--dark-accent);
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.08em;
    padding: 6px 12px;
}

/* Giant Typography */
.giant-typo-container {
    padding: 0 24px 8px;
    margin-top: -58px;
    position: relative;
    pointer-events: none;
}

.giant-typo {
    margin: 0;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 168px;
    line-height: 1;
    letter-spacing: -0.01em;
    color: var(--text-color);
    text-shadow: 4px 4px 0 rgba(42, 20, 24, 0.28);
    white-space: nowrap;
}

/* Footer */
.cover-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    border-top: 1px solid rgba(251, 243, 236, 0.4);
    font-size: 11px;
    font-weight: 500;
}

.footer-left {
    font-family: var(--font-mono);
    letter-spacing: 0.14em;
}

.footer-right {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .cover-header {
        padding: 12px 20px;
    }

    .cover-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px 20px 0;
    }

    .photo-block {
        order: -1;
    }

    .cover-photo {
        height: 320px;
    }

    .giant-typo-container {
        margin-top: -30px;
        overflow: hidden;
    }

    .giant-typo {
        font-size: 100px;
        text-align: center;
    }

    .cover-footer {
        padding: 14px 20px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
