.reviews-slider-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* ---- Slider ---- */
.reviews-main-content {
    width: 100%;
    overflow: hidden;
}

.reviews-glide {
    width: 100%;
    position: relative;
}

.reviews-glide .glide__track {
    overflow: hidden;
}

.reviews-glide .glide__slides {
    align-items: stretch;
}

.reviews-glide .glide__slide {
    height: auto;
}

/* ---- Card ---- */
.review-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #d9d9d9;
}

.review-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.review-author {
    margin: 0;
    color: #292827;
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 14px;
    letter-spacing: 0.36px;
    text-transform: uppercase;
}

.review-date {
    margin: 4px 0 0 0;
    color: rgba(41, 40, 39, 0.8);
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
}

.review-platform-logo {
    flex-shrink: 0;
    width: 23px;
    height: 23px;
}

.review-platform-logo img,
.review-platform-logo svg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ---- Stars ---- */
.review-stars {
    position: relative;
    display: inline-flex;
    height: 14px;
    margin-bottom: 16px;
}

.review-stars-bg,
.review-stars-fg {
    display: flex;
    align-items: center;
    gap: 3px;
}

.review-stars-bg {
    color: #E0E0E0;
}

.review-stars-fg {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #F8BD00;
}

.review-stars svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ---- Text ---- */
.review-text {
    margin: 0 0 12px 0;
    color: #222222;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.review-card.is-expanded .review-text {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}

.review-learn-more {
    position: relative;
    display: inline-block;
    align-self: flex-start;
    margin-top: auto;
    padding-bottom: 5px;
    color: #222222;
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    cursor: pointer;
}

.review-learn-more::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(34, 34, 34, 0.30);
}

/* ---- Progress bar ---- */
.reviews-progress-track {
    position: relative;
    width: 100%;
    height: 3px;
    margin-top: 2rem;
    background-color: #d9d9d9;
}

.reviews-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: #222222;
    transition: width 0.3s ease;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .review-card {
        padding: 18px;
    }
}

