/* New Review Card Styles */
.review-card-new {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.review-card-new:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.2);
}

.review-header-new {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.review-avatar-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.review-info-new {
    flex: 1;
}

.review-name {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 0 0 6px 0;
}

.review-stars-new {
    color: #fbbf24;
    font-size: 16px;
    letter-spacing: 2px;
}

.review-text-new {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 12px 0;
    font-size: 14px;
}

.review-date-new {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    display: block;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card-new {
        padding: 20px;
    }
    
    .review-avatar-circle {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}
