@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@700&display=swap');

.serif { font-family: 'Noto Serif KR', serif; }

.nav-glass { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); border-bottom: 1px solid #eee; }

.story-intro {
    background-image: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)), url('o-1.jpg');
    background-size: cover;
    background-position: center;
}

.story-content h3 { letter-spacing: -0.02em; }

/* 이미지 스택 애니메이션 */
.image-stack img {
    transition: transform 0.5s ease;
}
.image-stack:hover img {
    transform: scale(1.02);
}