.pd-list {
    width: 85vw;
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
    line-height: 1.2;
}

.pd-list__label {
    color: var(--main-green);
    font-size: 20px;
    letter-spacing: 0.05em;
    margin-bottom: 25px;
}

.pd-list__title {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 30px;
}

.pd-list__desc {
    font-size: 27px;
    margin-bottom: 80px;
}

/* tabs */
.pd-list__tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 48px;
}

.pd-list__tab {
    padding: 10px 24px;
    border: 1px solid var(--main-green);
    border-radius: 999px;
    background: #fff;
    color: var(--main-green);
    font-size: 24px;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.pd-list__tab:hover {
    border-color: var(--main-green);
    color: var(--main-green);
}

.pd-list__tab.is-active {
    border-color: var(--main-green);
    background: var(--main-green);
    color: #fff;
}

/* panels */
.pd-list__panel {
    display: none;
    position: relative;
}

.pd-list__panel.is-active {
    display: block;
}

/* desktop nav arrows */
.pd-list__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: none;
    background-color: transparent;
    cursor: pointer;
    z-index: 5;
}

.pd-list__nav--prev {
    left: -70px;
    background-image: url(/html/images/common/arrow-left-big.png);
}

.pd-list__nav--next {
    right: -70px;
    background-image: url(/html/images/common/arrow-right-big.png);
}

.pd-list__nav.swiper-button-disabled {
    opacity: 0.3;
    cursor: default;
}

/* mobile bottom nav (hidden on desktop) */
.pd-list__mobile-nav {
    display: none;
}

/* swiper */
.pd-swiper {
    overflow: hidden;
}

.swiper-slide {
    /* width: 13.54vw;
    max-width: 260px; */
    width: 260px;
    height: auto;
}

/* card */
.pd-card {
    position: relative;
    background: #eee;
    border-radius: 8px;
    padding: 24px;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pd-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.pd-card__desc {
    font-size: 13px;
    color: #999;
    line-height: 1.5;
    margin-bottom: 16px;
}

.pd-card__thumb {
    margin-top: auto;
}

.pd-card__thumb img {
    width: 100%;
    display: block;
}

/* .pd-card--featured {
    background: #1a1a1a;
}

.pd-card--featured .pd-card__title {
    color: #fff;
} */

.pd-card__next {
    position: absolute;
    right: 20px;
    bottom: -20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--main-green);
    border: none;
    cursor: pointer;
}

.pd-card__next::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    transform: translate(-50%, -50%) rotate(-45deg);
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}


@media (max-width:1400px) {
    .pd-list__tab {
        padding: 8px 20px;
        font-size: 20px;
    }
}



/* ---------------------------------- */
/* mobile (768px 이하)                */
/* ---------------------------------- */
@media (max-width: 768px) {
    .pd-list {
        padding: 48px 20px;
    }

    .pd-list__label {
        font-size: 10px;
        margin-bottom: 10px;
    }

    .pd-list__title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .pd-list__desc {
        font-size: 13px;
        margin-bottom: 28px;
    }

    /* 3 x 2 button grid */
    .pd-list__tabs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .pd-list__tab {
        padding: 8px 12px;
        font-size: 15px;
        white-space: nowrap;
    }

    /* hide desktop side arrows */
    .pd-list__nav {
        display: none;
    }

    /* show bottom arrow + fraction bar */
    .pd-list__mobile-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 24px;
        margin-top: 16px;
    }

    .pd-list__mnav {
        width: 24px;
        height: 24px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        border: none;
        background-color: transparent;
        cursor: pointer;
    }

    .pd-list__mnav--prev {
        background-image: url(/html/images/common/arrow-left-big.png);
    }

    .pd-list__mnav--next {
        background-image: url(/html/images/common/arrow-right-big.png);
    }

    .pd-list__pagination {
        font-size: 14px;
        color: #333;
    }

    .swiper-slide {
        width: 57%;
    }

    .pd-card {
        padding: 16px;
    }
}


@media (max-width:360px) {
    .pd-list__tab {
        padding: 8px 10px;
        font-size: 13px;
    }
}