* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body > main {
    padding-bottom: 0;
}

.campaign-poetic-project {
    position: relative;
    width: 100%;
    color: #fff;
    font-family: 'FuturaLTPro', 'Noto Sans KR', 'Noto Sans JP', sans-serif !important;
}

/* Poetic 기획전 시리즈 네비 — collaboration 상단 nav와 동일한 틀/스타일, 마크업·ID는 완전 분리 */
.campaign-poetic-project .poetic-series-nav,
.campaign-poetic-project-2nd .poetic-series-nav {
    color: #111;
}

/* Vol.1/2: 시리즈 네비는 사이트 헤더 아래 고정, 스크롤 방향에 따라 숨김/표시 */
.campaign-poetic-project .poetic-series-nav-spacer,
.campaign-poetic-project-2nd .poetic-series-nav-spacer {
    width: 100%;
    height: 115px;
    flex-shrink: 0;
    pointer-events: none;
}

.campaign-poetic-project .poetic-series-nav,
.campaign-poetic-project-2nd .poetic-series-nav {
    position: fixed;
    top: var(--poetic-site-header-bottom, 45px);
    left: 0;
    right: 0;
    z-index: 999;
    background-color: #fff;
    transform: translateY(0);
    transition: transform 0.28s ease-out;
    will-change: transform;
}

.campaign-poetic-project .poetic-series-nav.poetic-series-nav--scroll-hidden,
.campaign-poetic-project-2nd .poetic-series-nav.poetic-series-nav--scroll-hidden {
    transform: translateY(-100%);
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .campaign-poetic-project .poetic-series-nav,
    .campaign-poetic-project-2nd .poetic-series-nav {
        transition-duration: 0.01ms;
    }
}

.poetic-series-nav {
    width: 100%;
    height: 115px;
    padding-top: 12px;
    border-bottom: solid 1px var(--border-gray-color);
    position: relative;
    text-align: center;
}

.poetic-series-nav .swiper-container {
    width: 720px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.poetic-series-nav .swiper-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.poetic-series-nav a.swiper-slide {
    display: block;
    flex-shrink: 0;
    width: 60px;
    position: relative;
    padding-top: 60px;
    font-size: var(--fontsize-s);
    text-align: center;
    opacity: .5;
    transition: ease-out .2s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.poetic-series-nav a.swiper-slide ~ a.swiper-slide {
    margin-left: 5px;
}

.poetic-series-nav a.swiper-slide .thumbnail {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-position: center;
    background-size: cover;
    border-radius: 50%;
    position: absolute;
    border: solid 1px var(--border-gray-color);
    top: 0;
    left: 5px;
}

.poetic-series-nav a.swiper-slide:hover,
.poetic-series-nav a.swiper-slide.on {
    opacity: 1;
}

.poetic-series-nav a.swiper-slide.on .thumbnail {
    border-color: var(--gray);
}

.poetic-series-nav a.swiper-slide:nth-child(1) .thumbnail {
    background-image: url('https://d31flwjaqugbgy.cloudfront.net/source/26ss/pp/nav_26ss.jpg');
}

.poetic-series-nav a.swiper-slide:nth-child(2) .thumbnail {
    background-image: url('https://d31flwjaqugbgy.cloudfront.net/source/26ss/pp/nav_announce.jpg');
}

.poetic-series-nav .poetic-series-nav-button.swiper-button-prev:after,
.poetic-series-nav .poetic-series-nav-button.swiper-button-next:after {
    width: 30px;
    height: 30px;
}

.poetic-series-nav .poetic-series-nav-button.swiper-button-prev:after {
    content: "";
    background-image: url('/images/ico-angle-collabo-prev.svg');
}

.poetic-series-nav .poetic-series-nav-button.swiper-button-next:after {
    content: "";
    background-image: url('/images/ico-angle-collabo-next.svg');
}

.poetic-series-nav .poetic-series-nav-button.swiper-button-prev {
    top: 40px;
    left: calc(50% - 400px);
    transform: rotate(180deg);
}

.poetic-series-nav .poetic-series-nav-button.swiper-button-next {
    top: 40px;
    right: calc(50% - 400px);
}

/* 항목이 적을 때는 prev/next 비표시 — 추후 Swiper 연동 시 .poetic-series-nav--compact 제거 */
.poetic-series-nav--compact .poetic-series-nav-button {
    display: none !important;
}


.scroll-down-wrap {
    position: fixed;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    transition: filter 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
}

.scroll-down-wrap.invert {
    filter: invert(1);
}

.scroll-down-wrap.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.campaign-poetic-project .scroll-down-wrap .scroll-down-text {
    color: #fff;
    font-weight: 400;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 0.02em;
    margin-top: 10px;
    margin-bottom: 20px;
}

.campaign-poetic-project .scroll-hint-track {
    position: relative;
    width: 1px;
    height: 20px;
    margin: 0 auto;
    flex-shrink: 0;
    background: transparent;
}

.campaign-poetic-project .scroll-hint-track::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 80%;
    background: rgba(255, 255, 255, 0.28);
    pointer-events: none;
}

.campaign-poetic-project .scroll-hint-track-bar {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 8px;
    background: #ffffff;
    animation: poetic-scroll-hint-line 3s ease-in-out infinite;
}

@keyframes poetic-scroll-hint-line {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .campaign-poetic-project .scroll-hint-track-bar {
        animation: none;
    }
}

.section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
}

