/* ── Maatregel Card ──────────────────────────────────────────────────────── */

.st-maatregel-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.st-maatregel-card--placeholder {
    border: 2px dashed #ccc;
    color: #999;
    font-style: italic;
    text-align: center;
}

.st-maatregel-card__title {
    margin: 0 0 10px;
    font-size: 1.1em;
}

.st-maatregel-card__title a {
    text-decoration: none;
    color: inherit;
}

.st-maatregel-card__title a:hover {
    text-decoration: underline;
}

.st-maatregel-card__description {
    margin: 0 0 12px;
    color: #555;
    font-size: .95em;
    line-height: 1.5;
}

.st-maatregel-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    margin-top: 12px;
}

.st-maatregel-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.st-maatregel-card__tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: .8em;
    font-weight: 500;
}

.st-maatregel-card__tag--branche { background-color: #e8f0fe; color: #1a56db; }
.st-maatregel-card__tag--thema   { background-color: #e8f7ee; color: #0e7a45; }

.st-maatregel-card__moment {
    font-size: .8em;
    color: #777;
}

.st-maatregel-card__badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: .8em;
    font-weight: 600;
}

.st-maatregel-card__badge--verplicht {
    background-color: #fef3c7;
    color: #92400e;
}

/* ── Maatregel Branches ──────────────────────────────────────────────────── */

.st-mb {
    width: 100%;
}

/* Heading */
.st-mb__heading {
    margin: 0 0 24px;
}

/* Grid */
.st-mb__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* default; overridden by Elementor responsive control */
    gap: 0;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: visible;
}

/* Item */
.st-mb__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 24px 12px 20px;
    cursor: pointer;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    transition: background-color .18s ease;
    user-select: none;
}

.st-mb__item:hover {
    background-color: #f9fafb;
}

.st-mb__item.is-active {
    background-color: #f0fdf4;
    z-index: 10;
}

/* Remove right border on last item in each row — handled via JS or nth-child on a known count.
   Since column count is now dynamic, we rely on the grid itself clipping the right edge. */

/* Image */
.st-mb__image-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 14px;
    flex-shrink: 0;
}

.st-mb__image-wrap .st-mb__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.st-mb__image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e5e7eb;
}

/* Title */
.st-mb__title {
    font-size: .95em;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    color: #1a1a2e;
    transition: color .18s ease;
}

/* Popup card */
.st-mb__popup {
    display: none;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 102%;
    min-height: 100%;
    background: #fff;
    border: 2px solid #3aab4a;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    z-index: 100;
    overflow: hidden;
}

.st-mb__item.is-active .st-mb__popup {
    display: block;
}

.st-mb__popup-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.st-mb__popup-item {
    padding: 12px 20px;
    font-size: .95em;
    font-weight: 500;
    color: #1a1a2e;
    cursor: pointer;
    transition: color .15s ease, background-color .15s ease;
    border-bottom: 1px solid #f0f0f0;
}

.st-mb__popup-item:last-child {
    border-bottom: none;
}

.st-mb__popup-item a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.st-mb__popup-item:hover {
    background-color: transparent;
}

.st-mb__popup-item a,
.st-mb__popup-item a:hover {
    text-decoration: none !important;
}

.st-mb__popup-item a:hover {
    color: #284692 !important;
}

.st-mb__popup-item.is-selected {
    color: #1a56db;
    font-weight: 700;
}

/* Footer / button */
.st-mb__footer {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.st-mb__btn {
    display: inline-block;
    padding: 14px 40px;
    background-color: #3aab4a;
    color: #fff;
    font-weight: 700;
    font-size: .95em;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color .18s ease;
    cursor: pointer;
}

.st-mb__btn:hover {
    background-color: #2d8f3c;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .st-mb__image-wrap {
        width: 80px;
        height: 80px;
    }

    .st-mb__popup {
        left: 0;
        transform: none;
        min-width: 180px;
    }
}

/* ── Maatregel Overview ──────────────────────────────────────────────────── */

.st-mo {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
}


/* Sidebar */
.st-mo__sidebar {
    flex: 0 0 280px;
    width: 280px;
    border-right: 1px solid #e5e7eb;
    padding-right: 24px;
}

.st-mo__sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 60px;
}

.st-mo__sidebar-title {
    display: block;
    font-weight: 700;
    font-size: 1.1em;
}

.st-mo__sidebar-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.st-mo__clear-filters {
    display: none;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: none;
    cursor: pointer;
    font-size: 1em;
    color: #777;
    padding: 0;
    line-height: 1;
    position: relative;
    transition: color .15s ease, border-color .15s ease, background-color .15s ease;
}

.st-mo__clear-filters.is-visible {
    display: inline-flex;
}

.st-mo__clear-filters:hover {
    color: #fff;
    background-color: #3aab4a;
    border-color: #3aab4a;
}

.st-mo__clear-filters-text {
    display: none;
}

