/* Review Section */
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #reviews-863 {
        z-index: 1;
        position: relative;
        background: var(--bg01);
        padding: var(--sectionPadding);
    }
    #reviews-863 .cs-container {
        width: 100%;
        margin: auto;
        display: flex;
        max-width: 34.375em;
        align-items: center;
        flex-direction: column;
        gap: clamp(3rem, 6vw, 4rem);
    }
    #reviews-863 .cs-content {
        width: 100%;
        display: flex;
        text-align: center;
        max-width: 56.25rem;
        align-items: center;
        flex-direction: column;
    }
    #reviews-863 .cs-title {
        max-width: 20ch;
    }
    #reviews-863 .cs-text {
        max-width: 100%;
    }
    #reviews-863 .cs-card-group {
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        gap: clamp(1rem, 2.5vw, 1.15rem);
    }
    #reviews-863 .cs-item {
        width: 100%;
        display: flex;
        list-style: none;
        position: relative;
        max-width: 39.375rem;
        box-sizing: border-box;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        background: var(--itemColor);
        padding: clamp(1.25rem, 4vw, 2rem);
    }
    #reviews-863 .cs-flex-group {
        width: 100%;
        gap: 1.25rem;
        display: flex;
        align-items: center;
        margin: 0 0 1.25rem 0;
        padding-bottom: 1.25rem;
        justify-content: flex-start;
        border-bottom: 1px solid var(--borderColor);
    }
    #reviews-863 .cs-profile {
        width: 4rem;
        height: 4rem;
        display: block;
        overflow: hidden;
        border-radius: 50%;
        position: relative;
    }
    #reviews-863 .cs-profile img {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
    }
    #reviews-863 .cs-name {
        display: block;
        font-weight: 700;
        line-height: 1.5em;
        margin: 0 0 0.5rem 0;
        color: var(--headerColor);
        font-size: clamp(1.25rem, 2vw, 1.5625rem);
    }
    #reviews-863 .cs-job {
        margin: 0;
        display: block;
        font-weight: 400;
        line-height: 1.2em;
        font-size: 0.875rem;
        color: var(--bodyTextColor);
    }
    #reviews-863 .cs-review {
        margin: 0;
        line-height: 1.5em;
        margin-bottom: 1.25rem;
        color: var(--bodyTextColor);
        font-family: var(--bodyFont);
        font-size: clamp(0.875rem, 1.5vw, 1rem);
    }
    #reviews-863 .cs-stars {
        height: auto;
        width: 6.75rem;
        display: block;
        margin: 0 0 0.5rem 0;
    }
    #reviews-863 .cs-desc {
        margin: 0;
        line-height: 1.5em;
        text-align: inherit;
        color: var(--bodyTextColor);
        font-size: clamp(0.875rem, 1.5vw, 1rem);
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #reviews-863 .cs-container {
        max-width: 80rem;
    }
    #reviews-863 .cs-card-group {
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;
    }
    #reviews-863 .cs-stars {
        margin-top: auto;
    }
}