.kv-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.kv-slider {
    overflow: hidden;
    width: calc(100% + 45px);
    margin-left:-15px;
}

.kv-slider-track {
    display: flex;
    transition: transform 0.3s ease;
}

.kv-slide {
    min-width: calc(100% / 3);
    box-sizing: border-box;
    padding: 0 15px;
    max-height:320px;
}

.kv-review-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px;
    min-height:250px;

    display:flex;
    flex-direction:column;
    height:100%;
}

.kv-rating {
    font-size: 20px;
    font-weight: 700;
    padding-top:6px;
    margin-bottom:25px;
    color: #ffffff;
    background-color: var(--donkerpaars);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
}

.kv-opinion {
    font-size: 20px;
    font-weight:600;
    /*margin-bottom: 12px;*/
    color:var(--paars);
    flex-grow:1;
    margin-bottom:15px;
    max-height:150px;
    padding=top:5px;
}

.kv-review-footer {
    margin-top: auto;
}

.kv-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.kv-date {
    font-size: 16px;
    font-weight:400;
}

/* Controls container */
.kv-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    position: relative;
    gap: 20px;
}

/* Dots in het midden */
.kv-dots {
    display: flex;
    justify-content: left;
    gap: 8px;
    flex-grow: 1;
}

.kv-dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.kv-dot.active {
    background: #333;
}

.kv-arrows {
    display: flex;
    gap: 10px;
}

.kv-arrow {
    background: var(--paars);
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    display:inline-flex;
    align-items:center;
}
.kv-arrow .material-symbols-outlined {font-weight:200;}

.kv-arrow:hover {
    background: var(--blauw);
}

.kv-slider-wrapper {
    width: 100%;
    display:block;
}

.kv-slider-arrows {
    margin-top:20px;
    text-align: right;
}

.kv-slider-arrows .kv-arrow {
    margin: 0 5px;
}
.kv-slider-arrows .kv-arrow .material-symbols-outlined {font-weight:300;}


@media screen and (max-width:440px) {
    .kv-review-card {padding:20px;}
    .kv-opinion {font-size:18px;}
    .kv-controls {margin-top:32px;}

}
