.sonni-video-reviews-2026 {
	color: var(--sonni-blue);
	padding: 50px 0;

	@media screen and (min-width: 768px) {
		padding: 70px 0 85px;
	}

    &.grey-background {
        background-color: #F3F3F3;
    }

    &.remove-top-padding {
        padding-top: 0;
    }

	.title {
		margin: 0;
	}

    .description {
        margin: 0;
        margin-top: 16px;

        @media screen and (min-width: 768px) {
            margin-top: 20px;
        }
    }

	.sonni-video-reviews__grid {
		display: grid;
		gap: 15px;

		@media screen and (min-width: 992px) {
			grid-template-columns: repeat(3, 1fr);
			gap: 50px;
		}

		&:not(:empty) {
            margin-top: 45px;
			margin-bottom: 60px;
		}

		.review-stars {
            @media screen and (max-width: 991px) {
				width: 98px;
				height: auto;
			}
		}

		.review-title {
			margin: 0;
			margin-top: 5px;

            @media screen and (min-width: 768px) {
                margin-top: 12px;
            }
		}

		.review-text,
		.name {
			margin: 0;
			margin-top: 9px;

			@media screen and (min-width: 992px) {
				margin-top: 18px;
			}
		}
	}

    .sonni-video-reviews__item {
        background: var(--sonni-white);
        padding: 25px 30px;
        border-radius: 15px;
    }

    .sonni-video-reviews-video__slider {

        &::-webkit-scrollbar {
            display: none;
        }

        &.video-slider__desktop {

            @media screen and (min-width: 768px) {
                display: flex;
                white-space: nowrap;
                overflow-x: scroll;
            }

            .sonni-video-reviews-video__item {
                
                @media screen and (min-width: 768px) {
                    width: calc((100vw - 160px) / 4);
                    flex-shrink: 0;
                }
            }
        }

        @media screen and (max-width: 767px) {
            display: flex;
            white-space: nowrap;
            overflow-x: scroll;
            margin-right: -20px;
        }

        @media screen and (min-width: 768px) {
            display: grid;
            gap: 20px;
            grid-template-columns: repeat(4, 1fr);
        }

        .sonni-video-reviews-video__item {
            position: relative;
            aspect-ratio: 0.66;
            border-radius: 15px;
            overflow: hidden;

            @media screen and (max-width: 767px) {
                width: 320px;
                flex-shrink: 0;
                margin-right: 20px;
            }

            .product-title {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                text-align: center;
                color: var(--sonni-white);
                padding: 16px;
                margin: 0;
            }

            .product-cta {
                position: absolute;
                bottom: 20px;
                left: 50%;
                transform: translateX(-50%);
            }
        }
    }

    .button-container {
        text-align: center;
        margin-top: 44px;

        .button {

            .price-wrapper {
                .original-price {
                    margin-left: 5px;
                    text-decoration: line-through;
                }
            }
        }
    }
}