.wsc-section {
    width: 100%;
    padding: 20px 0 50px;
}

.wsc-heading {
    padding: 0 5vw 20px;
}

.wsc-heading h2 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: clamp(30px, 4vw, 54px);
    font-weight: 400;
}

.wsc-carousel {
    position: relative;
    width: 100%;
}

.wsc-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 10px 5vw 30px;
}

.wsc-track::-webkit-scrollbar {
    display: none;
}

.wsc-card {
    position: relative;
    flex: 0 0 min(72vw, 850px);
    height: 520px;
    overflow: hidden;
    scroll-snap-align: center;
    text-decoration: none;
    color: #fff;
    background: #ddd;
    display: block;
}

.wsc-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s cubic-bezier(.2,.7,.2,1);
}

.wsc-card:hover img {
    transform: scale(1.045);
}

.wsc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.68) 0%,
        rgba(0,0,0,.15) 48%,
        rgba(0,0,0,0) 72%
    );
    pointer-events: none;
}

.wsc-content {
    position: absolute;
    left: 36px;
    right: 36px;
    bottom: 32px;
    z-index: 2;
}

.wsc-meta {
    font-family: Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: .88;
}

.wsc-content h3 {
    margin: 0 0 10px;
    color: #fff;
    font-family: Georgia, serif;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.05;
    font-weight: 400;
}

.wsc-link {
    font-family: Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}

.wsc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.94);
    color: #111;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(0,0,0,.12);
}

.wsc-prev { left: 24px; }
.wsc-next { right: 24px; }

@media (max-width: 768px) {
    .wsc-card {
        flex-basis: 88vw;
        height: 460px;
    }

    .wsc-content {
        left: 24px;
        right: 24px;
        bottom: 24px;
    }

    .wsc-arrow {
        display: none;
    }

    .wsc-track {
        gap: 16px;
    }
}
