/**
 * Verhalen zoeken – filterpagina.
 * Huisstijl In mijn Buurt: rood #f34346, geel #fef5a2, tekst #222.
 *
 * @package understrap
 */

:root {
    --vz-red: #f34346;
    --vz-red-dark: #f11f23;
    --vz-yellow: #fef5a2;
    --vz-ink: #222;
    --vz-muted: #6b7280;
    --vz-line: #e6e6e6;
    --vz-bg-soft: #f7f7f5;
    --vz-radius: 12px;
    --vz-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --vz-shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* ---------------------------------------------------------------- hero */

.vz-hero {
    background: var(--vz-yellow);
    padding: 60px 0 50px;
}

.vz-hero-inner {
    max-width: 820px;
}

.vz-hero-title {
    font-weight: 800;
    margin: 0 0 18px;
    line-height: 1.1;
}

.vz-hero hr {
    border: 0;
    border-top: 3px solid var(--vz-ink);
    width: 60px;
    margin: 0 0 22px;
}

.vz-hero-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

.vz-hero-text p:last-child {
    margin-bottom: 0;
}

/* ---------------------------------------------------------------- layout */

.vz-app {
    padding: 45px 0 70px;
}

.vz-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

/* ---------------------------------------------------------------- sidebar */

.vz-sidebar {
    position: sticky;
    top: 20px;
    background: #fff;
    border: 1px solid var(--vz-line);
    border-radius: var(--vz-radius);
    box-shadow: var(--vz-shadow);
    padding: 24px 22px;
}

.vz-sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--vz-line);
}

.vz-sidebar-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
}

.vz-clear-all {
    background: none;
    border: none;
    color: var(--vz-red);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}

.vz-clear-all:hover {
    color: var(--vz-red-dark);
}

.vz-field {
    margin-bottom: 20px;
}

.vz-field:last-child {
    margin-bottom: 0;
}

.vz-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--vz-muted);
    margin-bottom: 7px;
}

.vz-input {
    width: 100%;
    border: 1px solid var(--vz-line);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.95rem;
    color: var(--vz-ink);
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    -webkit-appearance: none;
    appearance: none;
}

.vz-input:focus {
    outline: none;
    border-color: var(--vz-red);
    box-shadow: 0 0 0 3px rgba(243, 67, 70, 0.15);
}

.vz-select {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2712%27%20height%3D%278%27%20viewBox%3D%270%200%2012%208%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%3E%3Cpath%20d%3D%27M1%201l5%205%205-5%27%20stroke%3D%27%23555%27%20stroke-width%3D%272%27%20fill%3D%27none%27%20fill-rule%3D%27evenodd%27%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 34px;
    cursor: pointer;
}

.vz-select:disabled {
    background-color: var(--vz-bg-soft);
    color: var(--vz-muted);
    cursor: not-allowed;
}

.vz-search-input {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2716%27%20height%3D%2716%27%20viewBox%3D%270%200%2016%2016%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%3E%3Cg%20stroke%3D%27%23999%27%20stroke-width%3D%271.6%27%20fill%3D%27none%27%3E%3Ccircle%20cx%3D%277%27%20cy%3D%277%27%20r%3D%275%27%2F%3E%3Cpath%20d%3D%27M11%2011l4%204%27%20stroke-linecap%3D%27round%27%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 38px;
}

/* year range */

.vz-year-range {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vz-select-sm {
    flex: 1;
}

.vz-year-sep {
    color: var(--vz-muted);
    font-weight: 700;
}

/* thema checklist */

.vz-checklist {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vz-check {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 8px;
    border-radius: 8px;
    cursor: pointer;
    margin: 0;
    transition: background 0.12s ease;
    font-size: 0.95rem;
}

.vz-check:hover {
    background: var(--vz-bg-soft);
}

.vz-check input {
    accent-color: var(--vz-red);
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
}

.vz-check-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

/* ------------------------------------------------------------- type-ahead */

.vz-typeahead {
    position: relative;
}

.vz-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.vz-chips:empty {
    margin-bottom: 0;
}

.vz-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--vz-yellow);
    color: var(--vz-ink);
    border-radius: 999px;
    padding: 4px 6px 4px 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.vz-chip-x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.12);
    color: var(--vz-ink);
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.vz-chip-x:hover {
    background: var(--vz-red);
    color: #fff;
}

.vz-typeahead-list {
    position: absolute;
    z-index: 30;
    top: 100%;
    left: 0;
    right: 0;
    margin: 4px 0 0;
    padding: 6px;
    list-style: none;
    background: #fff;
    border: 1px solid var(--vz-line);
    border-radius: 10px;
    box-shadow: var(--vz-shadow-hover);
    max-height: 260px;
    overflow-y: auto;
}