.st-mo__clear-tooltip {
    display: none;
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: #1a1a2e;
    color: #fff;
    font-size: .75em;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
    pointer-events: none;
}

.st-mo__clear-filters:hover .st-mo__clear-tooltip {
    display: block;
}

/* ── Actieve filters ──────────────────────────────────────────────────────── */

.st-mo__active-filters {
    margin: 4px 0 28px;
    padding: 20px;
    background: #fff;
    border: 1px solid #eef0f3;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}

.st-mo__active-filters[hidden] {
    display: none;
}

.st-mo__active-filters-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: #1f2937;
    margin-bottom: 14px;
}

.st-mo__active-filters-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.st-mo__active-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    padding: 6px 12px;
    background: #f3f4f6;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font: inherit;
    font-size: 0.9rem;
    color: #1f2937;
    line-height: 1.3;
    text-align: left;
    transition: background-color 0.12s ease;
}

.st-mo__active-filter:hover,
.st-mo__active-filter:focus {
    background: #e5e7eb;
}

.st-mo__active-filter-label {
    min-width: 0;
    overflow-wrap: anywhere;
    text-transform: none;
}

.st-mo__active-filter-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    line-height: 1;
    color: #e11d2a;
    flex-shrink: 0;
}

.st-mo__filter-section + .st-mo__filter-section {
    margin-top: 28px;
}

.st-mo__filter-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.st-mo__filter-section--hide-count .facetwp-counter {
    display: none;
}

/* Branche-afhankelijke filters (bv. ambitie) zijn pas zichtbaar zodra er een
   branche gekozen is — zie has-branche toggle in overview.js. */
.st-mo__filter-section--branche-dependent {
    display: none;
}

.st-mo.has-branche .st-mo__filter-section--branche-dependent {
    display: block;
}

/* Main */
.st-mo__main {
    flex: 1 1 0;
    min-width: 0;
}

.st-mo__main-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    
    @media (max-width: 768px) {
        padding-top: 32px;
    }
}

.st-mo__count {
    font-weight: 700;
    font-size: 1.2em;
}

.st-mo__count-total {
    font-size: 0.55em;
    font-weight: 600;
    color: #9aa3b2;
}

.st-mo__count-total[hidden] {
    display: none;
}

.st-mo__pagination {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

/* ── Sort dropdown ───────────────────────────────────────────────────────── */

.st-mo__sort {
    margin-top: -5px;
}

.st-mo__sort .facetwp-type-sort select {
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 8px 36px 8px 14px;
    font-size: .9em;
    font-family: inherit;
    color: #1a1a2e;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233aab4a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    outline: none;
    transition: border-color .15s ease;
    height: 36px;
}

.st-mo__sort .facetwp-type-sort select:hover,
.st-mo__sort .facetwp-type-sort select:focus {
    border-color: #3aab4a;
}

/* Listing */
.st-mo-list {
    width: 100%;
}

.st-mo-list__title {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none !important;
    transition: color .15s ease;
    font-family: "Bree Serrif", sans-serif !important;
    font-weight: 400 !important;
    font-size: 20px !important;
    line-height: 25px !important;
}
.st-mo-list__title-arrow {
    flex-shrink: 0;
}

.st-mo-list__title:hover {
    text-decoration: underline !important;
}

.st-mo-list__item {
    position: relative;
    isolation: isolate;
}

.st-mo-list__item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px;
    position: relative;
    z-index: 10;
    background-color: #fff;
}

.st-mo-list__item-main {
    flex: 1 1 0;
    min-width: 0;
}

.st-mo-list__title-line {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

a.st-mo-list__title,
a.st-mo-list__title:hover {
    color: inherit;
    transition: color .15s ease;
}

.st-mo-list__info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid currentColor;
    background: none;
    padding: 0;
    font-size: .7em;
    font-style: normal;
    font-weight: 700;
    cursor: pointer;
    flex-shrink: 0;
    color: inherit;
    transition: opacity .15s ease;
    line-height: 1;
}

.st-mo-list__info:hover,
.st-mo-list__info[aria-expanded="true"] {
    opacity: 1;
}

.st-mo-list__processes {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 4px;
}
.st-mo-list__process-pill {
    display: inline-flex;
    align-items: center;
    font-size: .85em;
    color: #555;
    background-color: rgba(219, 219, 219, 0.3);
    border-radius: 25px;
    padding: 3px 5px;
    white-space: nowrap;
}

