/*
 Theme Name:   Kadence Child
 Theme URI:    https://bestproduct.nl
 Description:  Herbruikbaar child theme — configureer via site-config.php
 Author:       BestProduct
 Template:     kadence
 Version:      2.0.0
 Text Domain:  kadence-child
*/

/*
 * Kleuren worden dynamisch ingeladen via functions.php (wp_add_inline_style).
 * CSS-variabelen staan dus NIET hier, maar worden gegenereerd vanuit site-config.php.
 * Hieronder staat uitsluitend structurele CSS zonder hardcoded kleuren.
 */

/* ═══════════════════════════════════════════════════
   BASE
   ═══════════════════════════════════════════════════ */
body {
    background: var(--bp-bg);
    font-family: var(--bp-font-body), sans-serif;
    color: var(--bp-text);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--bp-font-head), sans-serif;
}

img { height: auto; }

a { color: var(--bp-accent); }
a:hover { color: var(--bp-accent-hover); }

/* ═══════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════ */
.site-header {
    background: var(--bp-surface) !important;
    border-bottom: 1px solid var(--bp-border);
    box-shadow: 0 1px 8px rgba(0,0,0,0.05);
}

#primary-navigation .menu-item a,
.kadence-navigation .menu-item a {
    font-family: var(--bp-font-body), sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--bp-text);
    padding: 6px 10px;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

#primary-navigation .menu-item a:hover,
.kadence-navigation .menu-item a:hover {
    background: var(--bp-accent-dim);
    color: var(--bp-accent);
    text-decoration: none;
}

#primary-navigation .current-menu-item > a,
.kadence-navigation .current-menu-item > a {
    color: var(--bp-accent);
    background: var(--bp-accent-dim);
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.site-footer,
.wp-block-template-part[class*="footer"] {
    background: #0a1628 !important;
    color: rgba(255,255,255,0.65);
    border-top: none !important;
}

.bp-footer {
    background: #0a1628;
    color: rgba(255,255,255,0.65);
    padding: 48px 24px 28px;
}

.bp-footer__inner {
    max-width: var(--bp-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.bp-footer__brand-name {
    font-family: var(--bp-font-head), sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px;
}

.bp-footer__brand-desc {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.bp-footer__col-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255,255,255,0.35);
    margin: 0 0 14px;
}

.bp-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.bp-footer__links a {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color .15s;
}

.bp-footer__links a:hover {
    color: #ffffff;
    text-decoration: none;
}

.bp-footer__bottom {
    max-width: var(--bp-max);
    margin: 0 auto;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

/* ═══════════════════════════════════════════════════
   GEDEELDE SECTIE-WRAPPER
   ═══════════════════════════════════════════════════ */
.bp-section {
    max-width: var(--bp-max);
    margin: 0 auto;
    padding: 52px 24px;
}

.bp-section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 12px;
    flex-wrap: wrap;
}

.bp-section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--bp-text);
    margin: 0;
}

.bp-section-title span { color: var(--bp-accent); }

.bp-section-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--bp-accent);
    text-decoration: none;
    white-space: nowrap;
}
.bp-section-link:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.bp-hero {
    background: linear-gradient(135deg, var(--bp-hero-from) 0%, var(--bp-hero-to) 100%);
    padding: 64px 24px 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 80% 30%, rgba(255,255,255,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.bp-hero__inner {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
}

.bp-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 20px;
}

.bp-hero__label span {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    animation: bp-blink 2s ease-in-out infinite;
}

@keyframes bp-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: .2; }
}

.bp-hero__title {
    font-family: var(--bp-font-head), sans-serif;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 16px;
}

.bp-hero__title em {
    font-style: normal;
    color: var(--bp-accent-light, #60a5fa);
}

.bp-hero__sub {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255,255,255,0.65);
    margin: 0 auto 32px;
    max-width: 520px;
}

.bp-hero__search {
    display: flex;
    align-items: center;
    max-width: 480px;
    margin: 0 auto;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    transition: border-color .2s;
}

.bp-hero__search:focus-within {
    border-color: rgba(255,255,255,0.35);
}

.bp-hero__search input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-size: 14px;
    color: #ffffff;
    font-family: var(--bp-font-body), sans-serif;
}

.bp-hero__search input::placeholder { color: rgba(255,255,255,0.4); }

.bp-hero__search button {
    background: var(--bp-accent);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--bp-font-body), sans-serif;
    transition: background .15s;
    white-space: nowrap;
}

.bp-hero__search button:hover { background: var(--bp-accent-hover); }

/* ═══════════════════════════════════════════════════
   CATEGORIEBALK
   ═══════════════════════════════════════════════════ */
