.trs-review-section {
    --trs-turquoise: #35c3c8;
    --trs-orange: #ff661a;
    --trs-heading: #1c1c1c;
    --trs-text: #5f6368;
    --trs-background: #f9fcfd;
    --trs-card: #ffffff;
    position: relative;
    width: 100%;
    padding: 56px 64px 42px;
    overflow: hidden;
    background: var(--trs-background);
    box-sizing: border-box;
}

.trs-review-section *,
.trs-review-section *::before,
.trs-review-section *::after {
    box-sizing: border-box;
}
.trs-review-title {
    margin: 0 0 30px;
    color: var(--trs-heading);
    font-size: clamp(28px, 3vw, 30px);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}
.trs-slider {
    position: relative;
    width: min(1120px, 100%);
    margin: 0 auto;
}

.trs-viewport {
    width: 100%;
    overflow: hidden;
}
.trs-track {
    display: flex;
    gap: 24px;
    align-items: stretch;
    transition: transform 0.5s ease;
    will-change: transform;
}

.trs-slide {
    flex: 0 0 calc((100% - 24px) / 2);
    min-width: 0;
}
.trs-review-card {
    display: flex;
    min-height: 260px;
    height: 100%;
    padding: 34px 40px 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--trs-card);
    border: 1px solid rgba(28, 28, 28, 0.04);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(28, 60, 67, 0.09);
    text-align: center;
}

.trs-stars {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 4px;
    white-space: nowrap;
}
.trs-star-active {
    color: var(--trs-turquoise);
}

.trs-star-inactive {
    color: #dfe7e8;
}

.trs-remark {
    max-width: 440px;
    margin: 0;
    color: var(--trs-text);
    font-size: 16px;
    line-height: 1.75;
}

.trs-remark p {
    margin: 0;
}
.trs-reviewer-name {
    margin-top: 22px;
    color: var(--trs-heading);
    font-size: 17px;
    font-weight: 700;
}

.trs-arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    color: #ffffff;
    background: var(--trs-turquoise);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 6px 16px rgba(53, 195, 200, 0.3);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.trs-arrow:hover,
.trs-arrow:focus-visible {
    background: var(--trs-orange);
    outline: none;
}
.trs-arrow:hover {
    transform: translateY(-50%) scale(1.05);
}

.trs-arrow:disabled {
    opacity: 0.35;
    cursor: default;
}

.trs-arrow-prev {
    left: -54px;
}

.trs-arrow-next {
    right: -54px;
}

.trs-review-section.trs-static .trs-arrow,
.trs-review-section.trs-static .trs-dots {
    display: none;
}
.trs-dots {
    display: flex;
    min-height: 14px;
    margin-top: 24px;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.trs-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    background: #cfeaec;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease, border-radius 0.2s ease;
}

.trs-dot.is-active {
    width: 26px;
    background: var(--trs-turquoise);
    border-radius: 10px;
}
@media (max-width: 767px) {
    .trs-review-section {
        padding: 42px 44px 34px;
    }

    .trs-review-title {
        margin-bottom: 24px;
        font-size: 28px;
    }

    .trs-track {
        gap: 16px;
    }

    .trs-slide {
        flex-basis: 100%;
    }

    .trs-review-card {
        min-height: 250px;
        padding: 30px 24px 26px;
    }

    .trs-remark {
        font-size: 15px;
    }

    .trs-arrow {
        width: 36px;
        height: 36px;
    }

    .trs-arrow-prev {
        left: -40px;
    }

    .trs-arrow-next {
        right: -40px;
    }
}
@media (max-width: 420px) {
    .trs-review-section {
        padding-right: 34px;
        padding-left: 34px;
    }

    .trs-arrow-prev {
        left: -31px;
    }

    .trs-arrow-next {
        right: -31px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .trs-track,
    .trs-arrow,
    .trs-dot {
        transition: none;
    }
}