.st-mo-list__icons {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.st-mo-list__meta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Ambitielabel als grijze pill, achter de titel + info-knop. */
.st-mo-list__ambitie {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    font-weight: 600;
    font-size: .9em;
    line-height: 1.2;
    white-space: nowrap;
    padding: 4px 12px;
    border-radius: 25px;
    background-color: rgba(219, 219, 219, 0.3);
}

.st-mo-list__ambitie--basis {
    color: #284692;
}

.st-mo-list__ambitie--koploper,
.st-mo-list__ambitie--gevorderd {
    color: #3aab4a;
}

/* "Gevorderd" overal groen: filter-checkbox + actieve-filter chip.
   (slug 'gevorderd'; 'koploper' blijft staan voor legacy data) */
.facetwp-facet-ambitie .facetwp-checkbox[data-value="gevorderd"] .facetwp-display-value,
.facetwp-facet-ambitie .facetwp-checkbox[data-value="koploper"] .facetwp-display-value {
    color: #3aab4a !important;
}

.st-mo__active-filter[data-value="gevorderd"],
.st-mo__active-filter[data-value="koploper"] {
    color: #3aab4a;
}

/* "Basis" in het filter blauw, gelijk aan de pill in de lijst. */
.facetwp-facet-ambitie .facetwp-checkbox[data-value="basis"] .facetwp-display-value {
    color: #284692 !important;
}

.st-mo__active-filter[data-value="basis"] {
    color: #284692;
}

.st-mo-list__thema-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

/* ── List item panel ─────────────────────────────────────────────────────── */

.st-mo-list__panel {
    overflow: hidden;
    max-height: 0;
    border-radius: 0 0 8px 8px;
    position: relative;
    z-index: 0;
    transition: max-height .35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    top: -10px;
    z-index: -10;
}

.st-mo-list__panel.is-open {
    max-height: 500px;
}

.st-mo-list__panel-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 16px 16px;
    transform: translateY(-10px);
    opacity: 0;
    transition: transform .3s ease .05s, opacity .25s ease .05s;
}

.st-mo-list__panel.is-open .st-mo-list__panel-inner {
    transform: translateY(0);
    opacity: 1;
}

.st-mo-list__panel-left {
    flex: 0 0 55%;
    min-width: 0;
}

.st-mo-list__panel-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
}

.st-mo-list__panel-text {
    font-size: .9em;
    color: #555;
    line-height: 1.5;
}

.st-mo-list__panel-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex: 1 1 0;
    justify-content: flex-end;
    align-self: flex-end;
}

.st-mo-list__panel-btn,
.st-mo-list__panel-btn:hover {
    display: inline-block;
    padding: 10px 20px;
    background-color: #61B32B;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-radius: 6px;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background-color .18s ease;
}

.st-mo-list__panel-btn:hover {
    background-color: #2d8f3c;
}

.st-mo-list__panel-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: .85em;
    color: #61B32B;
    text-decoration: none;
    padding: 0;
    white-space: nowrap;
    transition: color .15s ease;
}

.st-mo-list__panel-close:hover {
    color: #54595f;
}

/* ── Filter title tooltip ────────────────────────────────────────────────── */

.st-mo__filter-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 10px;
    color: #34373B;
}

.st-mo__filter-info-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: auto;
}

.st-mo__filter-info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #aaa;
    background: none;
    padding: 0;
    font-size: .7em;
    font-style: normal;
    font-weight: 700;
    cursor: pointer;
    color: #666;
    line-height: 1;
    transition: color .15s ease, border-color .15s ease;
}

.st-mo__filter-info:hover,
.st-mo__filter-info[aria-expanded="true"] {
    color: #3aab4a;
    border-color: #3aab4a;
}

.st-mo__filter-tooltip {
    display: none;
    position: absolute;
    right: 0;
    bottom: calc(100% + 10px);
    min-width: 240px;
    max-width: 320px;
    background: #fff;
    border: 2px solid #3aab4a;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: .88em;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.55;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
    z-index: 200;
}

.st-mo__filter-info-wrap:hover .st-mo__filter-tooltip,
.st-mo__filter-info:focus-visible + .st-mo__filter-tooltip,
.st-mo__filter-info[aria-expanded="true"] + .st-mo__filter-tooltip {
    display: block;
}

/* Icoon mee laten oplichten bij hover op de hele wrap. */
.st-mo__filter-info-wrap:hover .st-mo__filter-info {
    color: #3aab4a;
    border-color: #3aab4a;
}

/* Onzichtbare brug over het gat tussen icoon en tooltip, zodat de muis de
   tooltip kan bereiken zonder dat de hover wegvalt. */
.st-mo__filter-info-wrap .st-mo__filter-tooltip::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 12px;
}

.st-mo-list__icon-wrap {
    position: relative;
    display: inline-flex;
    cursor: pointer;
}
.st-mo-list__icon-wrap .st-mo__filter-tooltip {
    right: 50%;
    transform: translateX(50%);
    bottom: calc(100% + 8px);
    min-width: 160px;
}
.st-mo-list__icon-wrap:hover .st-mo__filter-tooltip {
    display: block;
}

/* Onzichtbare brug over het gat tussen icoon en tooltip, zodat de hover
   niet wegvalt als de muis ernaartoe beweegt. */
.st-mo-list__icon-wrap .st-mo__filter-tooltip::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 10px;
}

/* ── Branche accordion ───────────────────────────────────────────────────── */

