.reviews-section {
    background-color: #fff;
    padding: 0 15px 40px 15px;
    text-align: center;
}

.reviews-header-block {
    margin-bottom: 25px;
}

.reviews-number {
    font-size: 42px;
    font-weight: 900;
    color: #4a90e2;
    margin: 0;
    line-height: 1;
}

.reviews-title {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin: 5px 0 0 0;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.tag-pill {
    background-color: #5b8ab8;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.pill-icon {
    width: 14px;
    height: 14px;
    display: block;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.review-card {
    background-color: #dbe5ed;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.review-card-second {
    background-color: #b5c3d2;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.review-img-col {
    flex-shrink: 0;
}

.review-photo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.review-content-col {
    flex: 1;
}

.stars-rating {
    color: #ffc107;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.review-text {
    font-size: 16px;
    line-height: 1.2;
    color: #222;
    margin: 0 0 8px 0;
}

.review-author {
    font-size: 12px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
}

.author-name {
    font-size: 16px;
    font-weight: 900;
    color: #000;
}

.verified-badge {
    color: #5dae5d;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ver-icon {
    width: 12px;
    height: 12px;
}

@media (max-width: 700px) {
    .reviews-section {
        background-color: #fff;
        padding: 0 15px 40px 15px;
        text-align: center;
    }

    .review-card {
        display: flex;
        align-items: center;
        flex-direction: row;
    }

    .review-card-second {
        display: flex;
        align-items: center;
        flex-direction: row;
    }

    .review-photo {
        width: 100%;
        height: 85px;
        border-radius: 0;
    }

    .tag-pill{
        font-size: 14px;
        text-align: left;
    }

    .reviews-number {
        font-size: 32px;
    }

    .tags-cloud {
        gap: 0.5rem;
    }

    .review-img-col {
        flex-shrink: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}