.video-wrap {
    width: 100%;
    height: 100%;
}

.video-wrap .video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-wrap .mo-video {
    display: none;
}

.video-wrap .pc-video {
    display: block;
}

.poetic-intro {
    position: relative;
    width: 100%;
    background: #fff;
    color: #111;
    text-align: center;
    padding: 80px 24px 80px;
}

.poetic-intro.poetic-intro--reveal .poetic-intro-title,
.poetic-intro.poetic-intro--reveal .poetic-intro-body {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.75s ease-out, transform 0.75s ease-out;
    will-change: opacity, transform;
}

.poetic-intro.poetic-intro--reveal .poetic-intro-body {
    transition-delay: 0.1s;
}

.poetic-intro.poetic-intro--reveal.is-visible .poetic-intro-title,
.poetic-intro.poetic-intro--reveal.is-visible .poetic-intro-body {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}
.poetic-intro-body .mg{margin-bottom : 60px;}

@media (prefers-reduced-motion: reduce) {
    .poetic-intro.poetic-intro--reveal .poetic-intro-title,
    .poetic-intro.poetic-intro--reveal .poetic-intro-body {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
    }
}

.poetic-intro-title {
    font-weight: 400;
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    margin: 0 auto 2.5rem;
    max-width: 440px;
    text-align: center;
}

.poetic-intro-body {
    max-width: 440px;
    margin: 0 auto;
}

.poetic-intro-p {
    font-weight: 400;
    font-size: 11px;
    line-height: 1.85;
    margin: 0 0 1.75rem;
    word-break: keep-all;
}

.poetic-intro-p-pc {
    display: block;
}

.poetic-intro-p-mo {
    display: none;
}

.poetic-intro-p:last-child {
    margin-bottom: 0;
}

.poetic-gallery {
    position: relative;
    width: 100%;
    background: #fff;
    padding: 0 0 80px;
}

.poetic-gallery-inner {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 48px;
}

.poetic-gallery-stack {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.poetic-gallery-cta {
    padding-top: 120px;
    text-align: center;
}

.poetic-gallery-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35em;
    color: #111;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.01em;
    text-decoration: none;
}

.poetic-gallery-link:hover,
.poetic-gallery-link:focus-visible {
    text-decoration: none;
    opacity: 0.75;
}

