/* Shared customer-reviews slider: home page and About page. */

.reviews-track {
    align-items: flex-start;
}

.review-card {
    height: auto;
    overflow: visible;
    border-radius: 0;
    background: transparent;
}

.review-card-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 16px;
    background: #F3F3FA;
}

.review-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.review-card-content {
    padding-top: 16px;
}

.review-author {
    padding: 0;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    color: var(--color-text);
}

.review-text {
    margin-top: 8px;
    padding: 0;
    font-size: 14px;
    line-height: 1.4;
    color: var(--color-text-grey);
}
