.work-carousel {
    background: #f8fafc;
    padding: 70px 20px;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: -20px auto 40px;
    color: #555;
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 320px;
    object-fit: center;
    display: block;
}

/* Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border: none;
    font-size: 26px;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
}

.carousel-btn.prev {
    left: 15px;
}

.carousel-btn.next {
    right: 15px;
}

/* Mobile */
@media (max-width: 768px) {
    .carousel-slide img {
        height: 260px;
    }
}