.st-ba__group {
    border-bottom: 1px solid #e5e7eb;
}

.st-ba__group:first-child {
    border-top: 1px solid #e5e7eb;
}

.st-ba__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    cursor: pointer;
    user-select: none;
}

.st-ba__label {
    font-weight: 500;
    font-size: .95em;
}

.st-ba__chevron {
    display: inline-block;
    transition: transform .2s ease;
    font-size: 28px;
    line-height: 1;
    color: #284692;
}

.st-ba__group.is-open .st-ba__chevron {
    transform: rotate(90deg);
}

.st-ba__children {
    display: none;
    padding: 4px 0 12px 4px;
}

.st-ba__group.is-open .st-ba__children {
    display: block;
}

.st-ba__child-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    cursor: pointer;
    font-size: .9em;
    line-height: 1.3;
}

.st-ba__child-checkbox {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #3aab4a;
}

/* ── Filter toggle (mobile/tablet) ──────────────────────────────────────── */

.st-mo__filter-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: .95em;
    color: #1a1a2e;
    margin-bottom: 12px;
    transition: background-color .15s ease;
}

.st-mo__filter-toggle:hover {
    background-color: #f9fafb;
}

.st-mo__filter-toggle-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #3aab4a;
}

.st-mo__sidebar-close {
    display: none;
}

/* ── Responsive: tablet portrait + mobile ───────────────────────────────── */

@media (max-width: 1024px) {
    .st-mo {
        flex-direction: column;
    }

    .st-mo__sidebar {
        display: none;
        position: relative;
        width: 100% !important;
        flex: none !important;
        border-right: none;
        padding-right: 0;
        padding-bottom: 24px;
        border-bottom: 1px solid #e5e7eb;
        margin-bottom: 8px;
    }

    .st-mo__sidebar.is-open {
        display: block;
    }

    .st-mo__sidebar-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 16px;
    }

    .st-mo__sidebar-header-actions {
        width: 100%;
    }

    .st-mo__clear-filters.is-visible {
        width: auto;
        height: auto;
        border-radius: 20px;
        padding: 5px 12px;
        font-size: .82em;
        font-weight: 600;
        gap: 4px;
    }

    .st-mo__clear-filters-icon {
        font-size: 1.1em;
        line-height: 1;
    }

    .st-mo__clear-filters-text {
        display: inline;
    }

    .st-mo__clear-tooltip {
        display: none !important;
    }

    .st-mo__sidebar-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        width: auto;
        height: auto;
        border-radius: 20px;
        border: 1px solid #e5e7eb;
        background: none;
        cursor: pointer;
        font-size: .82em;
        font-weight: 600;
        color: #555;
        padding: 5px 12px;
        line-height: 1;
        transition: color .15s ease, border-color .15s ease, background-color .15s ease;
    }

    .st-mo__sidebar-close:hover {
        color: #1a1a2e;
        border-color: #9ca3af;
    }

    .st-mo__sidebar-close-icon {
        font-size: 1.1em;
        line-height: 1;
    }

    .st-mo__main {
        width: 100%;
        min-width: 0;
    }

    /* Titel op eigen regel; filterknop + sorteren samen op de regel eronder. */
    .st-mo__main-header {
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
        padding-top: 0;
    }

    .st-mo__count {
        flex: 1 1 100%;
    }

    .st-mo__filter-toggle {
        display: inline-flex;
        width: auto;
        height: 36px;
        padding: 0 16px;
        margin-bottom: 40px;
        font-size: .9em;
        flex: 0 0 auto;
    }

    .st-mo__sort {
        margin-top: 0;
        flex: 1 1 auto;
        min-width: 0;
    }

    .st-mo__sort .facetwp-type-sort select {
        width: 100%;
    }

    /* Hide toggle button when sidebar is open */
    .st-mo.sidebar-open .st-mo__filter-toggle {
        display: none;
    }

    /* ── Kaart-herschikking op mobiel ───────────────────────────────────────
       Volgorde: infomil → titel(+info) → thema-iconen + ambitielabel → processen.
       item-main en icons worden 'display: contents' zodat al hun kinderen
       directe flex-items van item-top worden en met 'order' herschikt kunnen. */
    .st-mo-list__item-top {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .st-mo-list__item-main,
    .st-mo-list__icons {
        display: contents;
    }

    /* Pijltje achter de titel verbergen op mobiel */
    .st-mo-list__title-arrow {
        display: none;
    }

    /* Infomil boven de titel */
    .st-mo-list__infomil-wrap {
        order: 1;
        align-self: flex-start;
    }

    /* Titel met info-knop achter de eerste regel */
    .st-mo-list__title-line {
        order: 2;
        flex-wrap: nowrap;
        align-items: flex-start;
    }

    .st-mo-list__title-line .st-mo-list__title {
        flex: 1 1 auto;
        min-width: 0;
    }

    .st-mo-list__info {
        position: static;
        margin-left: auto;
        margin-top: 3px;
    }

    /* Thema-iconen (links) + ambitielabel (rechts) onder de titel */
    .st-mo-list__meta {
        order: 3;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        width: 100%;
    }

    /* Processen onderaan, gescheiden door een dunne grijze lijn.
       !important om de Elementor element-stijl (padding 0 / radius 25px) te overschrijven. */
    .st-mo-list__processes {
        order: 4;
        margin-top: 0;
        padding-top: 16px !important;
        border-top: 1px solid #e5e7eb;
        border-radius: 0 !important;
    }

    /* Filter sections full width on mobile */
    .st-mo__filter-section {
        width: 100%;
    }

    /* Panel: single column on mobile */
    .st-mo-list__panel-inner {
        flex-direction: column;
        gap: 16px;
    }

    .st-mo-list__panel-left {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .st-mo-list__panel-right {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
    }
}

/* ── FacetWP Checkboxes ──────────────────────────────────────────────────── */

.facetwp-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    padding-left: 0;
    background-image: none !important;
    cursor: pointer;
    font-size: .9em;
    line-height: 1.4;
    user-select: none;
    padding-left: 0 !important;
}

