.kundenstimmen-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    color: white;
    padding-left: 0px;
    padding-right: 0px;
}

.kundenstimmen-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(19, 25, 29, 0.7);
    z-index: 1;
}

.kundenstimmen-container {
    position: relative;
    z-index: 2;
    max-width: var(--wp--style--global--content-size);
    margin: 0 auto;
    padding: 0 20px;
}

.kundenstimmen-container h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: white;
}

.kundenstimmen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.kundenstimme-item {
    background: none;
    text-align: center;
}

.sterne {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.stern {
    color: white;
    opacity: 0.3;
}

.stern.aktiv {
    opacity: 1;
}

.kundenstimme-item p {
    font-size: 1rem;
    line-height: 1.5;
}

.kundenstimmen-button-wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
    
    
}


.kundenstimmen-button {
    background-color: #EF0C2F !important;
    display: inline-block;
    color: white;
    padding: 12px 24px;
    border-radius: 22px;
    text-decoration: none;
    font-weight: bold;
    width: fit-content;
}

.kundenstimmen-button:hover {
    transition: background-color 0.3s ease;
    background-color: #13191D !important;
}

/* Responsiv */
@media (max-width: 1024px) {
    .kundenstimmen-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .kundenstimmen-grid {
        grid-template-columns: 1fr;
    }
}