.nyr-image-product-carousel__grid {
    display: flex;
    gap: 40px;
    flex-direction: column;

    @media screen and (min-width: 800px) {
        flex-direction: row;
        align-items: center;

        &.carousel-first {
            flex-direction: row-reverse;
        }

        .nyr-image-product-carousel__content {
            width: 50%;
            flex-shrink: 0;
            flex-grow: 0;
        }
        .nyr-image-product-carousel__image {
            flex-grow: 1;
        }
    }
}

.nyr-image-product-carousel__image {
    position: relative;
}

.nyr-image-product-carousel__image-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    position: absolute;
    inset: 0;
    padding: 20px;
    z-index: 1;

    @media screen and (min-width: 800px) {
        padding: 60px 20px;
    }

    &.middle {
        justify-content: center;
    }

    &.bottom {
        justify-content: flex-end;
    }
}

.nyr-image-product-carousel__content {
    text-align: center;
}

.nyr-image-product-carousel__content-carousel {
    margin-top: 40px;
}