.vz-typeahead-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 7px;
    cursor: pointer;
    font-size: 0.92rem;
}

.vz-typeahead-item:hover {
    background: var(--vz-bg-soft);
}

.vz-typeahead-count {
    font-size: 0.78rem;
    color: var(--vz-muted);
    background: var(--vz-bg-soft);
    border-radius: 999px;
    padding: 1px 8px;
    flex-shrink: 0;
}

.vz-typeahead-empty {
    padding: 10px;
    color: var(--vz-muted);
    font-size: 0.9rem;
    text-align: center;
}

/* ---------------------------------------------------------------- main */

.vz-main {
    min-width: 0;
}

.vz-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.vz-count {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--vz-ink);
}

.vz-toolbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.vz-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* view toggle */

.vz-viewtoggle {
    display: inline-flex;
    background: var(--vz-bg-soft);
    border: 1px solid var(--vz-line);
    border-radius: 999px;
    padding: 3px;
}

.vz-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    background: none;
    color: var(--vz-muted);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.vz-view-btn.is-active {
    background: var(--vz-red);
    color: #fff;
    box-shadow: 0 2px 6px rgba(243, 67, 70, 0.35);
}

.vz-view-ico {
    font-size: 0.95rem;
    line-height: 1;
}

.vz-sort-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--vz-muted);
    margin: 0;
    white-space: nowrap;
}

.vz-sort .vz-select {
    width: auto;
    min-width: 170px;
}

/* active filter chips */

.vz-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.vz-active-filters:not(.has-filters) {
    display: none;
}

.vz-active-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 1.5px solid var(--vz-red);
    color: var(--vz-red);
    border-radius: 999px;
    padding: 5px 8px 5px 14px;
    font-size: 0.85rem;
    font-weight: 600;
}

.vz-active-x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: none;
    border-radius: 50%;
    background: var(--vz-red);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.vz-active-x:hover {
    background: var(--vz-red-dark);
}

/* ---------------------------------------------------------------- results */

.vz-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px 26px;
    transition: opacity 0.2s ease;
}

.vz-results.is-loading {
    opacity: 0.45;
    pointer-events: none;
}

.vz-result-item {
    min-width: 0;
}

/* ===== Moderne resultaatkaart (scoped op #vz-results) ===== */

.vz-result-item .story-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    padding: 0 20px 22px;
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.45;
    color: #666;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.vz-result-item .story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
    border-color: #e0e0e0;
}

/* afbeelding – full-bleed bovenaan met hover-zoom */
.vz-result-item .entry-header {
    position: relative;
    margin: 0;
}

.vz-result-item .entry-header > a:first-child {
    display: block;
    margin: 0 -20px 14px;
    overflow: hidden;
    background: #f3f3f1;
    line-height: 0;
}

.vz-result-item .entry-header > a:first-child:empty {
    display: none;
}

.vz-result-item .entry-header > a:first-child img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.vz-result-item .story-card:hover .entry-header > a:first-child img {
    transform: scale(1.06);
}

/* thema-badge */
.vz-result-item .thema-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #f7f7f5;
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.15s ease;
}

.vz-result-item .thema-link:hover {
    color: #db0e12;
}

.vz-result-item .thema-link .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

/* titel */
.vz-result-item .entry-header > a:last-child {
    display: block;
    text-decoration: none;
}

.vz-result-item .entry-header h4 {
    margin: 0;
    text-align: left;
    font-family: "Pathway Gothic One", sans-serif;
    font-weight: 300;
    font-size: 1.4rem;
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: #1f1f1f;
    transition: color 0.15s ease;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vz-result-item .entry-header > a:last-child:hover h4 {
    color: #db0e12;
}

/* locatie */
.vz-result-item .story-card > span {
    display: block;
    text-align: left;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #db0e12;
    margin-top: 9px;
    line-height: 1.3;
}

.vz-result-item .story-card > span:empty {
    display: none;
    margin: 0;
}

.vz-result-item .story-card > span a {
    color: inherit;
    text-decoration: none;
}

.vz-result-item .story-card > span a:hover {
    text-decoration: underline;
}

/* scheiding + meta-tekst */
.vz-result-item .story-card > hr {
    margin: 12px 0;
    border: 0;
    border-top: 1px solid #eee;
}

.vz-result-item .story-card > p {
    margin: 0;
}

@media (max-width: 575px) {
    .vz-result-item .story-card {
        padding: 0 14px 16px;
    }

    .vz-result-item .entry-header > a:first-child {
        margin: 0 -14px 12px;
    }

    .vz-result-item .entry-header > a:first-child img {
        height: 150px;
    }

    .vz-result-item .entry-header h4 {
        font-size: 1.2rem;
    }
}

.vz-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--vz-muted);
    font-size: 1.05rem;
    background: var(--vz-bg-soft);
    border-radius: var(--vz-radius);
}

