.card-container {
    display: flex;
    gap: 20px; /* Space between cards */
}
.review-title {
    text-align: center;
    margin-block-end: .7rem;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.review-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.1);
    /*max-width: 300px;*/
    margin: 20px;
    padding: 20px;
    flex: 1;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-name {
    font-weight: bold;
    color: #333;
}

.review-stars {
    display: flex;
    align-items: center;
}

.star {
    color: #fbbf24; /* Gold color */
    font-size: 18px;
    margin-right: 3px;
}

.review-rating {
    font-size: 14px;
    color: #555;
    margin-left: 5px;
}


.review-text {
    height: 150px; /* Fixed height */
    overflow: hidden; /* Hide overflowing text */
    text-overflow: ellipsis; /* Add ellipsis */
    display: -webkit-box; /* Required for multiline truncation */
    -webkit-line-clamp: 8; /* Limit to 8 lines (adjust as needed) */
    -webkit-box-orient: vertical; /* Required for multiline truncation */
    font-size: 14px;
    color: #666;
    line-height: 1.6; /* Adjust line height */
    margin-top: 10px;
}

.review-date {
    margin-top: 15px;
    font-size: 12px;
    color: #999;
}

.review-logo {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.review-logo img {
    height: 20px;
}