.facetwp-checkbox input[type="checkbox"] {
    display: none;
}

.facetwp-checkbox::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border: 1.5px solid #d1d5db;
    border-radius: 4px;
    background: #fff;
    transition: background-color .15s ease, border-color .15s ease;
}

.facetwp-checkbox:hover::before {
    border-color: #9ca3af;
}

.facetwp-checkbox.checked::before {
    background-color: #284692;
    border-color: #284692;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpolyline fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' points='2 8 6.5 12.5 14 4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 12px;
}

.facetwp-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    background-image: none !important;
    cursor: pointer;
    font-size: .9em;
    line-height: 1.4;
    user-select: none;
    padding-left: 0 !important;
}

.facetwp-radio input[type="radio"] {
    display: none;
}

.facetwp-radio::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border: 1.5px solid #d1d5db;
    border-radius: 50%;
    background: #fff;
    transition: background-color .15s ease, border-color .15s ease;
}

.facetwp-radio:hover::before {
    border-color: #9ca3af;
}

.facetwp-radio.checked::before {
    border-color: #284692;
    background-color: #fff;
    background-image: radial-gradient(circle, #284692 5px, transparent 5px);
}

.facetwp-display-value {
    flex: 1 1 0;
    min-width: 0;
}

.facetwp-counter {
    color: #9ca3af;
    font-size: .82em;
    flex-shrink: 0;
}

/* ── Facet icons (flat list with icons) ──────────────────────────────────── */

.st-facet-icons .facetwp-checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
}

.st-fi__icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: inline-block;
    flex-shrink: 0;
    vertical-align: middle;
}

/* ── Maatregelen Zoeken ──────────────────────────────────────────────────── */

.st-ms__inner {
    position: relative;
}

.st-ms__title {
    display: block;
}

.st-ms__field {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    background: #fff;
    overflow: hidden;
}

.st-ms__field .facetwp-facet {
    flex: 1;
    margin: 0;
}

.st-ms__field .facetwp-input-wrap {
    width: 100% !important;
    display: flex;
    align-items: center;
}

.st-ms__field .facetwp-type-search {
    display: flex;
    align-items: center;
    width: 100%;
}

.st-ms__field input[type="text"] {
    width: 100%;
    border: none !important;
    outline: none;
    background: transparent;
    box-shadow: none !important;
    font-size: 1rem;
    font-style: italic;
    padding: 16px 60px 16px 30px;
    box-sizing: border-box;
}

/* Hide FacetWP's own search icon */
.st-ms__field .facetwp-icon {
    display: none !important;
}

.st-ms__icon {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    align-items: center;
    color: #284692;
    flex-shrink: 0;
}

.st-ms__icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

/* ── Maatregelen Zoeken: live resultaten ──────────────────────────────────── */

/* Veld en resultaten vormen één geheel zodra de lijst open is:
   onderkant van het veld vierkant, bovenkant van de lijst vierkant. */
.st-ms__inner--open .st-ms__field {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.st-ms__results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 50;
    text-align: left;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    box-shadow: 0px 25px 50px -12px #00000040;
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    max-height: 360px;
    overflow: hidden;
    padding: 0;
}

/* Binnenste scroll-laag; de buitenste container clipt op de afgeronde hoeken. */
.st-ms__results-scroll {
    max-height: inherit;
    overflow-y: auto;
    padding: 8px;
    -webkit-overflow-scrolling: touch;
}

.st-ms__results[hidden] {
    display: none;
}

.st-ms__results-label {
    font-weight: 700;
    padding: 12px 16px 8px;
    color: #111827;
}

.st-ms__results-empty {
    padding: 8px 16px 16px;
    color: #6b7280;
}

