@import url('https://fonts.googleapis.com/css2?family=Michroma&display=swap');

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    width: 100%;
    background: #ffffff;
    padding: clamp(60px, 6vw, 120px) 0;
}

.reviews-inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(40px, 6vw, 120px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 41px;
}

/* Top row */
.reviews-top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.reviews-top-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 494px;
}

.reviews-label {
    font-family: 'Clash Display', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    color: #004882 !important;
}

.reviews-title {
    font-family: 'Michroma', sans-serif;
    font-weight: 400;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.4;
    color: #252525 !important;
    margin: 0;
}

.reviews-top-right {
    display: flex;
    flex-direction: column;
    gap: 17px;
    max-width: 446px;
    align-items: flex-start;
}

.reviews-desc {
    font-family: 'Clash Display', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #252525 !important;
    margin: 0;
}

.reviews-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 32px;
    background: #004882;
    border-radius: 100px;
    font-family: 'Clash Display', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.reviews-btn:hover {
    background: #003366;
    color: #ffffff;
}

/* Cards */
.reviews-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 19px;
    width: 100%;
}

.reviews-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 33px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    min-height: 354px;
    box-sizing: border-box;
    gap: 34px;
}

.reviews-card-top {
    display: flex;
    flex-direction: column;
    gap: 33px;
}

.reviews-text {
    font-family: 'Clash Display', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #252525 !important;
    margin: 0;
}

.reviews-rating {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.reviews-score {
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #252525 !important;
}

.reviews-stars {
    color: #FBBB00;
    font-size: 16px;
    letter-spacing: 2px;
}

/* Author */
.reviews-author {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
}

.reviews-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.reviews-name {
    font-family: 'Michroma', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #252525 !important;
}

/* Dots */
.reviews-dots {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
}

.reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.reviews-dot.active {
    background: #004882;
}
.reviews-avatar-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #004882;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Michroma', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .reviews-inner {
        padding: 0 40px;
    }

    .reviews-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }

    .reviews-inner {
        padding: 0 24px;
    }

    .reviews-cards {
        grid-template-columns: 1fr;
    }

    .reviews-card {
        min-height: auto;
    }
}