/* Kundenstimmen Styles */

/* 
 * WICHTIG: Kundenstimmen müssen in einem Grid NEBENEINANDER dargestellt werden!
 * Nicht untereinander (das wäre zu breit).
 * Grid mit 2 Spalten auf Desktop (4 Cards = 2x2), 2 auf Tablet, 1 auf Mobile.
 */
.seoday-kundenstimmen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.seoday-kundenstimmen-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.kundenstimme-image-wrapper {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 20px;
    box-sizing: border-box;
    border-bottom: 2px solid #1c7a7e;
}

.kundenstimme-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0%);
    transition: transform 0.3s ease;
}

.seoday-kundenstimmen-card:hover .kundenstimme-logo {
    transform: scale(1.05);
}

.kundenstimme-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.kundenstimme-header {
    margin-bottom: 15px;
}

.kundenstimme-author {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.kundenstimme-company {
    font-size: 12px;
    font-weight: 600;
    color: #1c7a7e;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.5px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.kundenstimme-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
    font-style: italic;
    border-left: 3px solid #f39324;
    padding-left: 15px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.kundenstimme-text .highlight-gold {
    color: #f39324;
    font-weight: 600;
    font-style: normal;
}

.seoday-kundenstimmen-all-button {
    text-align: center;
    margin-top: 50px;
}

.seoday-kundenstimmen-all-button .widget-button-standard {
    padding: 15px 40px;
    font-size: 16px;
}

/* Mobile: 1 Spalte */
@media (max-width: 768px) {
    .seoday-kundenstimmen-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .kundenstimme-image-wrapper {
        height: 140px;
        padding: 15px;
    }
    
    .kundenstimme-content {
        padding: 20px;
    }
}

