.works-section {
    margin-top: 40px;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.works-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Обёртка */
.carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

/* Лента */
.carousel-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: scroll 35s linear infinite;
}

/* Пауза при наведении */
.carousel-wrapper:hover .carousel-track {
    animation-play-state: paused;
}

/* Элемент */
.carousel-item-s {
    width: 260px;
    height: 180px;
    border-radius: 14px;
    overflow: hidden;
    background: #f3f6fa;
    flex-shrink: 0;
}

.carousel-item-s img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Анимация */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .carousel-wrapper {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .carousel-track {
        animation: none;
        padding-bottom: 10px;
    }

    .carousel-item-s {
        scroll-snap-align: center;
        width: 75vw;
        height: 200px;
    }
}