/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #reviews-1088 {
        padding: var(--sectionPadding);
        background-color: #f7f7f7;
    }

    #reviews-1088 .cs-container {
        width: 100%;
        /* changes to 1280px at tablet */
        max-width: 34.375rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    
    #reviews-1088 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        max-width: 39.375rem;
        /* margin-right: auto; */
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }

    #reviews-1088 .cs-title {
        max-width: 25ch;
        margin: 0;
    }
    
    #reviews-1088 .cs-topper {
        width: 100%;
    }
}

@media only screen and (min-width: 48rem) {
    #reviews-1088 .cs-container {
        max-width: 80rem;
    }
}

/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #reviews-1088 {
        background-color: rgba(0, 0, 0, 0.2);
    }

    body.dark-mode #reviews-1088 .cs-title,
    body.dark-mode #reviews-1088 .cs-text {
            color: var(--bodyTextColorWhite);
        }
}