.st-ms a.st-ms__result,
.st-ms a.st-ms__result:link,
.st-ms a.st-ms__result:visited,
.st-ms a.st-ms__result:hover,
.st-ms a.st-ms__result:focus,
.st-ms a.st-ms__result:active {
    text-decoration: none !important;
}

.st-ms__result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 16px;
    border-radius: 12px;
    color: #284692;
    transition: background-color 0.12s ease, color 0.12s ease;
}

.st-ms__result:hover,
.st-ms__result:focus,
.st-ms__result.is-active {
    background-color: #f3f4f6;
    color: #1f3a8a;
    font-weight: 700;
}

.st-ms__result-text {
    flex: 1;
    min-width: 0;
}

.st-ms__result-arrow {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    color: #3AAB4A;
}

.st-ms__result-arrow svg {
    width: 24px;
    height: 24px;
    display: block;
}

/* Outline cirkel in rust; gevulde groene cirkel met witte pijl bij hover. */
.st-ms__result-arrow svg circle {
    fill: none;
    stroke: currentColor;
    transition: fill 0.12s ease, stroke 0.12s ease;
}

.st-ms__result-arrow svg path {
    transition: stroke 0.12s ease;
}

.st-ms__result:hover .st-ms__result-arrow svg circle,
.st-ms__result:focus .st-ms__result-arrow svg circle,
.st-ms__result.is-active .st-ms__result-arrow svg circle {
    fill: currentColor;
    stroke: currentColor;
}

.st-ms__result:hover .st-ms__result-arrow svg path,
.st-ms__result:focus .st-ms__result-arrow svg path,
.st-ms__result.is-active .st-ms__result-arrow svg path {
    stroke: #fff;
}

/* ── Infomil code ─────────────────────────────────────────────────────────── */

.st-mo-list__infomil {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 4px 12px 4px 4px;
    background: #fff;
}

.st-mo-list__infomil-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 50%;
}

.st-mo-list__infomil-code {
    font-size: .85em;
    color: inherit;
}

/* ── Maatregel Infobar ───────────────────────────────────────────────────── */

.st-mi {
    position: relative;
    width: 100%;
}

.st-mi__bar {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: visible;
    /* Boven het paneel zodat de witte achtergrond de naad (top: -10px) verbergt. */
    position: relative;
    z-index: 1;
}

.st-mi__bar-left {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    padding: 14px 0 14px 20px;
}

.st-mi__bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
    padding: 0 20px 0 16px;
}

.st-mi__processes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: .9em;
    color: #374151;
}

.st-mi__process-item {
    display: inline-flex;
    align-items: center;
    background-color: #f3f4f6;
    border-radius: 20px;
    padding: 4px 12px;
    line-height: 1.4;
    white-space: nowrap;
}

/* Infomil badge */
.st-mi__infomil {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #e5e7eb;
    border-radius: 25px;
    padding: 2px 6px 2px 6px;
    background: #fff;
    white-space: nowrap;
}

.st-mi__infomil-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 50%;
}

.st-mi__infomil-code {
    font-size: .85em;
}

/* Milieuthema icons */
.st-mi__thema-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Toggle button */
.st-mi .st-mi__toggle {
    display: flex;
    align-items: center;
    align-self: stretch;
    gap: 8px;
    background: none;
    border: none;
    border-left: 1px solid #e5e7eb;
    box-shadow: none;
    cursor: pointer;
    padding: 0 0 0 16px;
    font-size: 14px;
    font-family: inherit;
    color: inherit;
}

.st-mi__toggle-chevron {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    transition: transform .25s ease;
}

.st-mi__toggle-chevron svg {
    display: block;
}

.st-mi__toggle.is-open .st-mi__toggle-chevron {
    transform: rotate(180deg);
}

/* Panel wrap — grid trick: pushes content down, no overlay, no scroll issue */
.st-mi__panel-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.st-mi__panel-wrap.is-open {
    grid-template-rows: 1fr;
}

/* Bar: square bottom corners while panel is open */
.st-mi.panel-open .st-mi__bar {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* Panel */
.st-mi__panel {
    position: relative;
    min-height: 0;
    overflow: hidden;
    background-color: #1a1a2e;
    background-size: cover;
    background-position: center;
    border-radius: 0 0 8px 8px;
    top:-10px;
    /* z-index niet negatief: anders valt de hele paneelinhoud achter de wrap
       en wordt o.a. de sluitknop onklikbaar. De bar dekt de naad af (z-index:1). */
    z-index: 0;
}

.st-mi__panel-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.st-mi__panel-inner {
    position: relative;
    z-index: 1;
    padding: 60px;
}

.st-mi__panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
}

.st-mi__panel-title {
    font-size: 2em;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.2;
}

.st-mi__panel-subtitle {
    font-size: 1em;
    color: rgba(255,255,255,.85);
    margin: 0;
}

.st-mi__panel-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 2em;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    opacity: .8;
    transition: opacity .15s ease;
}

.st-mi__panel-close:hover {
    opacity: 1;
}