.bp-cats-wrap {
    background: var(--bp-surface);
    border-bottom: 1px solid var(--bp-border);
}

.bp-cats {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
}

@media (max-width: 900px) { .bp-cats { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 520px) { .bp-cats { grid-template-columns: repeat(2, 1fr); } }

.bp-cat {
    background: var(--bp-surface);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius);
    padding: 18px 10px 14px;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: border-color .15s, box-shadow .15s, transform .15s;
}

.bp-cat:hover {
    border-color: var(--bp-accent);
    box-shadow: var(--bp-shadow-hover);
    transform: translateY(-2px);
    text-decoration: none;
}

.bp-cat__icon  { font-size: 26px; line-height: 1; }
.bp-cat__name  { font-size: 12px; font-weight: 600; color: var(--bp-text); line-height: 1.3; }
.bp-cat__count { font-size: 11px; color: var(--bp-muted); }

/* Icoontjes groter op mobiel */
@media (max-width: 520px) {
    .bp-cat__icon { font-size: 34px; }
    .bp-cat__name { font-size: 13px; }
    .bp-cat { padding: 20px 10px 16px; gap: 10px; }
}

/* ═══════════════════════════════════════════════════
   POST KAARTJES
   ═══════════════════════════════════════════════════ */
.bp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 860px) { .bp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .bp-grid { grid-template-columns: 1fr; } }

.bp-card {
    background: var(--bp-surface);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--bp-shadow);
    transition: box-shadow .2s, transform .2s;
    text-decoration: none;
    color: inherit;
}

.bp-card:hover {
    box-shadow: var(--bp-shadow-hover);
    transform: translateY(-3px);
    text-decoration: none;
    color: inherit;
}

.bp-card__thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--bp-bg);
}

.bp-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
    display: block;
}

.bp-card:hover .bp-card__thumb img { transform: scale(1.04); }

.bp-card__thumb--none {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    background: linear-gradient(135deg, #e8f0fe 0%, #f0f4ff 100%);
    aspect-ratio: 16/9;
}

.bp-card__body {
    padding: 16px 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bp-card__cat {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--bp-accent);
}

.bp-card__title {
    font-family: var(--bp-font-head), sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--bp-text);
    margin: 0;
}

.bp-card__excerpt {
    font-size: 13px;
    line-height: 1.6;
    color: var(--bp-muted);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bp-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--bp-border);
    font-size: 11px;
    color: var(--bp-muted);
}

/* ═══════════════════════════════════════════════════
   ARCHIEF / CATEGORIE HEADER
   ═══════════════════════════════════════════════════ */
.bp-archive-header {
    background: var(--bp-surface);
    border-bottom: 1px solid var(--bp-border);
    padding: 36px 24px;
}

.bp-archive-header__inner {
    max-width: var(--bp-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
}

.bp-archive-header__icon {
    font-size: 36px;
    line-height: 1;
    flex-shrink: 0;
}

.bp-archive-header__label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--bp-accent);
    margin-bottom: 4px;
}

.bp-archive-header__title {
    font-family: var(--bp-font-head), sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--bp-text);
}

.bp-archive-header__desc {
    font-size: 13px;
    color: var(--bp-muted);
    margin: 0;
}

/* ═══════════════════════════════════════════════════
   PAGINERING
   ═══════════════════════════════════════════════════ */
.bp-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 16px 0 48px;
    flex-wrap: wrap;
}

.bp-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--bp-border);
    font-size: 13px;
    font-weight: 500;
    color: var(--bp-text);
    text-decoration: none;
    background: var(--bp-surface);
    transition: all .15s;
}

.bp-pagination .page-numbers:hover,
.bp-pagination .page-numbers.current {
    background: var(--bp-accent);
    border-color: var(--bp-accent);
    color: #fff;
}

.bp-pagination .page-numbers.dots {
    border: none;
    background: none;
    cursor: default;
}

/* ═══════════════════════════════════════════════════
   SINGLE ARTIKEL
   ═══════════════════════════════════════════════════ */
.bp-single {
    max-width: var(--bp-max);
    margin: 0 auto;
    padding: 40px 24px 64px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 48px;
    align-items: start;
}

/* Voorkomt dat article-content over sidebar heen loopt */
.bp-single__main {
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* Sidebar sticky zodat hij mee scrollt maar in beeld blijft */
.bp-single__sidebar {
    position: sticky;
    top: 80px; /* hoogte header + marge */
}

/* Tablet: sidebar verbergen, content full-width */
@media (max-width: 1024px) {
    .bp-single {
        grid-template-columns: 1fr;
    }
    .bp-single__sidebar {
        display: none;
    }
}

/* Artikel header */
.bp-single__header {
    margin-bottom: 28px;
}

.bp-single__breadcrumb {
    font-size: 12px;
    color: var(--bp-muted);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.bp-single__breadcrumb a {
    color: var(--bp-muted);
    text-decoration: none;
}
.bp-single__breadcrumb a:hover { color: var(--bp-accent); }

.bp-single__cat {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--bp-accent);
    margin-bottom: 10px;
    display: block;
}

.bp-single__title {
    font-family: var(--bp-font-head), sans-serif;
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--bp-text);
    margin: 0 0 16px;
}