/* load more + spinner */

.vz-loadmore-wrap {
    text-align: center;
    margin-top: 45px;
}

.vz-loadmore {
    min-width: 240px;
}

.vz-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px;
}

.vz-spinner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--vz-red);
    animation: vz-bounce 1.2s infinite ease-in-out both;
}

.vz-spinner-dot:nth-child(1) { animation-delay: -0.24s; }
.vz-spinner-dot:nth-child(2) { animation-delay: -0.12s; }

@keyframes vz-bounce {
    0%, 80%, 100% { transform: scale(0.4); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

/* ---------------------------------------------------------------- kaart */

.vz-map-wrap {
    position: relative;
    height: 68vh;
    min-height: 460px;
    border-radius: var(--vz-radius);
    overflow: hidden;
    border: 1px solid var(--vz-line);
    box-shadow: var(--vz-shadow);
    z-index: 1;
}

.vz-map {
    height: 100%;
    width: 100%;
}

.vz-map-info {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--vz-muted);
    margin-bottom: 12px;
}

/* thema-legenda */

.vz-map-legend {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 16px;
    margin-bottom: 14px;
    padding: 10px 14px;
    background: var(--vz-bg-soft);
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--vz-ink);
}

.vz-legend-title {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 0.78rem;
    color: var(--vz-muted);
}

.vz-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
}

.vz-legend-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

/* gekleurde markers (divIcon) */

.vz-marker {
    background: none !important;
    border: none !important;
}

.vz-marker svg {
    display: block;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.35));
}

/* cluster-bolletjes in themakleur #db0e12 */

.marker-cluster {
    background-clip: padding-box;
    border-radius: 50%;
    background-color: rgba(219, 14, 18, 0.35);
}

.marker-cluster div {
    width: 34px;
    height: 34px;
    margin-top: 3px;
    margin-left: 3px;
    border-radius: 50%;
    background-color: rgba(219, 14, 18, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-cluster span {
    color: #fff;
    font-weight: 800;
    line-height: 1;
}

.marker-cluster-small,
.marker-cluster-medium,
.marker-cluster-large {
    background-color: rgba(219, 14, 18, 0.35);
}

.marker-cluster-small div,
.marker-cluster-medium div,
.marker-cluster-large div {
    background-color: rgba(219, 14, 18, 0.9);
}

/* reset-knop op de kaart */

.vz-map-reset {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: var(--vz-ink);
    border: 1px solid var(--vz-line);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    transition: background 0.15s ease, color 0.15s ease;
}

.vz-map-reset:hover {
    background: var(--vz-red);
    color: #fff;
    border-color: var(--vz-red);
}

.vz-map-reset-ico {
    font-size: 1rem;
    line-height: 1;
}

/* laad-overlay met deurbel */

.vz-map-loader {
    position: absolute;
    inset: 0;
    z-index: 650;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(1px);
}

.vz-loader-inner {
    text-align: center;
}

.vz-loader-img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    transform-origin: 50% 12%;
    animation: vz-ring 1s ease-in-out infinite;
}

.vz-loader-text {
    margin-top: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--vz-ink);
}

@keyframes vz-ring {
    0%   { transform: rotate(0deg); }
    15%  { transform: rotate(14deg); }
    30%  { transform: rotate(-12deg); }
    45%  { transform: rotate(9deg); }
    60%  { transform: rotate(-7deg); }
    75%  { transform: rotate(4deg); }
    100% { transform: rotate(0deg); }
}

@media (prefers-reduced-motion: reduce) {
    .vz-loader-img { animation: vz-pulse 1.2s ease-in-out infinite; }
    @keyframes vz-pulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.5; }
    }
}

/* Leaflet popup in huisstijl */
.vz-popup {
    text-align: left;
    width: 220px;
}

.vz-pop-imglink {
    display: block;
    margin: -1px -1px 10px;
}

.vz-pop-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
    border-radius: 8px 8px 0 0;
}

.vz-pop-title {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--vz-ink);
    line-height: 1.25;
    margin-bottom: 5px;
    text-decoration: none;
}

.vz-pop-title:hover {
    color: var(--vz-red);
}

.vz-pop-plaats {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--vz-red);
    margin-bottom: 4px;
}

