/* ========================================
   REVIEWS CARDS (shared)
   ======================================== */
.reviews__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
.review {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: box-shadow var(--transition), transform var(--transition);
}
.review:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.review__stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-sm);
}
.review__stars svg {
    width: 16px; height: 16px;
    fill: #F59E0B;
}
.review__quote {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-style: italic;
    color: var(--slate);
    line-height: 1.65;
    margin-bottom: var(--space-md);
}
.review__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.review__avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--green);
    overflow: hidden;
    flex-shrink: 0;
}
.review__avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.review__name {
    font-weight: 600;
    font-size: 0.9rem;
}
.review__source {
    font-size: 0.78rem;
    color: var(--slate-light);
}
.review__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}
.review__location {
    font-size: 0.78rem;
    color: var(--slate-light);
}
img.review__avatar--photo {
    object-fit: cover;
    background: var(--gray-200);
}
.review__source-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--slate-light);
    background: var(--gray-100);
    padding: 0.25rem 0.6rem;
    border-radius: 100px;
    white-space: nowrap;
}
.review__source-tag svg {
    width: 12px; height: 12px;
}
.reviews__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--space-md);
    font-size: 0.85rem;
    color: var(--slate-light);
}
.reviews__badge strong { color: var(--slate); }

@media (min-width: 640px) {
    .reviews__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
    .reviews__grid { grid-template-columns: repeat(3, 1fr); }
}
