.section-tabs{
    padding: 100px 0;
}

.section-tabs .video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.section-tabs .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tabs-header{
    display: flex;
    gap: 12px;
    margin-bottom: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.section-tabs .tab-btn {
    border: none;
    background: #fff;
    color: #333 !important;
    box-shadow: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.section-tabs .tab-btn.is-active[data-accent="blauw"] {
    background: var(--blauw);
    color: var(--wit) !important;
}

.section-tabs .tab-btn.is-active[data-accent="rood"] {
    background: var(--rood);
    color: var(--wit) !important;
}

.section-tabs .tab-panel ul {
    columns: 2;
    column-gap: 32px;
    padding: 16px 0;
    margin: 24px 0;
    list-style: none;
}

.section-tabs .tab-panel h2 + div {
    font-family: narkiss-tam, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.6rem;
    margin: 12px 0 24px 0;
}

.section-tabs .tab-panel li {
    break-inside: avoid;
    margin: 6px 0;

    font-family: reiher-headline, sans-serif;
    font-weight: 700;
    font-weight: 500;
    font-size: 1.6rem;
    padding: 10px 0;

        border-top: 1px solid var(--zwart);
}

.tab-logos {
    display: flex;
    gap: 30px;
    margin-top: 12px;
}

.section-tabs .tab-panel .btn{
    background-color: var(--rood) !important;
    margin-top: 20px;
}

.tab-logos img {
    display: block;
    height: 30px;
    width: auto;
    object-fit: contain;
    object-position: center;
}

@media (max-width: 768px) {
    .section-tabs .tab-panel ul {
        columns: 1;
    }
}