/* Branches grid */
.st-mi__branches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.st-mi__branch-group {
    display: flex;
    flex-direction: column;
}

.st-mi__branch-group-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-weight: 700;
    color: #fff;
    padding: 8px 0;
    font-size: .85em;
    text-transform: uppercase;
    letter-spacing: .06em;
    background: none;
    border: none;
    cursor: default;
    text-align: left;
    margin-bottom: 8px;
}

.st-mi__branch-group-chevron {
    display: none;
}

.st-mi__branch-group-items-inner {
    padding-top: 0;
}

.st-mi__branch-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .9em;
    color: rgba(255,255,255,.9);
    line-height: 1.6;
    cursor: default;
}

.st-mi__branch-pill {
    display: inline-block;
    flex-shrink: 0;
    border-radius: 25px;
    padding: 2px 6px;
    background-color: #ffffff;
    border: 1px solid #F5F5F5;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.st-mi__branch-pill--Basis {
    color: #284692;
}

.st-mi__branch-pill--Gevorderd {
    color: #61B32B;
}

.st-mi__branch-item a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.st-mi__branch-item:hover,
.st-mi__branch-item a:hover {
    color: #284692;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .st-mi__bar {
        flex-wrap: wrap;
    }

    .st-mi__panel-inner {
        padding: 40px 24px;
    }

    .st-mi__branches-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 640px) {
    .st-mi__panel-inner {
        padding: 28px 16px;
    }

    .st-mi__panel-title {
        font-size: 1.4em;
    }

    .st-mi__branches-grid {
        grid-template-columns: 1fr !important;
    }

    .st-mi__bar {
        flex-wrap: wrap;
    }

    .st-mi__bar-left {
        flex: 1 1 100%;
        min-width: 0;
    }

    .st-mi__bar-right {
        flex: 1 1 auto;
        min-width: 0;
    }

    .st-mi .st-mi__toggle {
        flex: 1 1 100%;
        width: 100%;
        justify-content: center;
        border-left: none;
        border-top: 1px solid #e5e7eb;
        padding: 10px 16px;
        align-self: auto;
        font-size: 14px;
    }

    .st-mi__branch-group-title {
        border-bottom: 1px solid rgba(255,255,255,.15);
        cursor: pointer;
        margin-bottom: 0;
    }

    .st-mi__branch-group-chevron {
        display: inline-flex;
        flex-shrink: 0;
        transition: transform .25s ease;
    }

    .st-mi__branch-group-title[aria-expanded="true"] .st-mi__branch-group-chevron {
        transform: rotate(180deg);
    }

    .st-mi__branch-group-items {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows .25s ease;
    }

    .st-mi__branch-group-title[aria-expanded="true"] + .st-mi__branch-group-items {
        grid-template-rows: 1fr;
    }

    .st-mi__branch-group-items-inner {
        overflow: hidden;
        transition: padding-top .25s ease;
    }

    .st-mi__branch-group-title[aria-expanded="true"] + .st-mi__branch-group-items .st-mi__branch-group-items-inner {
        padding-top: 6px;
    }
}

/* ── Maatregel Content ──────────────────── */

.st-mc-wrapper {
    width: 100%;
}

.st-mc-section-title {
    margin: 40px 0 8px 0;
    /* Styling applied via Elementor selectors */
}

.st-mc-section-title:first-of-type {
    margin: 0 0 8px 0 !important;
}



.st-mc-section-content {
    margin-top: 16px;
    margin-bottom: 24px;
    /* Styling applied via Elementor selectors */
}

/* ── Quicklinks ───────────────────────────── */

.st-ql-wrapper {
    width: 100%;
}

.st-ql-title {
    margin: 0 0 16px 0;
    /* Styling applied via Elementor selectors */
}

.st-ql-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.st-ql-item {
    display: list-item;
}

.st-ql-link {
    display: inline-block;
    color: #284692;
    text-decoration: none !important;
    cursor: pointer;
    transition: color .2s ease;
    /* Styling applied via Elementor selectors */
}

.st-ql-link:hover {
    text-decoration: none;
}

.st-ql-icon {
    display: inline-flex;
    align-items: center;
    margin-right: 8px;
    flex-shrink: 0;
    position: relative;
    top: 4px;
    border-radius: 50%;
    border: 1px solid #54595f50;
    padding: 4px;
}

.st-ql-item.is-active .st-ql-link {
    font-weight: 500;
}

.st-ql-item.is-active .st-ql-icon {
    background-color: rgba(40, 70, 146, 0.2);
    border: 1px solid rgba(40, 70, 146, 0);
}

/* ── FacetWP: Ambitie (branche_status) filter ── */

.facetwp-facet-ambitie .facetwp-checkbox,
.facetwp-facet-ambitie .facetwp-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    cursor: pointer;
}

