.gedbra-testimonials {
    position: relative;
    display: flex;
    align-items: center;
    gap: 34px;
    width: 100%;
    padding: 40px 20px;
    box-sizing: border-box;
}

.gedbra-testimonials * {
    box-sizing: border-box;
}

.gedbra-slider-window {
    overflow: hidden;
    width: 100%;
}

.gedbra-slider-track {
    display: flex;
    gap: 46px;
    transition: transform 0.35s ease;
    will-change: transform;
}

.gedbra-card {
    flex: 0 0 calc((100% - 92px) / 3);
    background: #4d4837;
    color: #fff;
    padding: 58px 62px 42px;
    min-height: 425px;
}

.gedbra-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 38px;
}

.gedbra-date {
    font-size: 13px;
    color: #fff;
}

.gedbra-quote {
    font-size: 44px;
    line-height: 0.5;
    font-weight: 700;
    color: #fff;
}

.gedbra-person {
    display: flex;
    align-items: center;
    gap: 26px;
}

.gedbra-person i {
    font-size: 34px;
    color: #c79a00;
}

.gedbra-person h3 {
    margin: 0;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 700;
    color: #fff;
}

.gedbra-line {
    width: 100%;
    height: 2px;
    background: #00b9aa;
    margin: 20px 0 24px;
}

.gedbra-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 22px;
}

.gedbra-rating .star {
    font-size: 23px;
    line-height: 1;
    display: inline-block;
}

.gedbra-rating .star.full {
    color: #c79a00;
}

.gedbra-rating .star.empty {
    color: rgba(199, 154, 0, 0.25);
}

.gedbra-rating .star.half {
    position: relative;
    color: rgba(199, 154, 0, 0.25);
}

.gedbra-rating .star.half::before {
    content: "★";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    overflow: hidden;
    color: #c79a00;
}

.gedbra-card p {
    margin: 0;
    font-size: 21px;
    line-height: 1.2;
    font-style: italic;
    color: #fff;
}

.gedbra-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    line-height: 1;
    color: #00b9aa;
    font-size: 76px;
    flex: 0 0 auto;
    width: 76px;
    height: 76px;
}

.gedbra-arrow:hover {
    opacity: 0.85;
}

.gedbra-arrow:focus-visible {
    outline: 2px solid #00b9aa;
    outline-offset: 4px;
}

.gedbra-testimonials-dots {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 18px;
}

.gedbra-testimonials-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #cfcfcf;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.gedbra-testimonials-dot.is-active {
    background: #00b9aa;
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .gedbra-card {
        flex: 0 0 calc((100% - 30px) / 2);
        padding: 44px 36px 36px;
    }

    .gedbra-slider-track {
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .gedbra-testimonials {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        padding: 30px 10px;
    }

    .gedbra-card {
        flex: 0 0 100%;
        min-height: auto;
        padding: 38px 30px 34px;
    }

    .gedbra-slider-track {
        gap: 0;
    }

    .gedbra-arrow {
        display: none;
    }

    .gedbra-testimonials-dots {
        display: flex;
        flex: 0 0 100%;
        order: 3;
    }

    .gedbra-person h3 {
        font-size: 24px;
    }

    .gedbra-card p {
        font-size: 18px;
    }
}