.bp-single__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    color: var(--bp-muted);
    padding-bottom: 20px;
    border-bottom: 1px solid var(--bp-border);
    flex-wrap: wrap;
}

/* Uitgelichte afbeelding */
.bp-single__thumb {
    border-radius: var(--bp-radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
    aspect-ratio: 16/9;
}

.bp-single__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Artikel content */
.bp-single__content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--bp-text);
}

.bp-single__content h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 36px 0 14px;
    color: var(--bp-text);
}

.bp-single__content h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 28px 0 12px;
    color: var(--bp-text);
}

.bp-single__content p { margin: 0 0 18px; }

.bp-single__content ul,
.bp-single__content ol {
    margin: 0 0 18px 22px;
}

.bp-single__content li { margin-bottom: 6px; }

.bp-single__content a {
    color: var(--bp-accent);
    text-decoration: underline;
}

.bp-single__content img {
    border-radius: var(--bp-radius);
    max-width: 100%;
}

/* Sidebar */
.bp-single__sidebar {
    position: sticky;
    top: 100px;
}

.bp-sidebar-box {
    background: var(--bp-surface);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius-lg);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--bp-shadow);
}

.bp-sidebar-box__title {
    font-family: var(--bp-font-head), sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--bp-text);
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--bp-border);
}

.bp-sidebar-related {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.bp-sidebar-related li a {
    font-size: 13px;
    font-weight: 500;
    color: var(--bp-text);
    text-decoration: none;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.4;
}

.bp-sidebar-related li a:hover { color: var(--bp-accent); }

.bp-sidebar-related li a::before {
    content: '→';
    color: var(--bp-accent);
    flex-shrink: 0;
    font-size: 11px;
    margin-top: 2px;
}

/* ═══════════════════════════════════════════════════
   ZOEKRESULTATEN
   ═══════════════════════════════════════════════════ */
.bp-search-header {
    background: var(--bp-surface);
    border-bottom: 1px solid var(--bp-border);
    padding: 32px 24px;
}

.bp-search-header__inner {
    max-width: var(--bp-max);
    margin: 0 auto;
}

.bp-search-header__label {
    font-size: 12px;
    color: var(--bp-muted);
    margin-bottom: 6px;
}

.bp-search-header__query {
    font-family: var(--bp-font-head), sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--bp-text);
    margin: 0 0 4px;
}

.bp-search-header__query em {
    font-style: normal;
    color: var(--bp-accent);
}

.bp-search-header__count {
    font-size: 13px;
    color: var(--bp-muted);
}

/* ═══════════════════════════════════════════════════
   404 PAGINA
   ═══════════════════════════════════════════════════ */
.bp-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 64px 24px;
}

.bp-404__inner { max-width: 480px; }

.bp-404__code {
    font-family: var(--bp-font-head), sans-serif;
    font-size: 96px;
    font-weight: 700;
    line-height: 1;
    color: var(--bp-border);
    margin-bottom: 16px;
}

.bp-404__title {
    font-family: var(--bp-font-head), sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--bp-text);
    margin: 0 0 10px;
}

.bp-404__sub {
    font-size: 14px;
    color: var(--bp-muted);
    line-height: 1.65;
    margin: 0 0 28px;
}

.bp-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bp-accent);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .15s;
    font-family: var(--bp-font-body), sans-serif;
}

.bp-btn:hover {
    background: var(--bp-accent-hover);
    color: #fff;
    text-decoration: none;
}

/* ═══════════════════════════════════════════════════
   NIEUWSBRIEF
   ═══════════════════════════════════════════════════ */
.bp-newsletter {
    background: linear-gradient(135deg, var(--bp-hero-from) 0%, var(--bp-hero-to) 100%);
    padding: 52px 24px;
}

.bp-newsletter__inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.bp-newsletter__icon   { font-size: 32px; margin-bottom: 12px; }

.bp-newsletter__title {
    font-family: var(--bp-font-head), sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px;
}

.bp-newsletter__sub {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin: 0 auto 24px;
    max-width: 420px;
    line-height: 1.65;
}

.bp-newsletter__form {
    display: flex;
    gap: 8px;
    max-width: 420px;
    margin: 0 auto;
}

