.sec-spdv {
    padding: 60px 0;
}

.sec-spdv__header {
    text-align: center;
    margin-bottom: 40px;
}

.sec-spdv__title {
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 700;
    color: #222;
    position: relative;
    display: inline-block;
}

.sec-spdv__grid {
    display: flex;
    gap: 20px;
}

.sec-spdv__card {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.sec-spdv__card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 3 / 2;
    transition: transform 0.4s ease;
}

.sec-spdv__card:hover .sec-spdv__card-bg {
    transform: scale(1.05);
}

.sec-spdv__card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #e8d44d;
    color: #222;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 0 12px 0 0;
    white-space: nowrap;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.sec-spdv__card:hover .sec-spdv__card-label {
    opacity: 0;
}

.sec-spdv__card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
}

.sec-spdv__card:hover .sec-spdv__card-overlay {
    opacity: 1;
}

.sec-spdv__card-list {
    list-style: none;
    padding: 0 20px;
    margin: 0;
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 24px;
}

.sec-spdv__card-list li {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 6px 0;
    transform: translateY(10px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sec-spdv__card-list li a {
    color: inherit;
    text-decoration: none;
}

.sec-spdv__card-list li a:hover {
    color: #e8d44d;
}

.sec-spdv__card:hover .sec-spdv__card-list li {
    opacity: 1;
    transform: translateY(0);
}

.sec-spdv__card:hover .sec-spdv__card-list li:nth-child(1) { transition-delay: 0.05s; }
.sec-spdv__card:hover .sec-spdv__card-list li:nth-child(2) { transition-delay: 0.1s; }
.sec-spdv__card:hover .sec-spdv__card-list li:nth-child(3) { transition-delay: 0.15s; }
.sec-spdv__card:hover .sec-spdv__card-list li:nth-child(4) { transition-delay: 0.2s; }
.sec-spdv__card:hover .sec-spdv__card-list li:nth-child(5) { transition-delay: 0.25s; }
.sec-spdv__card:hover .sec-spdv__card-list li:nth-child(6) { transition-delay: 0.3s; }

/* Mobile swiper - hidden on desktop */
.sec-spdv__swiper {
    display: none;
}

@media (max-width: 768px) {
    .sec-spdv {
        padding: 40px 0;
        overflow: visible;
    }

    .sec-spdv {
        padding: 50px 0;
    }

    .sec-spdv__header {
        margin-bottom: 30px;
    }

    .sec-spdv__title {
        font-size: 24px;
    }

    .sec-spdv__grid {
        display: none;
    }

    .sec-spdv__swiper {
        display: block;
        overflow: visible;
        padding-bottom: 40px;
    }

    .sec-spdv__swiper .swiper-slide {
        width: 82%;
        transition: transform 0.4s ease, opacity 0.4s ease;
        opacity: 0.5;
        transform: scale(0.85);
    }

    .sec-spdv__swiper .swiper-slide-active {
        opacity: 1;
        transform: scale(1);
        z-index: 2;
    }

    .sec-spdv__swiper .sec-spdv__card {
        border-radius: 12px;
    }

    .sec-spdv__swiper .sec-spdv__card-label {
        font-size: 13px;
        padding: 8px 20px;
    }

    .sec-spdv__swiper .sec-spdv__card-list {
        gap: 2px 16px;
        padding: 0 16px;
    }

    .sec-spdv__swiper .sec-spdv__card-list li {
        font-size: 12px;
        padding: 4px 0;
    }

    .sec-spdv__swiper .swiper-pagination {
        bottom: 0;
    }

    .sec-spdv__swiper .swiper-pagination-bullet {
        background: #e8d44d;
        opacity: 0.4;
        width: 8px;
        height: 8px;
    }

    .sec-spdv__swiper .swiper-pagination-bullet-active {
        opacity: 1;
        width: 24px;
        border-radius: 4px;
    }

    .sec-spdv__swiper .sec-spdv__card.is-active .sec-spdv__card-overlay {
        opacity: 1;
    }

    .sec-spdv__swiper .sec-spdv__card.is-active .sec-spdv__card-label {
        opacity: 0;
    }

    .sec-spdv__swiper .sec-spdv__card.is-active .sec-spdv__card-list li {
        opacity: 1;
        transform: translateY(0);
    }
}
