/* Kaatje Klantervaringen – Frontend stijlen */

.kk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 0;
}

.kk-card {
    background: #fff;
    border: 1px solid #E8DDD5;
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 2px 12px rgba(91, 173, 160, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kk-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(91, 173, 160, 0.14);
}

.kk-stars {
    display: flex;
    gap: 2px;
}

.kk-star {
    font-size: 1.1rem;
    color: #E8DDD5;
    line-height: 1;
}

.kk-star--filled {
    color: #C9A84C;
}

.kk-quote {
    margin: 0;
    flex: 1;
}

.kk-quote p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7;
    color: #3D3D3D;
    margin: 0;
    position: relative;
    padding-left: 1.5rem;
}

.kk-quote p::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -0.1em;
    font-size: 2rem;
    line-height: 1;
    color: #5BADA0;
    font-family: 'Playfair Display', serif;
    font-style: normal;
}

.kk-author {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding-top: 0.75rem;
    border-top: 1px solid #E8DDD5;
}

.kk-naam {
    font-weight: 700;
    font-size: 0.9rem;
    color: #3D3D3D;
}

.kk-relatie {
    font-size: 0.82rem;
    color: #6B6B6B;
}

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