.review-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    padding: 1.25rem 1.5rem;
    max-width: 36rem;
    background: var(--theme-tertiary, #faf9fa);
    border: 1px solid var(--theme-secondary-light, #eaeaea);
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgb(0 0 0 / .06);
    /* Animación pura CSS: visible SIEMPRE, aunque no corra JS */
    animation: cardSlide .8s cubic-bezier(.22, .61, .36, 1) both;
    box-sizing: border-box;
}

a.review-card {
    text-decoration: none;
    color: inherit;
}

@keyframes cardSlide {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.review-card__avatar {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.review-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.review-card__quote {
    margin: 0;
    font-size: 1rem;
    line-height: 1.45;
    font-style: italic;
    color: #333;
}

.review-card__author {
    margin-top: .5rem;
    font-weight: 600;
    color: var(--theme-primary-dark, #111);
}

/* ---------- Estrellas ---------- */
.review-card__rating {
    margin-top: 0rem;
    display: flex;
    gap: .25rem;
}

.star {
    fill: none;
    stroke: var(--theme-secondary-light, #bbb);
    stroke-width: 2;
    /* Evita inline-style opacity 0; nunca tocamos opacity via JS */
}

.star.filled {
    fill: #ffb700;
    stroke: #ffb700;
}