.poetic-gallery-link--underlined,
.poetic-gallery-link--underlined:hover,
.poetic-gallery-link--underlined:focus-visible {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.poetic-gallery-link-chevron {
    font-weight: 400;
    line-height: 1;
}

.poetic-gallery-item {
    margin: 0;
    padding: 0;
}

.poetic-gallery-item img {
    display: block;
    width: 100%;
    height: auto;
}

/* Poetic Project 2nd — PC: 2열 / 풀폭 / 무간격 하단 2열, MO: 단일 열 80px 간격 */
.poetic-2nd-media {
    position: relative;
    width: 100%;
    background: #fff;
    color: #111;
    padding: 0 0 80px;
}

.poetic-2nd-media-inner {
    width: 100%;
    margin: 0 auto;
}

.poetic-2nd-row {
    margin: 0;
    padding: 0;
}

.poetic-2nd-row--cols {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
}

.poetic-2nd-figure {
    margin: 0;
    padding: 0;
    line-height: 0;
}

.poetic-2nd-figure--half {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
}

.poetic-2nd-figure--full {
    width: 100%;
}

.poetic-2nd-figure img {
    display: block;
    width: 100%;
    height: auto;
}

.poetic-2nd-row--after-gap {
    margin: 200px 0;
}

.poetic-2nd-row--top-gap {
    margin-top: 200px;
    margin-bottom: 0;
}

.poetic-2nd-row--flush {
    margin-top: 0 !important;
}

.poetic-2nd-products {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 20px 0 0;
}

.poetic-2nd-products-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    color: #111;
}

.poetic-2nd-products-item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.poetic-2nd-products-name {
    display: block;
    margin-top: 10px;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
}

.poetic-2nd-outro .poetic-2nd-cta {
    padding-top: 120px;
    text-align: center;
}
section.poetic-intro.poetic-2nd-midtext{
    padding: 80px 24px 0 24px;
}
.poetic-2nd-outro-image {
    display: inline-block;
    width: min(100%, 720px);
    padding-top: 200px;
    text-align: center;
}

.poetic-2nd-outro-image img {
    display: block;
    width: 100%;
    height: auto;
}

.poetic-2nd-intro .poetic-intro-title,
.poetic-2nd-intro .poetic-intro-body,
.poetic-2nd-outro .poetic-intro-body {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.poetic-2nd-intro .poetic-intro-p,
.poetic-2nd-outro .poetic-intro-p {
    font-weight: 400;
    font-size: 11px;
    line-height: 1.9;
}

.poetic-2nd-intro .poetic-intro-title {
    font-size: 13px;
}

.poetic-2nd-cta .poetic-gallery-link {
    font-weight: 400;
    font-size: 18px;
}

@media (max-width: 768px) {
    .campaign-poetic-project .poetic-series-nav-spacer,
    .campaign-poetic-project-2nd .poetic-series-nav-spacer {
        height: 111px;
    }

    .poetic-series-nav {
        height: 111px;
        padding-top: 10px;
    }

    .poetic-series-nav .swiper-container {
        width: 100%;
        padding: 0 15px;
    }

    .poetic-series-nav .poetic-series-nav-button.swiper-button-prev,
    .poetic-series-nav .poetic-series-nav-button.swiper-button-next {
        display: none;
    }

    .video-wrap .pc-video {
        display: none;
    }

    .video-wrap .mo-video {
        display: block;
    }

    body > main.campaign-poetic-project,
    body > main.campaign-poetic-project-2nd {
        overflow: visible;
    }

    .scroll-down-wrap {
        bottom: 20px;
    }

    .section {
        height: 100vh;
    }

    .poetic-intro {
        padding: 80px 20px 80px;
    }

    .poetic-gallery {
        padding-bottom: 80px;
    }

    .poetic-gallery-inner {
        max-width: none;
        padding: 0;
    }

    .poetic-intro-p-pc {
        display: none;
    }

    .poetic-intro-p-mo {
        display: block;
    }

    .poetic-gallery-cta {
        padding-top: 60px;
    }
    .poetic-gallery-link{
        font-size: 15px;
    }
    .mg{margin-bottom : 40px;}

    .poetic-2nd-row--cols {
        flex-direction: column;
    }

    .poetic-2nd-figure--half {
        flex: none;
        width: 100%;
        max-width: none;
    }

    .poetic-2nd-row--after-gap {
        margin-top: 0;
    }

    .poetic-2nd-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 10px;
        column-gap: 0;
    }
    .poetic-2nd-row--top-gap{
        margin-top: 20px;
    }

    .poetic-2nd-row--cols .poetic-2nd-figure + .poetic-2nd-figure {
        margin-top: 80px;
    }

    .poetic-2nd-outro .poetic-2nd-cta {
        padding-top: 60px;
    }
    .poetic-2nd-figure--full{
        margin-bottom: 80px;
    }
    .poetic-2nd-outro {
        padding-left: 0;
        padding-right: 0;
        padding-top: 80px;
    }

    .poetic-2nd-outro .poetic-intro-body,
    .poetic-2nd-outro .poetic-2nd-cta {
        padding-left: 20px;
        padding-right: 20px;
    }

    .poetic-2nd-outro-image {
        display: block;
        max-width: 100%;
        width: 100%;
        padding-top: 80px;
        margin-left: 0;
        margin-right: 0;
    }

    .poetic-2nd-cta .poetic-gallery-link {
        font-size: 13px;
    }
    .poetic-2nd-media{
        padding : 0;
    }

    .poetic-2nd-intro .poetic-intro-title,
    .poetic-2nd-intro .poetic-intro-body,
    .poetic-2nd-outro .poetic-intro-body {
        max-width: 100%;
    }
}