.bp-newsletter__form input {
    flex: 1;
    padding: 11px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 14px;
    font-family: var(--bp-font-body), sans-serif;
    outline: none;
    transition: border-color .2s;
}

.bp-newsletter__form input::placeholder { color: rgba(255,255,255,0.35); }
.bp-newsletter__form input:focus { border-color: rgba(255,255,255,0.4); }

.bp-newsletter__form button {
    background: var(--bp-accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 11px 22px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--bp-font-body), sans-serif;
    white-space: nowrap;
    transition: background .15s;
}

.bp-newsletter__form button:hover { background: var(--bp-accent-hover); }

@media (max-width: 480px) {
    .bp-newsletter__form { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════
   SCHEIDINGSLIJN
   ═══════════════════════════════════════════════════ */
.bp-divider {
    border: none;
    border-top: 1px solid var(--bp-border);
    margin: 0;
}

/* ═══════════════════════════════════════════════════
   EIGEN HEADER — volledig herschreven v2.2
   ═══════════════════════════════════════════════════ */

/* ── Wrapper ── */
.bp-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bp-surface);
    border-bottom: 1px solid var(--bp-border);
    box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}

/* ── Balk-wrapper (bevat inner + zoekbalk) */
.bp-header__bar {
    background: var(--bp-surface);
}

/* ── Inner: logo | nav | acties */
.bp-header__inner {
    max-width: var(--bp-max);
    margin: 0 auto;
    padding: 0 28px;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 16px;
}

/* ── Logo ── */
.bp-header__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: 8px;
}

.bp-logo {
    font-family: 'Sora', var(--bp-font-head), sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    white-space: nowrap;
}

.bp-logo__first  { color: var(--bp-text); }
.bp-logo__second { color: var(--bp-accent); }

/* ── Desktop navigatie ── */
.bp-nav {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
}

.bp-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
}

.bp-nav__list .menu-item a {
    display: block;
    font-family: var(--bp-font-body), sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--bp-text);
    padding: 6px 11px;
    border-radius: 7px;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.bp-nav__list .menu-item a:hover,
.bp-nav__list .current-menu-item > a {
    background: var(--bp-accent-dim);
    color: var(--bp-accent);
    text-decoration: none;
}

/* ── Acties rechts — altijd aan het einde, ook als nav verborgen is ── */
.bp-header__actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto; /* duwt acties naar rechts ongeacht nav-breedte */
}

/* ── Zoekknop ── */
.bp-header__search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bp-bg);
    border: 1.5px solid var(--bp-border);
    border-radius: 8px;
    width: 38px;
    height: 38px;
    cursor: pointer;
    color: var(--bp-muted);
    transition: border-color .15s, color .15s, background .15s;
    flex-shrink: 0;
    padding: 0;
}

.bp-header__search-btn:hover,
.bp-header__search-btn.is-active {
    border-color: var(--bp-accent);
    color: var(--bp-accent);
    background: var(--bp-accent-dim);
}

/* ── Hamburger (mobiel) ── */
.bp-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: var(--bp-bg);
    border: 1.5px solid var(--bp-border);
    border-radius: 8px;
    width: 38px;
    height: 38px;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color .15s;
}

.bp-hamburger:hover {
    border-color: var(--bp-accent);
}

.bp-hamburger__line {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--bp-text);
    border-radius: 2px;
    transition: transform .22s ease, opacity .22s ease, width .22s ease;
    transform-origin: center;
}

/* Animatie naar ✕ */
.bp-hamburger.is-open .bp-hamburger__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.bp-hamburger.is-open .bp-hamburger__line:nth-child(2) {
    opacity: 0;
    width: 0;
}
.bp-hamburger.is-open .bp-hamburger__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Uitklapbare zoekbalk ── */
.bp-search-drop {
    border-top: 1px solid var(--bp-border);
    background: var(--bp-surface);
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

.bp-search-drop[hidden] { display: none; }

.bp-search-drop__inner {
    max-width: var(--bp-max);
    margin: 0 auto;
    padding: 12px 28px;
}

.bp-search-drop__form {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bp-bg);
    border: 1.5px solid var(--bp-border);
    border-radius: 9px;
    padding: 9px 16px;
    transition: border-color .2s;
}

.bp-search-drop__form:focus-within {
    border-color: var(--bp-accent);
    background: var(--bp-surface);
}

.bp-search-drop__icon {
    color: var(--bp-muted);
    flex-shrink: 0;
}

.bp-search-drop__form input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-size: 14px;
    color: var(--bp-text);
    font-family: var(--bp-font-body), sans-serif;
    min-width: 0;
}

.bp-search-drop__form input::placeholder { color: var(--bp-muted); }

