.trio-marquee-wrapper {
        position: relative;
        overflow: hidden;
        width: 100%;
        padding: 4px 0;
    }
    .trio-marquee-fade-left,
    .trio-marquee-fade-right {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 180px;
        z-index: 3;
        pointer-events: none;
    }
    .trio-marquee-fade-left {
        left: 0;
        background: linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0) 100%);
    }
    .trio-marquee-fade-right {
        right: 0;
        background: linear-gradient(to left, #ffffff 0%, rgba(255,255,255,0) 100%);
    }
    .trio-marquee-row {
        overflow: hidden;
        width: 100%;
        padding: 10px 0;
    }
    .trio-marquee-track {
        display: flex;
        align-items: stretch;
        width: max-content;
    }
    .trio-marquee-ltr {
        animation: trio-scroll-ltr 100s linear infinite;
    }
    .trio-marquee-rtl {
        animation: trio-scroll-rtl 100s linear infinite;
    }
    .trio-marquee-ltr:hover,
    .trio-marquee-rtl:hover {
        animation-play-state: paused;
    }
    @keyframes trio-scroll-rtl {
        0%   { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    @keyframes trio-scroll-ltr {
        0%   { transform: translateX(-50%); }
        100% { transform: translateX(0); }
    }
    .trio-review-card {
        display: flex;
        flex-direction: column;
        background: #ffffff;
        border: 1px solid #ede8e3;
        border-radius: 14px;
        padding: 22px 26px;
        margin: 0 10px;
        width: 320px;
        min-height: 155px;
        flex-shrink: 0;
    }
    .trio-stars {
        display: flex;
        gap: 3px;
        margin-bottom: 12px;
    }
    .trio-stars i {
        color: #FA8862;
        font-size: 13px;
    }
    .trio-review-text {
        font-size: 13.5px;
        line-height: 1.65;
        color: #4a4a4a;
        margin: 0 0 14px 0;
        flex-grow: 1;
    }
    .trio-review-author {
        font-size: 12.5px;
        font-weight: 700;
        color: #1a1a1a;
        letter-spacing: 0.03em;
    }
    .trio-social-proof {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 20px 0 6px;
    }
    .trio-social-proof img {
        height: 44px;
        width: auto;
        display: block;
    }
    .trio-social-proof-label {
        font-size: 15px;
        font-weight: 700;
        color: #1a1a1a;
    }
    .trio-social-proof-label span {
        color: #FA8862;
    }