/* ============================================================
 * Poetic Project Vol.2 — carousel section
 * ============================================================ */
.poetic-2nd-carousel-section {
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding-bottom: 200px;
}

.poetic-2nd-carousel {
    position: relative;
    width: 100%;
    background: #000;
}

.poetic-2nd-carousel .swiper-wrapper {
    align-items: stretch;
}

.poetic-2nd-carousel-slide {
    overflow: hidden;
}

.poetic-2nd-carousel-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* pc-only / mo-only 전환 */
.poetic-2nd-carousel-media.pc-only { display: block; }
.poetic-2nd-carousel-media.mo-only { display: none; }

@media (max-width: 1024px) {
    .poetic-2nd-carousel-media.pc-only { display: none; }
    .poetic-2nd-carousel-media.mo-only { display: block; }
    .poetic-2nd-carousel-slide { aspect-ratio: 3 / 4; }
}

/* nav — landing-swiper-nav 공통 패턴을 poetic-2nd-carousel 컨텍스트로 재정의 */
.poetic-2nd-carousel .poetic-2nd-carousel-nav {
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 11;
    width: 15px;
    height: 30px;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    font-size: 0;
    line-height: 0;
    color: transparent;
    overflow: visible;
}
.poetic-2nd-carousel .poetic-2nd-carousel-nav--prev { left: 23px; }
.poetic-2nd-carousel .poetic-2nd-carousel-nav--next { right: 23px; }
.poetic-2nd-carousel .poetic-2nd-carousel-nav.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}
.poetic-2nd-carousel .poetic-2nd-carousel-nav::before,
.poetic-2nd-carousel .poetic-2nd-carousel-nav::after {
    content: '';
    position: absolute;
    width: 1px;
    background-color: #fff;
}
/* next (>) */
.poetic-2nd-carousel .poetic-2nd-carousel-nav--next::before {
    right: 2px;
    top: 50%;
    height: 12px;
    margin-top: -12px;
    transform-origin: bottom center;
    transform: rotate(-45deg);
}
.poetic-2nd-carousel .poetic-2nd-carousel-nav--next::after {
    right: 2px;
    top: 50%;
    height: 12px;
    transform-origin: top center;
    transform: rotate(45deg);
}
/* prev (<) */
.poetic-2nd-carousel .poetic-2nd-carousel-nav--prev::before {
    left: 2px;
    top: 50%;
    height: 12px;
    margin-top: -12px;
    transform-origin: bottom center;
    transform: rotate(45deg);
}
.poetic-2nd-carousel .poetic-2nd-carousel-nav--prev::after {
    left: 2px;
    top: 50%;
    height: 12px;
    transform-origin: top center;
    transform: rotate(-45deg);
}

@media (max-width: 1024px) {
    .poetic-2nd-carousel-section { padding-bottom: 80px; }
}