.facetwp-facet-ambitie .facetwp-display-value {
    flex: 0 0 auto !important;
    width: fit-content !important;
    display: inline-block;
    border-radius: 25px;
    padding: 2px 10px;
    background-color: #ffffff;
    border: 1px solid #F5F5F5;
    font-weight: 600;
    font-size: .85em;
    line-height: 1.4;
}

.facetwp-facet-ambitie .facetwp-checkbox[data-value="basis"] .facetwp-display-value,
.facetwp-facet-ambitie .facetwp-radio[data-value="basis"] .facetwp-display-value {
    color: #284692 !important;
}

.facetwp-facet-ambitie .facetwp-checkbox[data-value="Gevorderd"] .facetwp-display-value,
.facetwp-facet-ambitie .facetwp-radio[data-value="Gevorderd"] .facetwp-display-value {
    color: #61B32B !important;
}

.facetwp-facet-ambitie .facetwp-checkbox.checked[data-value="basis"] .facetwp-display-value,
.facetwp-facet-ambitie .facetwp-radio.checked[data-value="basis"] .facetwp-display-value {
    background-color: #284692;
    color: #ffffff !important;
}

.facetwp-facet-ambitie .facetwp-checkbox.checked[data-value="gevorderd"] .facetwp-display-value,
.facetwp-facet-ambitie .facetwp-radio.checked[data-value="gevorderd"] .facetwp-display-value {
    background-color: #61B32B;
    color: #ffffff !important;
}

.facetwp-facet-ambitie .facetwp-counter {
    font-weight: 400;
    opacity: .7;
    font-size: .85em;
}

/* ── Hulpmiddelen Slider ─────────────────────────────────────────────────── */

.st-hs {
    --st-hs-per-view: 3;
    --st-hs-gap: 24px;
    position: relative;
}

.st-hs__header {
    margin-bottom: 32px;
}

.st-hs__subtitle {
    color: #3AAB4A;
    font-weight: 600;
    margin-bottom: 4px;
}

.st-hs__header-title {
    color: #284692;
    margin: 0;
}

.st-hs__track-wrap {
    overflow: hidden;
}

/* Sleep-met-de-muis (en touch-swipe) navigatie */
.st-hs--draggable .st-hs__track-wrap {
    cursor: grab;
    touch-action: pan-y;
}

.st-hs--dragging .st-hs__track-wrap {
    cursor: grabbing;
}

.st-hs--dragging .st-hs__track {
    transition: none;
    user-select: none;
}

.st-hs--dragging .st-hs__slide,
.st-hs--dragging .st-hs__slide * {
    cursor: grabbing;
    user-select: none;
}

.st-hs__track {
    display: flex;
    gap: var(--st-hs-gap);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.st-hs__slide {
    flex: 0 0 calc((100% - (var(--st-hs-per-view) - 1) * var(--st-hs-gap)) / var(--st-hs-per-view));
    min-width: 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

/* Boxed-links, overflow-rechts: linkerkant blijft uitgelijnd met de boxed
   container, terwijl de scroll-track rechts doorloopt tot de schermrand.
   De slidebreedte blijft gebaseerd op de boxed-breedte via container-query
   units (cqi = inline-breedte van .st-hs, die boxed blijft). */
.st-hs--bleed-right {
    container-type: inline-size;
}

.st-hs--bleed-right .st-hs__track-wrap {
    margin-right: calc(50% - 50vw);
}

.st-hs--bleed-right .st-hs__slide {
    flex-basis: calc((100cqi - (var(--st-hs-per-view) - 1) * var(--st-hs-gap)) / var(--st-hs-per-view));
}

.st-hs__overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.st-hs__filter-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 160, 0, 0.9);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    pointer-events: none;
}

.st-hs__content {
    position: relative;
    z-index: 1;
    padding: 40px;
    width: 100%;
}

.st-hs__title {
    margin: 0 0 12px;
    color: #284692;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.st-hs__text {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
}

.st-hs__btn {
    display: inline-block;
    padding: 10px 24px;
    background-color: #3AAB4A;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.st-hs__btn:hover {
    background-color: #2d8a3a;
    color: #ffffff;
    text-decoration: none;
}

/* Overschrijf de standaard A-tag underline van het thema — in geen enkele state
   mag de knop een underline tonen. */
.st-hs a.st-hs__btn,
.st-hs a.st-hs__btn:link,
.st-hs a.st-hs__btn:visited,
.st-hs a.st-hs__btn:hover,
.st-hs a.st-hs__btn:focus,
.st-hs a.st-hs__btn:active {
    text-decoration: none !important;
}

.st-hs__btn--no-link {
    cursor: default;
    pointer-events: none;
}

/* Navigation */
.st-hs__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.st-hs__dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.st-hs__dot {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cccccc;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.st-hs__dot--active {
    background-color: #284692;
    transform: scale(1.3);
}

.st-hs__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #284692;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.st-hs__arrow:hover {
    background-color: #284692;
    color: #ffffff;
    border-color: #284692;
}

.st-hs__arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.st-hs__arrow svg {
    pointer-events: none;
}
