
/* CARD */
.review-card {
    max-width: 420px;
    height: 250px;
    background: #ffffff;
    border-radius: 16px;
    padding: 18px;  
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}
.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.review-card:hover {
    transform: translateY(-4px);
}

/* HEADER */
.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.user-info h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #222;
}

.stars {
    color: #FFC107;
    font-size: 14px;
    letter-spacing: 1px;
}

/* TEXT */
.review-text {
    font-size: 13.5px;
    color: #444;
    line-height: 1.6;
}