.bp-search-drop__form button {
    background: var(--bp-accent);
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 7px 18px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--bp-font-body), sans-serif;
    transition: background .15s;
    white-space: nowrap;
    flex-shrink: 0;
}

.bp-search-drop__form button:hover { background: var(--bp-accent-hover); }

/* ── Mobiel side-panel menu — schuift van RECHTS ── */
.bp-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;          /* rechts verankerd */
    bottom: 0;
    left: auto;        /* niet links */
    width: clamp(260px, 85vw, 320px);
    background: var(--bp-surface);
    z-index: 1100;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 0 40px;
    transform: translateX(100%);   /* start buiten recht */
    transition: transform .28s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 32px rgba(0,0,0,0.15);  /* schaduw links van panel */
    border-left: 1px solid var(--bp-border);   /* border links */
}

.bp-mobile-menu.is-open {
    transform: translateX(0);
}

/* Hoofd van het side-panel — sticky zodat sluitknop altijd zichtbaar is */
.bp-mobile-menu__head {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height: 64px;
    min-height: 64px;
    border-bottom: 1px solid var(--bp-border);
    margin-bottom: 6px;
    flex-shrink: 0;
    /* sticky werkt alleen als overflow op parent NIET hidden is */
    position: sticky;
    top: 0;
    background: var(--bp-surface);
    z-index: 10; /* hoog genoeg binnen het panel */
}

.bp-mobile-menu__title {
    font-family: var(--bp-font-head), sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--bp-text);
}

.bp-mobile-menu__close {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1.5px solid var(--bp-border);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    color: var(--bp-muted);
    transition: border-color .15s, color .15s;
    padding: 0;
    /* Groter tapgebied op touch */
    -webkit-tap-highlight-color: transparent;
}

.bp-mobile-menu__close:hover,
.bp-mobile-menu__close:active {
    border-color: var(--bp-accent);
    color: var(--bp-accent);
}

/* Lijst: altijd verticaal, ruime tapgebieden
   Hoge specificiteit nodig om Kadence parent-CSS te overriden */
#bp-mobile-menu ul.bp-mobile-menu__list,
#bp-mobile-menu .bp-mobile-menu__list {
    list-style: none !important;
    margin: 0 !important;
    padding: 4px 10px !important;
    display: flex !important;
    flex-direction: column !important; /* verticaal — forceer override Kadence */
    flex-wrap: nowrap !important;
    gap: 2px !important;
    width: 100% !important;
}

#bp-mobile-menu ul.bp-mobile-menu__list li.menu-item,
#bp-mobile-menu .bp-mobile-menu__list .menu-item {
    display: block !important;
    width: 100% !important;
    float: none !important; /* Kadence gebruikt soms float */
}

#bp-mobile-menu ul.bp-mobile-menu__list li.menu-item a,
#bp-mobile-menu .bp-mobile-menu__list .menu-item a {
    display: flex !important;
    align-items: center;
    padding: 13px 14px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: var(--bp-text) !important;
    text-decoration: none !important;
    border-radius: 8px;
    transition: background .15s, color .15s;
    width: 100% !important;
    box-sizing: border-box !important;
    -webkit-tap-highlight-color: transparent;
    min-height: 48px;
    white-space: normal !important;
}

#bp-mobile-menu .bp-mobile-menu__list .menu-item a:hover,
#bp-mobile-menu .bp-mobile-menu__list .menu-item a:active,
#bp-mobile-menu .bp-mobile-menu__list .current-menu-item > a {
    background: var(--bp-accent-dim) !important;
    color: var(--bp-accent) !important;
}

/* ── Overlay ── */
.bp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1099;
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease, visibility .28s ease;
}

.bp-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* ── Scroll-lock ── */
body.bp-noscroll {
    overflow: hidden;
    /* Voorkom layout-shift door scrollbar-breedte te compenseren */
    padding-right: var(--bp-scrollbar-w, 0px);
}

/* ── Responsive breakpoints ── */
@media (max-width: 860px) {
    .bp-nav { display: none; }
    .bp-hamburger { display: flex; }
}

@media (max-width: 480px) {
    .bp-header__inner { padding: 0 16px; gap: 10px; }
    .bp-search-drop__inner { padding: 10px 16px; }
    .bp-logo { font-size: 18px; }
}

/* ═══════════════════════════════════════════════════
   EIGEN FOOTER
   ═══════════════════════════════════════════════════ */
.bp-footer {
    background: #111827;
    color: rgba(255,255,255,0.65);
    padding: 48px 24px 0;
}

