/* Общий стиль для карусели */
.carousel-blok {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    flex-direction: row;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 100%;
}

.carousel__item {
    min-width: 100%;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    border-radius: 30px;
    padding: 30px;

}

.actions {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.carousel img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.carousel__item .mobile {
    display: none;
}

/* Для мобильных устройств */
@media (max-width: 768px) {
    .carousel__item {
        padding: 10px;
        min-width: 100%;
    }

    .carousel__item img {
        width: 100%;
        height: 75vh;
    }

    .carousel__item .desktop {
        display: none;
    }

    .carousel__item .mobile {
        display: block;
    }
}