/* Reviews */
.review-card {
    position: relative;
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 4px solid var(--secondary-color); /* Goldene Kante oben */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Großes, dekoratives Anführungszeichen im Hintergrund */
.review-card::before {
    content: '“';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 8rem;
    font-family: var(--font-heading);
    color: rgba(212, 175, 55, 0.1); /* Helles, transparentes Gold */
    line-height: 1;
    z-index: -1;
    pointer-events: none;
}

.stars {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    letter-spacing: 3px; /* Etwas mehr Abstand zwischen den Sternen */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.15); /* Leichter 3D-Effekt für die Sterne */
}

.review-card p {
    font-size: 0.95rem;
    font-style: italic; /* Kursiv für Zitate */
    color: #555;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.review-author {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

/* Review CTA (Call to Action) */
.review-cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 35px;
    border-top: 1px solid rgba(0,0,0,0.05); /* Feine Trennlinie zu den Karten */
}

.review-cta p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 25px;
    font-family: var(--font-heading);
    font-style: italic; /* Luxuriöser Look für den Anreiz */
}
