

.carousel-wrapper {
    position: relative;
    width: 100%;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}

.owl-carousel {
    width: 100%;
}

.owl-carousel .item {
    height: 366px;
    border-radius: 8px;
    overflow: hidden;
    padding: 0 10px;
}

.owl-carousel .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

@media (min-width: 992px) {
    .owl-carousel .owl-stage {
        display: flex;
        justify-content: center;
    }
    
    .owl-carousel .owl-item {
        width: calc(33.333% - 20px) !important;
        max-width: calc(33.333% - 20px) !important;
    }
}

.arrow-carousel {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 10;
}

.arrow-carousel.next-arrow {
    right: 0;
    left: auto;
}

.arrow-carousel.prev-arrow {
    left: 0;
    right: auto;
    transform: translateY(-50%) rotate(180deg);
    display: block;
}

@media (max-width: 992px) {
    .owl-carousel .item {
        height: 305px;
    }
    
    .arrow-carousel {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .carousel-wrapper {
        padding: 0 40px;
    }
    
    .owl-carousel .item {
        height: 280px;
    }
    
    .arrow-carousel {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .carousel-wrapper {
        padding: 0 30px;
    }
    
    .owl-carousel .item {
        height: 220px;
    }
}
