.webinar-reviews__grid {
    display: grid;
    grid-template-columns: repeat(var(--webinar-review-columns, 3), minmax(0, 1fr));
    gap: 24px;
}

.webinar-review-card {
    background: #fff;
    border: 1px solid #e3d5c3;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 18px 40px rgba(31, 26, 23, 0.06);
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.webinar-review-card__header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.webinar-review-card__quote svg {
    width: 32px;
    height: 32px;
    fill: #c8b48a;
    display: block;
}

.webinar-review-card__stars {
    display: flex;
    gap: 6px;
}

.webinar-review-card__star svg {
    width: 18px;
    height: 18px;
    fill: #d3d0c8;
    display: block;
}

.webinar-review-card__star.is-filled svg {
    fill: #3f5b4a;
}

.webinar-review-card__content {
    color: #6a625c;
    font-size: 16px;
    line-height: 1.7;
    flex-grow: 1;
}

.webinar-review-card__divider {
    height: 1px;
    background: rgba(31, 26, 23, 0.08);
}

.webinar-review-card__footer {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.webinar-review-card__author {
    color: #3b4b41;
    font-weight: 600;
    font-size: 15px;
}

.webinar-review-card__role {
    color: #8a827b;
    font-size: 13px;
}

@media (max-width: 1000px) {
    .webinar-reviews__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .webinar-reviews__grid {
        grid-template-columns: minmax(0, 1fr);
    }
}
