.reviews-section {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #000;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.review-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.review-img-box {
    position: relative;
    width: 100%;
    padding-top: 125%;
    background-color: #f0f0f0;
}

.review-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 2px;
    color: #000;
}

.review-date {
    font-size: 11px;
    color: #888;
    margin-bottom: 8px;
}

.review-stars {
    color: #E16203;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.review-body {
    font-size: 13px;
    line-height: 1.5;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 1024px){
    .reviews-section {
        padding: 0 20px;
    }

    .section-title {
        display: none;
    }

    .reviews-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}