.wall-of-love {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.reviews-masonry {
    columns: 3;
    column-gap: 1.5rem;
}

.review-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    break-inside: avoid;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.review-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg,
            rgba(255, 255, 255, 0) 40%,
            rgba(240, 240, 240, 0.6) 50%,
            rgba(255, 255, 255, 0) 60%);
    background-size: 300%;
    background-position-x: 100%;
    animation: shimmerTwice 0.8s linear 1;
}

@keyframes shimmerTwice {
    to {
        background-position-x: 0%;
    }
}

.review-header,
.review-time,
.review-rating,
.review-content {
    position: relative;
    z-index: 3;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.reviewer-photo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-name {
    margin: 0;
    font-weight: 600;
    text-transform: capitalize;
}

.google-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.review-time {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.review-rating {
    margin-bottom: 0.5rem;
}

.review-rating .star {
    color: #eba417;
}

.review-content {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
    margin: 0;
}

/* Mobile styles */
@media screen and (max-width: 1268px) {
    .reviews-masonry {
        columns: 1;
    }

    .review-card {
        margin: 0 auto 1.5rem;
        max-width: 80%;
    }
}

/* Tablet styles */
@media screen and (min-width: 768px) and (max-width: 1267px) {
    .reviews-masonry {
        columns: 2;
    }
}
