.reviews {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 
                 "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #1f2937;
}

/* Zusammenfassung */
.review-summary {
    text-align: center;
    margin-bottom: 50px;
}

.rating-number {
    font-size: 42px;
    font-weight: 600;
}

.stars {
    font-size: 22px;
    letter-spacing: 3px;
    margin: 8px 0;
    color: #f5b301;
}

.rating-text {
    font-size: 14px;
    color: #6b7280;
}

/* Grid */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Einzelne Karte */
.review-card {
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.review-stars {
    color: #f5b301;
    font-size: 16px;
    margin-bottom: 10px;
}

.review-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-author {
    font-size: 13px;
}
