/**
 * Testimonial Grid – Frontend-Styles
 *
 * Statisches CSS-Grid-Layout für Testimonial-Cards.
 * Spaltenanzahl wird per Elementor-Selector gesteuert.
 */

/* ==========================================================================
   Grid-Container
   ========================================================================== */

.radg-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    box-sizing: border-box;
}

/* ==========================================================================
   Card
   ========================================================================== */

.radg-grid-card {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* ==========================================================================
   Avatar
   ========================================================================== */

.radg-grid-avatar {
    flex-shrink: 0;
    line-height: 0;
}

.radg-grid-avatar img {
    display: block;
    object-fit: cover;
}

/* ==========================================================================
   Inhalt
   ========================================================================== */

.radg-grid-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.radg-grid-text {
    margin: 0;
    line-height: 1.5;
}

.radg-grid-name {
    font-weight: 600;
    line-height: 1.3;
    margin-top: 6px;
}

/* ==========================================================================
   Anführungszeichen
   ========================================================================== */

.radg-quote {
    font-style: normal;
}