.bp-footer__inner {
    max-width: var(--bp-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
}

@media (max-width: 860px) {
    .bp-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    /* Brand-kolom neemt volledige breedte op tablet */
    .bp-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 540px) {
    .bp-footer {
        padding: 36px 20px 0;
    }
    .bp-footer__inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 36px;
    }
    .bp-footer__brand {
        grid-column: auto;
    }
    .bp-footer__brand-desc {
        max-width: 100%;
    }
}

/* Logo in footer */
.bp-footer__brand-logo {
    display: inline-block;
    margin-bottom: 12px;
    text-decoration: none;
}

.bp-footer__brand-logo img {
    display: none;
}

.bp-footer__brand-name {
    font-family: var(--bp-font-head), sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    display: block;
}

.bp-footer__brand-desc {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.4);
    margin: 0;
    max-width: 260px;
}

.bp-footer__col-title {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,0.28);
    margin: 0 0 14px;
}

.bp-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 9px;
}

.bp-footer__links a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color .15s;
    display: flex;
    align-items: center;
    gap: 7px;
}

.bp-footer__links a:hover { color: #ffffff; text-decoration: none; }

/* Nieuwsbrief in footer */
.bp-footer__newsletter-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 1.65;
    margin: 0 0 14px;
}

.bp-footer__newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bp-footer__newsletter-form input {
    padding: 10px 14px;
    border-radius: 7px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.07);
    color: #fff;
    font-size: 13px;
    font-family: var(--bp-font-body), sans-serif;
    outline: none;
    transition: border-color .2s;
}

.bp-footer__newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.bp-footer__newsletter-form input:focus { border-color: rgba(255,255,255,0.3); }

.bp-footer__newsletter-form button {
    background: var(--bp-accent);
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--bp-font-body), sans-serif;
    transition: background .15s;
    text-align: center;
}

.bp-footer__newsletter-form button:hover { background: var(--bp-accent-hover); }

/* ═══════════════════════════════════════════════════
   SUBFOOTER
   ═══════════════════════════════════════════════════ */
.bp-subfooter {
    background: #0a0f1a;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 14px 24px;
}

.bp-subfooter__inner {
    max-width: var(--bp-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.bp-subfooter__copy {
    font-size: 12px;
    color: rgba(255,255,255,0.22);
    white-space: nowrap;
}

.bp-subfooter__links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.bp-subfooter__links a {
    font-size: 12px;
    color: rgba(255,255,255,0.28);
    text-decoration: none;
    padding: 3px 12px;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: color .15s;
    white-space: nowrap;
}

.bp-subfooter__links a:last-child { border-right: none; }
.bp-subfooter__links a:hover { color: rgba(255,255,255,0.65); }

@media (max-width: 600px) {
    .bp-subfooter { padding: 14px 20px; }
    .bp-subfooter__inner { flex-direction: column; align-items: flex-start; gap: 10px; }
    .bp-subfooter__links { flex-wrap: wrap; gap: 2px 0; }
    .bp-subfooter__links a { padding: 4px 10px 4px 0; border-right: none; }
}

/* ═══════════════════════════════════════════════════
   SINGLE — post navigatie (vervangt inline stijlen)
   ═══════════════════════════════════════════════════ */
.bp-single__post-nav {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--bp-border);
    font-size: 13px;
    flex-wrap: wrap;
}

.bp-single__nav-prev,
.bp-single__nav-next {
    color: var(--bp-accent);
    text-decoration: none;
    font-weight: 500;
    transition: color .15s;
    max-width: 48%;
}

.bp-single__nav-next { margin-left: auto; text-align: right; }

.bp-single__nav-prev:hover,
.bp-single__nav-next:hover { color: var(--bp-accent-hover); }

/* Zoekbalk icoon kleur via klasse i.p.v. inline style */
.bp-search-drop__icon { color: var(--bp-muted); flex-shrink: 0; }

/* ═══════════════════════════════════════════════════
   SECUNDAIRE HEADER BALK (Over ons / Contact)
   ═══════════════════════════════════════════════════ */

.bp-header__secondary {
    background: var(--bp-bg);
    border-bottom: 1px solid var(--bp-border);
    font-size: 12px;
}

.bp-header__secondary-inner {
    max-width: var(--bp-max);
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 32px;
    gap: 16px;
}

/* Tagline links */
.bp-header__secondary-tagline {
    font-size: 11px;
    color: var(--bp-muted);
    font-style: italic;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 1;
    min-width: 0;
}

/* Nav links rechts */
.bp-header__secondary-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0;
    flex-shrink: 0;
}

.bp-header__secondary-list .menu-item a {
    display: block;
    padding: 0 12px;
    color: var(--bp-muted);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    line-height: 32px;
    border-right: 1px solid var(--bp-border);
    transition: color .15s;
    white-space: nowrap;
}