.vz-pop-vert {
    font-size: 0.85rem;
    color: var(--vz-muted);
    margin-bottom: 10px;
}

.vz-pop-btn {
    display: inline-block;
    background: var(--vz-red);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 999px;
    text-decoration: none;
}

.vz-pop-btn:hover {
    background: var(--vz-red-dark);
    color: #fff;
}

/* Leaflet-popup container strak maken */
.leaflet-popup-content {
    margin: 12px 14px 14px;
}

.leaflet-popup-content-wrapper {
    border-radius: 12px;
}

/* ---------------------------------------------------------- mobile toggle */

.vz-mobile-toggle {
    display: none;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--vz-red);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 20px;
}

.vz-mobile-toggle-icon {
    font-size: 1.1rem;
}

/* ---------------------------------------------------------------- responsive */

@media (max-width: 991px) {
    .vz-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .vz-mobile-toggle {
        display: flex;
    }

    .vz-sidebar {
        position: static;
        display: none;
        margin-bottom: 24px;
    }

    .vz-sidebar.is-open {
        display: block;
    }
}

@media (max-width: 575px) {
    .vz-hero {
        padding: 40px 0 34px;
    }

    .vz-results {
        grid-template-columns: 1fr 1fr;
        gap: 22px 16px;
    }

    .vz-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .vz-toolbar-right {
        width: 100%;
        justify-content: space-between;
    }

    .vz-sort .vz-select {
        min-width: 0;
    }

    .vz-map-wrap {
        height: 60vh;
        min-height: 380px;
    }
}

@media (max-width: 400px) {
    .vz-results {
        grid-template-columns: 1fr;
    }
}

/* ================================================================
   HOMEPAGE-BLOKKEN
   ================================================================ */

/* zoek-hero */

.vz-home-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 90px 0 80px;
    text-align: center;
    overflow: hidden;
}

.vz-home-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(219, 14, 18, 0.72), rgba(120, 8, 10, 0.85));
    z-index: 0;
}

.vz-home-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.vz-home-hero-logo {
    width: 90px;
    height: auto;
    margin-bottom: 22px;
}

.vz-home-hero-title {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 16px;
    color: #fff;
}

.vz-home-hero-text {
    font-size: 1.1rem;
    line-height: 1.55;
    margin-bottom: 30px;
    opacity: 0.96;
}

.vz-home-hero-text p:last-child {
    margin-bottom: 0;
}

.vz-home-search {
    display: flex;
    gap: 10px;
    max-width: 620px;
    margin: 0 auto;
    background: #fff;
    padding: 8px;
    border-radius: 999px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

.vz-home-search-input {
    flex: 1;
    border: none;
    background: none;
    padding: 12px 20px;
    font-size: 1.05rem;
    color: #222;
    border-radius: 999px;
    -webkit-appearance: none;
    appearance: none;
}

.vz-home-search-input:focus {
    outline: none;
}

.vz-home-search-btn {
    flex-shrink: 0;
    border: none;
    background: #db0e12;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 26px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.vz-home-search-btn:hover {
    background: #b30c0f;
}

.vz-home-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px 22px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.vz-home-hero-count {
    font-size: 0.98rem;
    opacity: 0.95;
}

.vz-home-hero-count strong {
    font-weight: 800;
}

.vz-home-hero-maplink {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.16);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 9px 18px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.vz-home-hero-maplink:hover {
    background: rgba(255, 255, 255, 0.28);
}

/* compacte stats onder het logo */

.vz-hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 28px;
    margin: 6px 0 26px;
}

.vz-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}

.vz-hero-stat-num {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 800;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.vz-hero-stat-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.85;
}

/* sectie-koppen */

.vz-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 34px;
}

.vz-section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin: 0 0 8px;
}

.vz-section-sub {
    font-size: 1.05rem;
    color: var(--vz-muted);
    margin: 0;
}

/* impact-cijfers */

.vz-stats {
    padding: 48px 0;
    background: var(--vz-bg-soft);
}

.vz-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.vz-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.vz-stat-num {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1;
    color: #db0e12;
    font-variant-numeric: tabular-nums;
}

.vz-stat-label {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--vz-muted);
}

/* thema's uitgelicht */

.vz-themas {
    padding: 64px 0;
}

.vz-thema-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.vz-thema-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 170px;
    padding: 24px;
    border-radius: var(--vz-radius);
    background: var(--thema-color, #db0e12);
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    box-shadow: var(--vz-shadow);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.vz-thema-card {
    background-size: cover;
    background-position: center;
}

/* kleur-tint over de achtergrondfoto */
.vz-thema-card.has-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--thema-color, #db0e12);
    opacity: 0.5;
    mix-blend-mode: multiply;
    z-index: 0;
}

