/**
 * FILE: css/15-reviews.css
 * VERSION: 1.5
 * LAST MODIFIED: June 14, 2026
 * DESCRIPTION: CSS-Feinschliff für Erfahrungsberichte.
 *              v1.5: Aktivierung des Schlagschattens (unten/rechts) für die Kachel.
 */

/* Der Haupt-Block (Kachel-Design) */
.reviews-as-news .news-teaser-item {
    background: #ffffff !important;
    margin-bottom: 40px !important;
    padding-bottom: 0 !important; /* Balken sitzt oben auf */
    border-bottom: none !important; /* Entfernt die News-Linie für Kachel-Optik */

    /* SCHLAGSCHATTEN (Doc 2.3) */
    box-shadow: 3px 3px 5px #666 !important;
    border-radius: 4px !important;
    overflow: hidden !important;
}

/* Abstand für den Textinhalt innerhalb der Kachel mit Schatten */
.reviews-as-news .news-teaser-content-flex {
    padding: 20px !important;
    margin-top: 0 !important;
}

/* Zitat-Stil für den Text */
.reviews-as-news .teaser-text-italic {
    font-style: italic !important;
    line-height: 1.6 !important;
    margin-bottom: 15px !important;
    color: #333 !important;
}

/* Weiterlesen-Link Styling */
.reviews-as-news .news-weiterlesen-link {
    display: inline-block !important;
    margin-top: 10px !important;
}

/* Mobile Optimierung: Schatten bleibt erhalten, Padding wird angepasst */
@media (max-width: 600px) {
    .reviews-as-news .news-teaser-content-flex {
        padding: 15px !important;
    }
}