.bp-header__secondary-list .menu-item:first-child a { border-left: 1px solid var(--bp-border); }
.bp-header__secondary-list .menu-item a:hover { color: var(--bp-accent); }
.bp-header__secondary-list .current-menu-item > a { color: var(--bp-accent); }

/* Mobiel: secundair menu onderaan het hamburger-menu */
.bp-mobile-menu__secondary {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.bp-mobile-menu__secondary-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bp-mobile-menu__secondary-list .menu-item a {
    display: block;
    padding: 10px 24px;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: color .15s;
}

.bp-mobile-menu__secondary-list .menu-item a:hover { color: rgba(255,255,255,0.8); }

/* ── Verberg secundaire balk op mobiel ── */
@media (max-width: 768px) {
    .bp-header__secondary { display: none; }
}

/* ═══════════════════════════════════════════════════
   FOOTER BYLINE (redactionele attribuutlijn)
   ═══════════════════════════════════════════════════ */

.bp-footer__brand-byline {
    font-size: 11px;
    line-height: 1.55;
    color: rgba(255,255,255,0.3);
    margin: 6px 0 0;
    font-style: italic;
}

/* ═══════════════════════════════════════════════════
   PAGINATEMPLATE (page.php)
   ═══════════════════════════════════════════════════ */

.bp-page {
    background: var(--bp-bg);
    min-height: 60vh;
    padding: 48px 24px 72px;
}

.bp-page__inner {
    max-width: 720px;
    margin: 0 auto;
}

.bp-page__breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--bp-muted);
    margin-bottom: 20px;
}

.bp-page__breadcrumb a {
    color: var(--bp-muted);
    text-decoration: none;
    transition: color .15s;
}

.bp-page__breadcrumb a:hover { color: var(--bp-accent); }

.bp-page__title {
    font-family: var(--bp-font-head), sans-serif;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: var(--bp-text);
    line-height: 1.2;
    margin: 0 0 32px;
}

/* ── Tekstopmaak binnen pagina-content ── */
.bp-page__content {
    font-size: 15px;
    line-height: 1.75;
    color: var(--bp-text);
}

.bp-page__content h2 {
    font-family: var(--bp-font-head), sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--bp-text);
    margin: 36px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--bp-border);
}

.bp-page__content h3 {
    font-family: var(--bp-font-head), sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--bp-text);
    margin: 28px 0 8px;
}

.bp-page__content p {
    margin: 0 0 16px;
    color: var(--bp-text);
}

.bp-page__content p:last-child { margin-bottom: 0; }

.bp-page__content a {
    color: var(--bp-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.bp-page__content a:hover { color: var(--bp-accent-hover); }

.bp-page__content ul,
.bp-page__content ol {
    margin: 0 0 16px 20px;
    padding: 0;
}

.bp-page__content li { margin-bottom: 6px; }

.bp-page__content strong { font-weight: 600; }

/* Tabel (voor cookieverklaring) */
.bp-page__content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin: 16px 0 24px;
}

.bp-page__content th {
    text-align: left;
    font-weight: 600;
    padding: 8px 12px;
    background: var(--bp-border);
    color: var(--bp-text);
    border: 1px solid var(--bp-border);
}

.bp-page__content td {
    padding: 8px 12px;
    border: 1px solid var(--bp-border);
    color: var(--bp-muted);
    vertical-align: top;
}

@media (max-width: 600px) {
    .bp-page { padding: 32px 16px 56px; }
}

/* ═══════════════════════════════════════════════════
   AUTEUR — badge, card, box, profiel
   ═══════════════════════════════════════════════════ */

/* ── Badge (boven artikel) ── */
.bp-author-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.bp-author-badge__photo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--bp-border);
}

.bp-author-badge__text {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--bp-muted);
    flex-wrap: wrap;
}

.bp-author-badge__name {
    color: var(--bp-text);
    font-weight: 600;
    text-decoration: none;
}

.bp-author-badge__name:hover { color: var(--bp-accent); }

.bp-author-badge__role {
    font-size: 11px;
    color: var(--bp-muted);
    padding: 1px 7px;
    background: var(--bp-bg);
    border: 1px solid var(--bp-border);
    border-radius: 100px;
}

/* ── Box (onder artikel) ── */
.bp-author-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--bp-bg);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius-lg);
    padding: 24px;
    margin: 40px 0 0;
}

.bp-author-box__photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--bp-surface);
    box-shadow: var(--bp-shadow);
}

.bp-author-box__info { flex: 1; min-width: 0; }

.bp-author-box__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.bp-author-box__name {
    display: block;
    font-weight: 700;
    font-size: 16px;
    color: var(--bp-text);
    text-decoration: none;
    margin-bottom: 3px;
}