.vz-thema-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.45));
    z-index: 0;
}

.vz-thema-card.has-image {
    min-height: 200px;
}

.vz-thema-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--vz-shadow-hover);
    color: #fff;
}

.vz-thema-name,
.vz-thema-cta {
    position: relative;
    z-index: 1;
}

.vz-thema-name {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 8px;
}

.vz-thema-cta {
    font-size: 0.9rem;
    font-weight: 700;
    opacity: 0.95;
}

/* kaart-uitgelicht */

.vz-mapcta {
    padding: 0;
}

.vz-mapcta-inner {
    background: linear-gradient(120deg, #db0e12, #8a090b);
    color: #fff;
    border-radius: var(--vz-radius);
    padding: 48px 40px;
    text-align: center;
    margin: 56px 0;
}

.vz-mapcta-title {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
}

.vz-mapcta-inner p {
    font-size: 1.08rem;
    max-width: 560px;
    margin: 0 auto 22px;
    opacity: 0.96;
}

.vz-mapcta-btn {
    background: #fff !important;
    border-color: #fff !important;
    color: #db0e12 !important;
    font-weight: 700;
}

.vz-mapcta-btn:hover {
    background: #fef5a2 !important;
    border-color: #fef5a2 !important;
    color: #222 !important;
}

/* wie zijn wij + CTA */

.vz-about {
    padding: 60px 0;
}

.vz-about-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.vz-about-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin: 0 0 14px;
}

.vz-about hr {
    border: 0;
    border-top: 3px solid #222;
    width: 60px;
    margin: 0 auto 20px;
}

.vz-about-text {
    font-size: 1.08rem;
    line-height: 1.6;
    margin-bottom: 26px;
}

.vz-about-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.vz-about-image {
    display: block;
    max-width: 260px;
    width: 100%;
    height: auto;
    margin: 34px auto 0;
    border-radius: var(--vz-radius);
}

/* impressie-gallery */

.vz-impressie {
    padding: 64px 0;
}

.vz-impressie-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 190px;
    gap: 14px;
}

.vz-impressie-item {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--vz-shadow);
    grid-column: span 1;
    grid-row: span 1;
}

/* bento met 4 tegels: één grote 2×2, één brede, twee kleine → vult 4×2 */
.vz-bento .vz-impressie-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.vz-bento .vz-impressie-item:nth-child(2) {
    grid-column: span 2;
}

.vz-impressie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.vz-impressie-item:hover img {
    transform: scale(1.06);
}

.vz-impressie-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(219, 14, 18, 0);
    transition: background 0.2s ease;
}

.vz-impressie-item:hover::after {
    background: rgba(219, 14, 18, 0.18);
}

@media (max-width: 767px) {
    .vz-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 16px;
    }

    .vz-home-search {
        flex-direction: column;
        border-radius: 18px;
        padding: 10px;
    }

    .vz-home-search-input,
    .vz-home-search-btn {
        width: 100%;
        border-radius: 12px;
    }

    .vz-mapcta-inner {
        padding: 36px 22px;
    }

    .vz-impressie-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }

    .vz-hero-stats {
        gap: 8px 18px;
    }
}

@media (max-width: 400px) {
    .vz-impressie-grid {
        grid-auto-rows: 116px;
    }
}

/* ================================================================
   HUISSTIJL-FONTS
   Pathway Gothic One = koppen/labels/cijfers · Cardo = bodytekst
   (beide al geladen via theme.css @import)
   ================================================================ */

.vz-home-hero-title,
.vz-hero-stat-num,
.vz-hero-stat-label,
.vz-stat-num,
.vz-stat-label,
.vz-section-title,
.vz-count,
.vz-thema-name,
.vz-thema-cta,
.vz-mapcta-title,
.vz-about-title,
.vz-sidebar-title,
.vz-hero-title,
.vz-label,
.vz-view-btn,
.vz-home-search-btn {
    font-family: "Pathway Gothic One", sans-serif;
    font-weight: 300;
}

/* iets ruimere letterafstand voor de condensed koppen */
.vz-home-hero-title,
.vz-section-title,
.vz-mapcta-title,
.vz-about-title,
.vz-thema-name {
    letter-spacing: 0.01em;
}

.vz-stat-label,
.vz-hero-stat-label {
    letter-spacing: 0.08em;
}

/* bodytekst in Cardo */
.vz-home-hero-text,
.vz-hero-text,
.vz-section-sub,
.vz-about-text,
.vz-impressie .vz-section-sub {
    font-family: "Cardo", serif;
}