.bp-author-box__name:hover { color: var(--bp-accent); }

.bp-author-box__role {
    display: block;
    font-size: 12px;
    color: var(--bp-muted);
}

.bp-author-box__social {
    display: flex;
    gap: 8px;
}

.bp-author-box__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--bp-border);
    color: var(--bp-muted);
    text-decoration: none;
    transition: color .15s, border-color .15s;
}

.bp-author-box__social a:hover {
    color: var(--bp-accent);
    border-color: var(--bp-accent);
}

.bp-author-box__bio {
    font-size: 13px;
    line-height: 1.65;
    color: var(--bp-muted);
    margin: 0 0 12px;
}

.bp-author-box__link {
    font-size: 13px;
    font-weight: 600;
    color: var(--bp-accent);
    text-decoration: none;
}

.bp-author-box__link:hover { text-decoration: underline; }

/* ── Card (homepage) ── */
.bp-author-section {
    background: var(--bp-surface);
    border-top: 1px solid var(--bp-border);
}

.bp-author-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    max-width: 680px;
}

.bp-author-card__photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--bp-border);
}

.bp-author-card__info { flex: 1; min-width: 0; }

.bp-author-card__name {
    display: block;
    font-weight: 700;
    font-size: 15px;
    color: var(--bp-text);
    text-decoration: none;
    margin-bottom: 2px;
}

.bp-author-card__name:hover { color: var(--bp-accent); }

.bp-author-card__role {
    display: block;
    font-size: 12px;
    color: var(--bp-muted);
    margin-bottom: 8px;
}

.bp-author-card__bio {
    font-size: 13px;
    line-height: 1.6;
    color: var(--bp-muted);
    margin: 0 0 10px;
}

.bp-author-card__link {
    font-size: 13px;
    font-weight: 600;
    color: var(--bp-accent);
    text-decoration: none;
}

.bp-author-card__link:hover { text-decoration: underline; }

/* ── Auteurspagina profiel ── */
.bp-author-profile {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 32px;
    background: var(--bp-surface);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius-lg);
    margin-bottom: 32px;
    box-shadow: var(--bp-shadow);
}

.bp-author-profile__photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 4px solid var(--bp-surface);
    box-shadow: var(--bp-shadow);
}

.bp-author-profile__name {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--bp-text);
}

.bp-author-profile__role {
    display: inline-block;
    font-size: 12px;
    color: var(--bp-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 14px;
}

.bp-author-profile__bio {
    font-size: 14px;
    line-height: 1.7;
    color: var(--bp-muted);
    margin: 0 0 14px;
}

.bp-author-profile__social {
    display: flex;
    gap: 10px;
}

.bp-author-profile__social a {
    font-size: 13px;
    font-weight: 600;
    color: var(--bp-accent);
    text-decoration: none;
}

.bp-author-profile__social a:hover { text-decoration: underline; }

/* ── Artikelenlijst op auteurspagina ── */
.bp-author-posts {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    gap: 1px;
}

.bp-author-posts__item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--bp-border);
}

.bp-author-posts__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--bp-text);
    text-decoration: none;
    flex: 1;
    min-width: 0;
}

.bp-author-posts__link:hover { color: var(--bp-accent); }

.bp-author-posts__date {
    font-size: 12px;
    color: var(--bp-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .bp-author-box { flex-direction: column; }
    .bp-author-profile { flex-direction: column; }
    .bp-author-profile__photo { width: 80px; height: 80px; }
    .bp-author-posts__item { flex-direction: column; gap: 4px; }
    .bp-author-posts__date { font-size: 11px; }
}

/* ── Bijgewerkt datum in artikel meta ── */
.bp-single__meta-updated {
    color: var(--bp-accent);
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════
   SVG CATEGORIE-ICONEN — uitlijning en stijl
   ═══════════════════════════════════════════════════ */

/* Inline SVG uitlijning overal waar iconen voorkomen */
.bp-cat__icon svg,
.bp-footer__links li a svg,
.bp-single__cat svg,
.bp-nav__list .menu-item a svg {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Categorie-blokken homepage — icoon centreren */
.bp-cat__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bp-bg);
    border: 1px solid var(--bp-border);
    color: var(--bp-accent);
    margin: 0 auto 10px;
    transition: background .2s, border-color .2s;
}

.bp-cat:hover .bp-cat__icon {
    background: var(--bp-accent-dim);
    border-color: var(--bp-accent);
}

/* Footer links — icoon naast label */
.bp-footer__links li a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bp-footer__links li a svg {
    opacity: 0.6;
    flex-shrink: 0;
}

/* Artikel-header categorie-label */
.bp-single__cat {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.bp-single__cat svg {
    color: var(--bp-accent);
}
