/*
Theme Name: BlazeForce
Author: BlazeForce
Description: Lichtgewicht maatwerkthema voor BlazeForce consultancy en technische artikelen.
Version: 2.7.6
Text Domain: blazeforce
*/

:root {
  --bf-ink: #102033;
  --bf-ink-soft: #405168;
  --bf-navy: #071525;
  --bf-blue: #123d66;
  --bf-orange: #01cfb6;
  --bf-orange-dark: #0b8577;
  --bf-surface: #f4f7fa;
  --bf-white: #ffffff;
  --bf-line: #dce4ec;
  --bf-radius: 18px;
  --bf-shadow: 0 18px 55px rgba(7, 21, 37, 0.10);
  --bf-width: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; text-size-adjust: 100%; }
html.bf-text-large { font-size: 112.5%; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--bf-ink);
  background: var(--bf-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--bf-blue); overflow-wrap: anywhere; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--bf-orange-dark); }
img { max-width: 100%; height: auto; }
.screen-reader-text { position: absolute!important; overflow: hidden; width: 1px; height: 1px; margin: -1px; padding: 0; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link:focus { position: fixed!important; z-index: 100001; top: 10px; left: 10px; width: auto; height: auto; margin: 0; padding: 12px 16px; clip: auto; color: #fff; background: #000; font-weight: 800; white-space: normal; }
:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible { outline: 3px solid #ffbf47; outline-offset: 3px; }
:where(h1, h2, h3, h4, section, article):target { scroll-margin-top: 110px; }
/* === Accessibility slide-out panel === */
.bf-a11y-toggle {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  z-index: 998; display: flex; flex-direction: column; align-items: center;
  gap: 6px; padding: 14px 9px; background: var(--bf-blue); color: #fff;
  border: none; border-radius: 10px 0 0 10px; font-size: .65rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; cursor: pointer;
  transition: background .2s, box-shadow .2s;
  box-shadow: -3px 0 18px rgba(0,0,0,.18);
}
.bf-a11y-toggle:hover { background: var(--bf-orange); }
.bf-a11y-toggle-label { writing-mode: vertical-rl; text-orientation: mixed; }
.bf-a11y-panel {
  position: fixed; right: 0; top: 0; width: 300px; height: 100dvh;
  z-index: 1000; background: #fff; box-shadow: -6px 0 50px rgba(7,21,37,.14);
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; overflow-y: auto;
}
.bf-a11y-panel.is-open { transform: translateX(0); }
.bf-a11y-backdrop {
  position: fixed; inset: 0; z-index: 999; background: rgba(7,21,37,.3);
  opacity: 0; pointer-events: none; transition: opacity .32s;
  backdrop-filter: blur(2px);
}
.bf-a11y-backdrop.is-visible { opacity: 1; pointer-events: auto; }
.bf-a11y-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px 18px; border-bottom: 1px solid var(--bf-line); flex-shrink: 0;
}
.bf-a11y-panel-title { font-size: .78rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; color: var(--bf-ink-soft); }
.bf-a11y-panel-close {
  width: 34px; height: 34px; border: 1px solid var(--bf-line); border-radius: 8px;
  background: transparent; color: var(--bf-ink-soft); cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background .15s;
}
.bf-a11y-panel-close:hover { background: var(--bf-surface); }
.bf-a11y-panel-body { padding: 20px 24px; display: flex; flex-direction: column; gap: 10px; }
.bf-accessibility-button {
  display: flex; width: 100%; padding: 14px 16px; align-items: center; gap: 14px;
  border: 1px solid var(--bf-line); border-radius: 10px; color: var(--bf-ink);
  background: var(--bf-surface); cursor: pointer; font: inherit; font-weight: 600;
  font-size: .875rem; transition: border-color .15s, background .15s, box-shadow .15s; text-align: left;
}
.bf-accessibility-button:hover { border-color: var(--bf-blue); background: #fff; box-shadow: 0 2px 10px rgba(7,21,37,.07); }
.bf-accessibility-button[aria-pressed="true"] { border-color: var(--bf-orange); background: #effcf9; color: var(--bf-orange-dark); }
.bf-a11y-btn-icon { font-size: 1rem; min-width: 22px; text-align: center; }
.bf-accessibility-button[hidden] { display: none; }
.bf-container { width: min(calc(100% - 40px), var(--bf-width)); margin-inline: auto; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(220, 228, 236, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.site-menu-toggle { display: none; min-height: 44px; padding: 8px 14px; align-items: center; gap: 8px; border: 1px solid var(--bf-line); border-radius: 10px; color: var(--bf-navy); background: #fff; cursor: pointer; font: inherit; font-weight: 750; }
.site-menu-toggle-icon { font-size: 1.25rem; line-height: 1; }
.site-branding a { display: inline-flex; align-items: center; gap: 11px; color: var(--bf-navy); text-decoration: none; }
.brand-mark { display: grid; width: 37px; height: 37px; place-items: center; border-radius: 11px; color: #fff; background: var(--bf-orange); font-weight: 850; box-shadow: 0 8px 20px rgba(1, 207, 182, .28); }
.brand-name { font-size: 1.22rem; font-weight: 800; letter-spacing: -0.035em; }
.site-nav ul { display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; list-style: none; }
.site-nav a { display: inline-flex; min-height: 44px; padding-block: 8px; align-items: center; color: var(--bf-ink); font-size: 0.92rem; font-weight: 650; text-decoration: none; }
.site-nav a:hover, .site-nav .current-menu-item > a { color: var(--bf-orange-dark); }
.site-nav .menu-item:last-child a { padding: 10px 16px; border-radius: 999px; color: #fff; background: var(--bf-navy); }

.bf-hero { overflow: hidden; position: relative; display: flex; min-height: 610px; padding: 112px 0 104px; align-items: center; color: #fff; background: #071525; }
.bf-hero::before { position: absolute; z-index: 0; inset: 0; background: url("assets/images/corporate/home-hero-1600.webp") center right / cover no-repeat; content: ""; }
.bf-hero::after { position: absolute; z-index: 0; inset: 0; background: linear-gradient(90deg, rgba(4,15,29,.98) 0%, rgba(5,18,34,.93) 32%, rgba(5,18,34,.48) 58%, rgba(5,18,34,.08) 100%), linear-gradient(180deg, rgba(7,21,37,.08), rgba(7,21,37,.45)); content: ""; pointer-events: none; }
.bf-hero-inner { position: relative; z-index: 1; max-width: 680px; }
.bf-eyebrow { margin: 0 0 18px; color: #7ff0e2; font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.bf-hero h1 { max-width: 680px; margin: 0; font-size: clamp(2.55rem, 6vw, 5rem); line-height: 1.03; letter-spacing: -.055em; text-shadow: 0 4px 24px rgba(0,0,0,.22); }
.bf-hero .bf-lead { max-width: 630px; margin: 28px 0 0; color: #d5e0ea; font-size: clamp(1.06rem, 2vw, 1.25rem); }
.bf-hero .bf-hero-support { max-width: 620px; margin: 18px 0 0; color: #aebfd0; font-size: .98rem; }
.bf-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.bf-button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 10px 22px; border: 1px solid transparent; border-radius: 999px; font-size: .94rem; font-weight: 750; text-decoration: none; transition: transform .18s ease, background .18s ease; }
.bf-button:hover { transform: translateY(-2px); }
.bf-button-primary { color: var(--bf-navy); background: var(--bf-orange); }
.bf-button-primary:hover { color: #fff; background: var(--bf-orange-dark); }
.bf-button-secondary { border-color: rgba(255,255,255,.28); color: #fff; background: rgba(255,255,255,.05); }
.bf-button-secondary:hover { color: #fff; background: rgba(255,255,255,.11); }

.bf-section { padding: 90px 0; }
.bf-section-soft { background: var(--bf-surface); }
.bf-section-dark { color: #fff; background: var(--bf-navy); }
.bf-kicker { margin: 0 0 10px; color: var(--bf-orange-dark); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.bf-section h2, .entry-header h1 { margin: 0 0 18px; color: var(--bf-navy); font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.12; letter-spacing: -.045em; }
.bf-section-dark h2 { color: #fff; }
.bf-intro { max-width: 720px; margin: 0 0 42px; color: var(--bf-ink-soft); font-size: 1.08rem; }
.bf-section-dark .bf-intro { color: #bdcad7; }
.bf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bf-card { padding: 30px; border: 1px solid var(--bf-line); border-radius: var(--bf-radius); background: #fff; box-shadow: 0 10px 35px rgba(7,21,37,.045); }
.bf-card-icon { display: grid; width: 46px; height: 46px; margin-bottom: 22px; place-items: center; border-radius: 13px; color: var(--bf-orange-dark); background: #defaf6; font-weight: 850; }
.bf-card h3 { margin: 0 0 10px; color: var(--bf-navy); font-size: 1.2rem; line-height: 1.25; }
.bf-card p { margin: 0; color: var(--bf-ink-soft); font-size: .96rem; }
.bf-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; }
.bf-points { display: grid; gap: 16px; }
.bf-point { padding: 20px 22px; border-left: 3px solid var(--bf-orange); border-radius: 0 12px 12px 0; background: #fff; box-shadow: 0 8px 30px rgba(7,21,37,.05); }
.bf-point strong { display: block; color: var(--bf-navy); }
.bf-point span { color: var(--bf-ink-soft); font-size: .94rem; }
.bf-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 44px; border-radius: 24px; color: #fff; background: linear-gradient(125deg, #113f65, #071525); box-shadow: var(--bf-shadow); }
.bf-cta h2 { margin: 0 0 8px; color: #fff; font-size: clamp(1.7rem, 3vw, 2.35rem); }
.bf-cta p { margin: 0; color: #c7d5e2; }

.latest-posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card { overflow: hidden; border: 1px solid var(--bf-line); border-radius: var(--bf-radius); background: #fff; }
.post-card-media { display: block; overflow: hidden; aspect-ratio: 16 / 9; background: var(--bf-navy); }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.post-card-placeholder { position: relative; display: grid; width: 100%; height: 100%; padding: 28px; place-items: end start; color: #fff; background: radial-gradient(circle at 78% 22%, rgba(1,207,182,.9) 0 7%, transparent 7.5%), radial-gradient(circle at 68% 43%, rgba(255,255,255,.18) 0 4%, transparent 4.5%), linear-gradient(135deg, #174d79, #081827 72%); }
.post-card-placeholder::before { position: absolute; inset: 18% -8% auto auto; width: 48%; height: 48%; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; content: ""; }
.post-card-placeholder span { position: relative; z-index: 1; padding: 6px 10px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; background: rgba(8,24,39,.28); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.post-card:hover .post-card-media img { transform: scale(1.025); }
.post-card-body { padding: 26px; }
.post-card .post-meta, .entry-meta { color: #5b6b7c; font-size: .8rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.post-card h3 { margin: 10px 0 12px; font-size: 1.18rem; line-height: 1.35; }
.post-card h3 a { color: var(--bf-navy); text-decoration: none; }
.post-card p { margin: 0; color: var(--bf-ink-soft); font-size: .94rem; }
.bf-empty { grid-column: 1 / -1; padding: 34px; border: 1px dashed #b9c7d4; border-radius: var(--bf-radius); color: var(--bf-ink-soft); text-align: center; }

.page-main { padding: 82px 0 100px; }
.entry-header { max-width: 780px; margin-bottom: 42px; }
.entry-featured { overflow: hidden; margin: 0 0 46px; aspect-ratio: 16 / 9; border-radius: 20px; background: var(--bf-navy); box-shadow: var(--bf-shadow); }
.entry-featured img { width: 100%; height: 100%; object-fit: cover; }
.entry-content { max-width: 820px; }
.entry-content > * { margin-top: 0; margin-bottom: 1.4em; }
.entry-content :where(p, li, h1, h2, h3, h4, code) { overflow-wrap: anywhere; }
.bf-page-content-layout { display: grid; grid-template-columns: minmax(0, 820px) minmax(260px, 330px); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.bf-page-content-primary { min-width: 0; }
.bf-page-content-layout .entry-content { max-width: none; }
.bf-related-articles { position: sticky; top: 110px; padding: 1.15rem; border: 1px solid var(--bf-line); border-radius: 18px; background: linear-gradient(145deg, #fff 0%, #f6f9fb 100%); box-shadow: 0 18px 45px rgba(16,32,51,.08); }
.bf-related-articles .bf-kicker { margin-bottom: .25rem; }
.bf-related-articles h2 { margin: 0 0 1rem; color: var(--bf-navy); font-size: 1.35rem; line-height: 1.18; letter-spacing: -.025em; }
.bf-related-articles-list { display: grid; gap: .85rem; }
.bf-related-card { overflow: hidden; border: 1px solid #d7e1e9; border-radius: 14px; background: #fff; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.bf-related-card:hover { transform: translateY(-2px); border-color: #b9c9d6; box-shadow: 0 14px 28px rgba(16,32,51,.1); }
.bf-related-card-media { display: block; overflow: hidden; aspect-ratio: 16 / 9; background: var(--bf-navy); }
.bf-related-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.bf-related-card:hover .bf-related-card-media img { transform: scale(1.035); }
.bf-related-card-body { padding: .95rem; }
.bf-related-card .post-meta { color: #5b6b7c; font-size: .68rem; font-weight: 800; letter-spacing: .055em; text-transform: uppercase; }
.bf-related-card h3 { margin: .45rem 0 .45rem; color: var(--bf-navy); font-size: .98rem; line-height: 1.28; }
.bf-related-card h3 a { color: inherit; text-decoration: none; }
.bf-related-card h3 a:hover { color: var(--bf-orange-dark); }
.bf-related-card p { margin: 0; color: var(--bf-ink-soft); font-size: .86rem; line-height: 1.5; }
.entry-content table { display: block; overflow-x: auto; max-width: 100%; border-collapse: collapse; -webkit-overflow-scrolling: touch; }
.entry-content th, .entry-content td { padding: 10px 12px; border: 1px solid var(--bf-line); text-align: left; }
.entry-content pre { overflow-x: auto; max-width: 100%; padding: 16px; border-radius: 10px; background: #071525; color: #f4f7fa; white-space: pre; }
.entry-content :where(input, textarea, select, button) { max-width: 100%; min-height: 44px; font: inherit; }
.entry-content h2 { margin-top: 1.7em; color: var(--bf-navy); font-size: 2rem; line-height: 1.2; letter-spacing: -.035em; }
.entry-content h3 { margin-top: 1.6em; color: var(--bf-navy); }
.entry-content .bf-grid, .entry-content .bf-split { max-width: var(--bf-width); }
.article-layout { display: grid; grid-template-columns: minmax(0, 820px) minmax(260px, 330px); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.article-layout > *,
.entry-header,
.entry-content,
.entry-content > *,
.entry-featured,
.entry-content figure,
.entry-content .wp-block-image { min-width: 0; max-width: 100%; }
.article-sidebar { position: sticky; top: 110px; padding: 22px; border-radius: 14px; background: var(--bf-surface); font-size: .9rem; }
.article-sidebar strong { display: block; margin-bottom: 7px; color: var(--bf-navy); }
.bf-related-pages { border: 1px solid var(--bf-line); background: linear-gradient(145deg, #fff 0%, #f5f9fb 100%); box-shadow: 0 16px 38px rgba(16,32,51,.08); }
.bf-related-pages .bf-kicker { margin: 0 0 .25rem; }
.bf-related-pages h2 { margin: 0 0 1rem; color: var(--bf-navy); font-size: 1.28rem; line-height: 1.18; letter-spacing: -.025em; }
.bf-related-pages-list { display: grid; gap: .75rem; }
.bf-related-page-card { display: grid; gap: .45rem; padding: .95rem; border: 1px solid #d8e3eb; border-radius: 13px; color: var(--bf-ink); background: #fff; text-decoration: none; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.bf-related-page-card:hover { transform: translateY(-2px); border-color: #b7c8d5; box-shadow: 0 12px 26px rgba(16,32,51,.09); }
.bf-related-page-card strong { margin: 0; color: var(--bf-navy); font-size: .98rem; line-height: 1.25; }
.bf-related-page-card span { color: var(--bf-ink-soft); font-size: .84rem; line-height: 1.45; }
.bf-related-page-card em { color: var(--bf-blue); font-size: .82rem; font-style: normal; font-weight: 800; }
.bf-article-related-section { margin: clamp(3rem, 7vw, 5.5rem) 0 1rem; padding-top: clamp(2.4rem, 5vw, 4.5rem); border-top: 1px solid var(--bf-line); }
.bf-article-related-grid { margin-top: 1.5rem; }
.posts-list { display: grid; gap: 18px; }
.posts-list .post-card { display: grid; grid-template-columns: 1fr; }
.pagination { margin-top: 42px; }
.bf-load-more { display: grid; justify-items: center; gap: 14px; margin: 42px 0 0; }
.bf-load-more.is-hidden { display: none; }
.bf-load-more-status { min-height: 1.4em; margin: 0; color: var(--bf-ink-soft); font-size: .92rem; }
.bf-load-more-sentinel { width: 1px; height: 1px; }

.site-footer { padding: 60px 0 30px; color: #aebdcb; background: #050f1b; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; padding-bottom: 42px; }
.site-footer .brand-name, .site-footer h3 { color: #fff; }
.site-footer h3 { margin: 0 0 14px; font-size: .94rem; }
.site-footer p { max-width: 400px; margin: 16px 0 0; font-size: .92rem; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin: 7px 0; }
.site-footer a { color: #d8e4ee; text-decoration: underline; text-decoration-color: transparent; }
.site-footer a:hover { color: #fff; }
.footer-bottom { padding-top: 25px; border-top: 1px solid rgba(255,255,255,.1); font-size: .83rem; }
.footer-legal, .footer-legal a, .footer-legal button { color: #d8e4ee; }
.footer-made-by { color: #d6e1ea; }
.site-footer li a, .footer-legal a, .footer-legal button { display: inline-flex; min-height: 44px; align-items: center; }

html.bf-high-contrast { --bf-ink: #000; --bf-ink-soft: #151515; --bf-navy: #000; --bf-blue: #003b75; --bf-orange: #ffd166; --bf-orange-dark: #04564c; --bf-surface: #fff; --bf-line: #000; }
html.bf-high-contrast body { color: #000; background: #fff; }
html.bf-high-contrast a:not(.bf-button) { color: #003b75; text-decoration: underline; }
html.bf-high-contrast .site-header, html.bf-high-contrast .bf-card, html.bf-high-contrast .bf-point { border-color: #000; background: #fff; box-shadow: none; }
html.bf-high-contrast .bf-hero::before { opacity: .28; }
html.bf-high-contrast .bf-hero::after { background: rgba(0,0,0,.82); }
html.bf-high-contrast .bf-button-primary { border: 2px solid #fff; color: #000; background: #ffd166; }
html.bf-high-contrast .bf-button-secondary { border: 2px solid #fff; background: #000; }
html.bf-high-contrast .site-footer { background: #000; }
html.bf-high-contrast .bf-cookie-banner, html.bf-high-contrast .bf-cookie-modal__panel { border: 2px solid #fff; color: #fff; background: #000; }

@media (max-width: 900px) {
  .bf-accessibility-tools { overflow-x: auto; justify-content: flex-start; padding-block: 4px; scrollbar-width: thin; }
  .bf-accessibility-label { position: absolute; overflow: hidden; width: 1px; height: 1px; clip: rect(0,0,0,0); }
  .bf-accessibility-button { min-width: max-content; min-height: 44px; }
  .header-inner { min-height: 70px; flex-wrap: wrap; gap: 10px 18px; padding-block: 12px; }
  .site-header { position: sticky; }
  .site-menu-toggle { display: inline-flex; }
  .site-nav { width: 100%; max-height: calc(100dvh - 150px); overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; }
  .js .site-nav { display: none; }
  .js .site-nav.is-open { display: block; }
  .site-nav ul { align-items: stretch; flex-direction: column; gap: 0; padding: 10px 0 4px; border-top: 1px solid var(--bf-line); }
  .site-nav a { width: 100%; min-height: 48px; padding: 10px 4px; }
  .site-nav .menu-item:last-child a { width: fit-content; margin-top: 5px; padding: 8px 15px; }
  .bf-hero { min-height: 560px; padding: 78px 0; }
  .bf-hero::before { background-image: url("assets/images/corporate/home-hero-960.webp"); background-position: 64% center; }
  .bf-hero::after { background: linear-gradient(90deg, rgba(4,15,29,.97) 0%, rgba(5,18,34,.84) 65%, rgba(5,18,34,.42) 100%), linear-gradient(180deg, rgba(7,21,37,.12), rgba(7,21,37,.55)); }
  .bf-grid, .latest-posts, .bf-split, .article-layout, .bf-page-content-layout, .footer-grid { grid-template-columns: 1fr; }
  .bf-split { gap: 40px; }
  .article-sidebar, .bf-related-articles { position: static; }
  .bf-related-articles-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bf-cta { align-items: flex-start; flex-direction: column; padding: 32px; }
}

@media (max-width: 520px) {
  .bf-accessibility-tools { overflow: visible; flex-wrap: wrap; gap: 4px; padding-block: 6px; }
  .bf-accessibility-button { flex: 1 1 calc(50% - 4px); justify-content: center; }
  .bf-container { width: min(calc(100% - 28px), var(--bf-width)); }
  .bf-section, .page-main { padding: 65px 0; }
  .bf-card { padding: 24px; }
  .bf-related-articles { padding: 1rem; }
  .bf-related-articles-list { grid-template-columns: 1fr; }
  .bf-hero { min-height: 590px; }
  .bf-hero::before { background-position: 70% center; }
  .bf-hero::after { background: linear-gradient(90deg, rgba(4,15,29,.96), rgba(5,18,34,.68)), linear-gradient(180deg, rgba(7,21,37,.28), rgba(7,21,37,.78)); }
  .entry-featured { margin-bottom: 34px; border-radius: 14px; }
  .single-post .bf-container { width: 100%; padding-inline: 14px; }
  .single-post .article-layout { display: block; width: 100%; max-width: 100%; }
  .single-post .entry-header { width: 100%; max-width: 100%; margin-bottom: 30px; }
  .single-post .entry-header h1 { max-width: 100%; font-size: clamp(1.72rem, 7.2vw, 2.35rem); line-height: 1.08; letter-spacing: -.04em; }
  .single-post .entry-meta { font-size: .72rem; line-height: 1.35; overflow-wrap: anywhere; }
  .single-post .entry-featured { width: 100%; max-width: 100%; margin-inline: 0; aspect-ratio: 16 / 10; box-shadow: 0 10px 28px rgba(7,21,37,.12); }
  .single-post .entry-featured img { display: block; width: 100%; max-width: 100%; height: 100%; }
  .single-post .entry-content { width: 100%; max-width: 100%; font-size: 1rem; line-height: 1.72; }
  .single-post .entry-content :where(p, li) { max-width: 100%; }
  .single-post .entry-content figcaption { max-width: 100%; color: var(--bf-ink-soft); font-size: .86rem; line-height: 1.5; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto!important; animation-duration: .01ms!important; animation-iteration-count: 1!important; transition-duration: .01ms!important; }
}

@media (prefers-contrast: more) {
  :root { --bf-line: #718096; }
  :where(a, button, input, textarea, select, summary, [tabindex]):focus-visible { outline-width: 4px; }
}

@media (forced-colors: active) {
  .brand-mark, .bf-card-icon { forced-color-adjust: none; }
  .bf-button, .site-menu-toggle, .bf-accessibility-button { border: 1px solid ButtonText; }
}

/* BlazeForce 2.0 visual corporate system */
:root {
  --bf-navy: #081827;
  --bf-blue: #174d79;
  --bf-orange: #01cfb6;
  --bf-orange-dark: #0b8577;
  --bf-surface: #f3f6f7;
  --bf-line: #d9e2e7;
  --bf-radius: 22px;
  --bf-shadow: 0 24px 70px rgba(8, 24, 39, .12);
  --bf-width: 1200px;
}

body { font-size: 1rem; line-height: 1.65; }
.site-header { background: rgba(255,255,255,.97); }
.header-inner { min-height: 82px; }
.brand-mark { width: 41px; height: 41px; border-radius: 50% 50% 50% 18%; background: var(--bf-orange); }
.brand-name { font-size: 1.32rem; letter-spacing: -.045em; }
.site-nav ul { gap: 32px; }
.site-nav a { font-size: .88rem; font-weight: 720; }

.bf-hero {
  display: block;
  min-height: auto;
  padding: 76px 0 84px;
  color: var(--bf-ink);
  background: linear-gradient(120deg, #f8fafb 0%, #fff 55%, #f2f5f5 100%);
}
.bf-hero::before, .bf-hero::after { display: none; }
.bf-hero-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr); gap: clamp(42px, 6vw, 88px); align-items: center; }
.bf-hero-copy { position: relative; z-index: 2; padding-block: 18px; }
.bf-hero h1 { max-width: 670px; color: var(--bf-navy); font-size: clamp(3rem, 5.1vw, 5.25rem); line-height: .99; letter-spacing: -.068em; text-shadow: none; }
.bf-hero h1 span { display: block; color: var(--bf-blue); }
.bf-eyebrow, .bf-kicker { color: var(--bf-orange-dark); }
.bf-hero .bf-lead { max-width: 650px; margin-top: 30px; color: #485c6c; font-size: clamp(1.05rem, 1.7vw, 1.2rem); }
.bf-actions { margin-top: 34px; }
.bf-button { min-height: 52px; padding-inline: 23px; border-radius: 8px; }
.bf-button-primary { color: #17100b; background: var(--bf-orange); box-shadow: 0 12px 25px rgba(1,207,182,.22); }
.bf-button-primary:hover { color: #fff; }
.bf-button-secondary { border-color: #b8c5cd; color: var(--bf-navy); background: transparent; }
.bf-button-secondary:hover { color: var(--bf-navy); background: #fff; border-color: var(--bf-navy); }
.bf-button-dark { color: #fff; background: var(--bf-navy); }
.bf-button-dark:hover { color: #fff; background: var(--bf-blue); }
.bf-hero-facts { display: flex; flex-wrap: wrap; gap: 12px 24px; margin: 28px 0 0; padding: 0; color: #596b78; font-size: .82rem; font-weight: 700; list-style: none; }
.bf-hero-facts li { display: flex; gap: 8px; align-items: center; }
.bf-hero-facts li::before { display: grid; width: 19px; height: 19px; place-items: center; border-radius: 50%; color: #fff; background: var(--bf-blue); content: "✓"; font-size: .68rem; }
.bf-hero-visual { position: relative; }
.bf-hero-visual::before { position: absolute; z-index: 0; width: 140px; height: 140px; right: -36px; bottom: -35px; border-radius: 50%; background: repeating-linear-gradient(135deg, rgba(1,207,182,.42) 0 2px, transparent 2px 10px); content: ""; }
.bf-hero-visual picture { position: relative; z-index: 1; display: block; overflow: hidden; aspect-ratio: 16/9; border-radius: 7px 90px 7px 7px; background: #e9eef0; box-shadow: var(--bf-shadow); }
.bf-hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.bf-visual-note { position: absolute; z-index: 3; left: -30px; bottom: -28px; display: flex; min-width: 270px; padding: 17px 20px; align-items: center; gap: 13px; border: 1px solid rgba(217,226,231,.8); border-radius: 12px; background: rgba(255,255,255,.96); box-shadow: 0 15px 35px rgba(8,24,39,.13); }
.bf-visual-note-icon { display: grid; width: 39px; height: 39px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: #fff; background: var(--bf-orange); font-size: 1.25rem; }
.bf-visual-note span:last-child { color: #687986; font-size: .76rem; line-height: 1.4; }
.bf-visual-note strong { display: block; color: var(--bf-navy); font-size: .88rem; }

.bf-trust-strip { border-block: 1px solid var(--bf-line); background: #fff; }
.bf-trust-inner { display: flex; min-height: 94px; align-items: center; gap: 42px; }
.bf-trust-label { flex: 0 0 auto; color: #5b6875; font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.bf-trust-inner ul { display: flex; width: 100%; margin: 0; padding: 0; align-items: center; justify-content: space-between; gap: 28px; color: var(--bf-navy); list-style: none; }
.bf-trust-inner li { font-size: .96rem; font-weight: 800; letter-spacing: -.02em; }
.bf-trust-inner li::before { margin-right: 9px; color: var(--bf-orange); content: "●"; font-size: .53rem; vertical-align: .14em; }
.bf-ember-promo { padding-block: clamp(2rem, 5vw, 3.5rem); background: linear-gradient(180deg, #fff 0%, #f4f7f8 100%); }
.bf-ember-promo-card { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; padding: clamp(1.5rem, 4vw, 2.4rem); border: 1px solid rgba(245,130,50,.32); border-radius: 24px; background: linear-gradient(135deg, #071525 0%, #0d2a45 58%, #174d79 100%); color: #fff; box-shadow: 0 22px 60px rgba(8,24,39,.16); }
.bf-ember-promo-card .bf-kicker { color: #7ff0e2; }
.bf-ember-promo-card h2 { max-width: 780px; margin: 0; color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.05; letter-spacing: -.045em; }
.bf-ember-promo-card p { max-width: 760px; margin: 1rem 0 0; color: #d7e3ec; }
.bf-ember-promo-actions { display: grid; min-width: 280px; gap: .85rem; justify-items: start; }
.bf-ember-promo-actions span { color: #b8c9d8; font-size: .84rem; font-weight: 750; }

.bf-section { padding: 108px 0; }
.bf-section-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: 70px; margin-bottom: 50px; align-items: end; }
.bf-section-heading h2, .bf-section h2 { max-width: 760px; margin: 0; font-size: clamp(2.3rem, 4vw, 4rem); line-height: 1.04; letter-spacing: -.055em; }
.bf-section-heading > p { max-width: 470px; margin: 0; color: var(--bf-ink-soft); }
.bf-section-heading-center { align-items: center; }
.bf-service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--bf-line); border-radius: var(--bf-radius); background: var(--bf-line); box-shadow: 0 18px 55px rgba(8,24,39,.06); }
.bf-service-card { position: relative; display: flex; min-height: 390px; padding: 30px 28px; flex-direction: column; color: var(--bf-ink); background: #fff; text-decoration: none; transition: color .2s ease, background .2s ease, transform .2s ease; }
.bf-service-card:hover { z-index: 2; color: var(--bf-ink); background: #f8fafb; box-shadow: 0 15px 40px rgba(8,24,39,.10); transform: translateY(-4px); }
.bf-service-number { position: absolute; top: 28px; right: 26px; color: #5b6875; font-size: .72rem; font-weight: 800; }
.bf-service-icon { display: grid; width: 53px; height: 53px; margin-bottom: auto; place-items: center; border-radius: 13px; color: #fff; background: var(--bf-blue); font-size: .73rem; font-weight: 900; letter-spacing: .04em; box-shadow: 0 10px 22px rgba(23,77,121,.17); }
.bf-service-card:nth-child(2) .bf-service-icon { color: #065f54; background: #bef2ea; }
.bf-service-card:nth-child(3) .bf-service-icon { background: #0c766e; }
.bf-service-card:nth-child(4) .bf-service-icon { background: #394d62; }
.bf-service-card h3 { margin: 38px 0 12px; color: var(--bf-navy); font-size: 1.35rem; line-height: 1.2; letter-spacing: -.03em; }
.bf-service-card p { margin: 0 0 27px; color: #556875; font-size: .91rem; }
.bf-text-link { margin-top: auto; color: var(--bf-blue); font-size: .87rem; font-weight: 800; text-decoration: none; }
.bf-text-link span { display: inline-block; margin-left: 5px; transition: transform .2s ease; }
.bf-text-link:hover span, .bf-service-card:hover .bf-text-link span { transform: translateX(4px); }
.bf-text-link-strong { display: inline-flex; margin-top: 8px; align-items: center; font-size: .96rem; }

.bf-media-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(48px, 7vw, 95px); align-items: center; }
.bf-media-frame { position: relative; padding-bottom: 32px; }
.bf-media-frame picture { display: block; overflow: hidden; aspect-ratio: 4/3; border-radius: 70px 8px 8px 8px; background: #dfe7eb; box-shadow: var(--bf-shadow); }
.bf-media-frame img { width: 100%; height: 100%; object-fit: cover; }
.bf-image-caption { position: absolute; right: 28px; bottom: 0; padding: 14px 18px; border-radius: 8px; color: #fff; background: var(--bf-navy); font-size: .77rem; font-weight: 750; }
.bf-story-copy .bf-intro { margin: 22px 0 34px; }
.bf-process-list { display: grid; gap: 0; margin: 0 0 30px; padding: 0; list-style: none; }
.bf-process-list li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 20px 0; border-top: 1px solid var(--bf-line); }
.bf-process-list li:last-child { border-bottom: 1px solid var(--bf-line); }
.bf-process-list li > span { color: var(--bf-orange-dark); font-size: .73rem; font-weight: 850; }
.bf-process-list strong { display: block; margin-bottom: 3px; color: var(--bf-navy); }
.bf-process-list p { margin: 0; color: var(--bf-ink-soft); font-size: .9rem; }

.bf-integration-card { display: grid; overflow: hidden; grid-template-columns: .88fr 1.12fr; border-radius: 30px; background: #fff; box-shadow: var(--bf-shadow); }
.bf-integration-copy { padding: clamp(42px, 6vw, 76px); }
.bf-integration-copy h2 { font-size: clamp(2.2rem, 3.6vw, 3.5rem); }
.bf-integration-copy > p:not(.bf-kicker) { margin: 24px 0; color: var(--bf-ink-soft); }
.bf-integration-image { min-height: 540px; }
.bf-integration-image picture { display: block; width: 100%; height: 100%; }
.bf-integration-image img { width: 100%; height: 100%; object-fit: cover; }
.bf-check-list { display: grid; gap: 10px; margin: 28px 0 35px; padding: 0; list-style: none; }
.bf-check-list li { position: relative; padding-left: 29px; color: var(--bf-navy); font-size: .9rem; font-weight: 720; }
.bf-check-list li::before { position: absolute; left: 0; color: var(--bf-orange-dark); content: "✓"; font-weight: 900; }

.latest-posts { gap: 26px; }
.post-card { border: 0; border-radius: 14px; box-shadow: 0 12px 40px rgba(8,24,39,.07); transition: transform .2s ease, box-shadow .2s ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(8,24,39,.12); }
.post-card-media { aspect-ratio: 3/2; }
.post-card-body { padding: 28px; }
.post-card h3 { font-size: 1.28rem; letter-spacing: -.02em; }
.bf-section-footer { margin-top: 36px; text-align: center; }
.bf-final-section { padding-top: 80px; }
.bf-cta { padding: clamp(38px, 6vw, 68px); border-radius: 24px 70px 24px 24px; background: linear-gradient(125deg, #174d79 0%, #081827 78%); }
.bf-cta .bf-kicker { color: #8df2e4; }
.bf-cta-actions { display: grid; min-width: 250px; justify-items: center; gap: 10px; }
.bf-cta-actions span { color: #adbdc8; font-size: .76rem; }

.page-main { padding: 78px 0 110px; }
.entry-header-visual { display: grid; max-width: none; grid-template-columns: .8fr 1.2fr; gap: 65px; margin-bottom: 70px; align-items: center; }
.entry-header-visual h1 { font-size: clamp(2.8rem, 5vw, 5rem); }
.page-hero-image { display: block; overflow: hidden; aspect-ratio: 16/9; border-radius: 7px 70px 7px 7px; background: var(--bf-surface); box-shadow: var(--bf-shadow); }
.page-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.entry-content { font-size: 1.02rem; }
.entry-content > h2 { margin-top: 2.1em; }
.posts-list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.posts-list .post-card { display: flex; min-width: 0; flex-direction: column; }
.posts-list .post-card-media { width: 100%; aspect-ratio: 3 / 2; }
.posts-list .post-card-body { display: flex; flex: 1; flex-direction: column; }
.posts-list .post-card h3 { font-size: 1.18rem; }
.bf-cases-overview{margin:clamp(3rem,7vw,6rem) 0 1rem}.bf-cases-grid{margin-top:2rem}.bf-case-card .post-card-media{background:linear-gradient(135deg,#174d79,#071525)}
.bf-article-contact { max-width: 820px; margin-top: 70px; padding: clamp(28px, 5vw, 48px); border: 1px solid var(--bf-line); border-radius: 22px; background: var(--bf-surface); }
.bf-article-contact h2 { margin: 0 0 12px; color: var(--bf-navy); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.08; letter-spacing: -.045em; }
.bf-article-contact > p:not(.bf-kicker) { margin: 0 0 25px; color: var(--bf-ink-soft); }
.bf-404 { padding-top: clamp(4rem, 8vw, 7rem); }
.bf-404-hero { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .75fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.bf-404-copy h1 { max-width: 760px; margin-bottom: 1.1rem; color: var(--bf-navy); font-size: clamp(3rem, 7vw, 6.2rem); line-height: .95; letter-spacing: -.07em; }
.bf-404-copy .bf-intro { max-width: 710px; color: var(--bf-ink-soft); font-size: clamp(1.05rem, 1.7vw, 1.25rem); }
.bf-404-search { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: .75rem; max-width: 700px; margin-top: 2rem; }
.bf-404-search input { width: 100%; min-height: 52px; padding: 0 1rem; border: 1px solid #b8c5cd; border-radius: 9px; color: var(--bf-navy); background: #fff; font: inherit; }
.bf-404-search input:focus { border-color: var(--bf-orange); outline: 3px solid rgba(245,130,50,.22); outline-offset: 2px; }
.bf-404-actions { gap: .85rem; }
.bf-404-panel { position: relative; overflow: hidden; padding: clamp(2rem, 4vw, 3rem); border: 1px solid rgba(23,77,121,.14); border-radius: 28px; color: #fff; background: linear-gradient(135deg, #071525 0%, #0d2a45 62%, #174d79 100%); box-shadow: var(--bf-shadow); }
.bf-404-panel::after { position: absolute; right: -50px; bottom: -70px; width: 190px; height: 190px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; content: ""; }
.bf-404-badge { display: grid; width: 54px; height: 54px; margin-bottom: 1.5rem; place-items: center; border-radius: 16px; color: #17100b; background: var(--bf-orange); font-size: 1.8rem; font-weight: 900; }
.bf-404-panel h2 { margin: 0 0 1.25rem; color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.05; letter-spacing: -.04em; }
.bf-404-panel ul { display: grid; gap: .75rem; margin: 0; padding: 0; list-style: none; }
.bf-404-panel a { display: flex; justify-content: space-between; gap: 1rem; padding: .95rem 0; border-bottom: 1px solid rgba(255,255,255,.16); color: #fff; text-decoration: none; font-weight: 800; }
.bf-404-panel a::after { color: var(--bf-orange); content: "→"; }
.bf-404-panel a:hover { color: #ffb37a; }
.bf-404-suggestions { margin-top: clamp(4rem, 8vw, 7rem); }

html.bf-high-contrast .bf-service-card,
html.bf-high-contrast .bf-integration-card,
html.bf-high-contrast .bf-visual-note,
html.bf-high-contrast .bf-404-panel { border: 2px solid #000; color: #000; background: #fff; box-shadow: none; }
html.bf-high-contrast .bf-hero { color: #000; background: #fff; }
html.bf-high-contrast .bf-hero h1 span { color: #000; }
html.bf-high-contrast .bf-404-panel h2,
html.bf-high-contrast .bf-404-panel a { color: #000; }
html.bf-high-contrast .bf-service-icon,
html.bf-high-contrast .bf-visual-note-icon,
html.bf-high-contrast .bf-404-badge { color: #000; background: #ffd166; }

@media (max-width: 1040px) {
  .bf-hero-grid { grid-template-columns: .92fr 1.08fr; gap: 36px; }
  .bf-hero h1 { font-size: clamp(2.8rem, 5vw, 4.2rem); }
  .bf-service-grid { grid-template-columns: repeat(2, 1fr); }
  .bf-service-card { min-height: 340px; }
  .bf-media-split { gap: 52px; }
}

@media (max-width: 850px) {
  .header-inner { min-height: 70px; }
  .bf-hero { min-height: auto; padding: 58px 0 78px; }
  .bf-hero-grid { grid-template-columns: 1fr; }
  .bf-hero-copy { padding: 0; }
  .bf-hero h1 { max-width: 700px; font-size: clamp(3rem, 10vw, 4.8rem); }
  .bf-hero-visual { margin-top: 14px; }
  .bf-visual-note { left: 18px; }
  .bf-trust-inner { align-items: flex-start; flex-direction: column; gap: 15px; padding-block: 24px; }
  .bf-trust-inner ul { flex-wrap: wrap; justify-content: flex-start; gap: 12px 28px; }
  .bf-ember-promo-card { grid-template-columns: 1fr; }
  .bf-ember-promo-actions { min-width: 0; }
  .bf-section { padding: 82px 0; }
  .bf-section-heading { grid-template-columns: 1fr; gap: 22px; }
  .bf-media-split, .bf-integration-card, .entry-header-visual { grid-template-columns: 1fr; }
  .bf-media-split { gap: 40px; }
  .bf-integration-copy { order: 2; }
  .bf-integration-image { min-height: 420px; }
  .entry-header-visual { gap: 35px; }
  .page-hero-image { order: -1; }
  .bf-404-hero { grid-template-columns: 1fr; }
  .bf-404-panel { order: 2; }
  .bf-404-search { grid-template-columns: 1fr; }
  .posts-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 580px) {
  .bf-hero { padding: 45px 0 68px; }
  .bf-hero h1 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .bf-hero .bf-lead { margin-top: 24px; }
  .bf-actions { align-items: stretch; flex-direction: column; }
  .bf-actions .bf-button { width: 100%; }
  .bf-hero-facts { align-items: flex-start; flex-direction: column; }
  .bf-hero-visual picture { border-radius: 7px 45px 7px 7px; }
  .bf-visual-note { position: relative; left: auto; bottom: auto; min-width: 0; width: calc(100% - 22px); margin: -20px auto 0; }
  .bf-hero-visual::before { right: -15px; bottom: 20px; }
  .bf-trust-inner ul { display: grid; grid-template-columns: 1fr 1fr; }
  .bf-ember-promo-card { border-radius: 18px; padding: 1.25rem; }
  .bf-ember-promo-actions .bf-button { width: 100%; justify-content: center; }
  .bf-section { padding: 68px 0; }
  .bf-section-heading h2, .bf-section h2 { font-size: clamp(2.15rem, 10vw, 3.2rem); }
  .bf-service-grid { grid-template-columns: 1fr; }
  .bf-service-card { min-height: 320px; }
  .bf-media-frame picture { border-radius: 42px 7px 7px 7px; }
  .bf-integration-card { border-radius: 20px; }
  .bf-integration-image { min-height: 300px; }
  .bf-integration-copy { padding: 32px 24px 38px; }
  .bf-cta { border-radius: 20px 45px 20px 20px; }
  .bf-cta-actions { width: 100%; min-width: 0; }
  .bf-cta-actions .bf-button { width: 100%; }
  .page-hero-image { border-radius: 7px 45px 7px 7px; }
  .posts-list { grid-template-columns: 1fr; }
  .bf-article-contact { margin-top: 50px; }
}
/* Language switcher */
.bf-language-switcher{display:flex;gap:.2rem;align-items:center;margin-left:.65rem;padding:.2rem;border:1px solid #d9e1e8;border-radius:999px;background:#f5f7f9;box-shadow:0 2px 10px rgba(19,40,63,.07)}.bf-language-switcher a{display:flex;gap:.3rem;align-items:center;padding:.42rem .68rem;border-radius:999px;color:#29445e;font-size:.78rem;font-weight:850;line-height:1;text-decoration:none;transition:.18s ease}.bf-language-switcher a:hover{background:#e7edf2;color:#13283f}.bf-language-switcher a[aria-current="page"]{background:#13283f;color:#fff;box-shadow:0 2px 8px rgba(19,40,63,.24)}@media(max-width:900px){.bf-language-switcher{order:2;margin-left:auto}.site-menu-toggle{order:3}.site-nav{order:4}}
@media(max-width:520px){.header-inner{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:10px 12px;align-items:center}.site-branding{grid-column:1;min-width:0}.site-branding a{min-width:0}.brand-name{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.site-menu-toggle{grid-column:2;order:initial;justify-self:end}.bf-language-switcher{grid-column:1/3;order:initial;justify-self:end;margin-left:0}.site-nav{grid-column:1/3;order:initial;max-height:calc(100dvh - 190px)}}
@media(max-width:380px){.bf-language-switcher a{gap:0;padding:.45rem;font-size:0}.bf-language-flag{width:22px;height:15px;flex-basis:22px}.site-menu-toggle span:last-child{position:absolute;overflow:hidden;width:1px;height:1px;clip:rect(0,0,0,0);white-space:nowrap}}

/* Reliable flag icons across desktop and mobile operating systems. */
.bf-language-flag{display:inline-block!important;width:20px;height:14px;flex:0 0 20px;border:1px solid rgba(16,32,51,.18);border-radius:2px;background-position:center;background-size:cover;box-shadow:0 1px 2px rgba(16,32,51,.12)}
.bf-language-flag-nl{background:linear-gradient(to bottom,#ae1c28 0 33.333%,#fff 33.333% 66.666%,#21468b 66.666% 100%)}
.bf-language-flag-en{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 36'%3E%3Cpath fill='%23012169' d='M0 0h60v36H0z'/%3E%3Cpath stroke='%23fff' stroke-width='7' d='m0 0 60 36M60 0 0 36'/%3E%3Cpath stroke='%23C8102E' stroke-width='3.5' d='m0 0 60 36M60 0 0 36'/%3E%3Cpath stroke='%23fff' stroke-width='12' d='M30 0v36M0 18h60'/%3E%3Cpath stroke='%23C8102E' stroke-width='7' d='M30 0v36M0 18h60'/%3E%3C/svg%3E")}

/* Two-level primary navigation. */
@media(min-width:901px){
  .site-nav>ul{display:flex;align-items:center;gap:24px}
  .site-nav .menu-item-has-children{position:relative}
  .site-nav .menu-item-has-children>a::after{content:'⌄';margin-left:.35rem;font-size:.78em}
  .site-nav .sub-menu{position:absolute;z-index:30;top:calc(100% - 2px);left:-18px;display:none!important;width:max-content;min-width:230px;align-items:stretch;gap:0;padding:10px;border:1px solid var(--bf-line);border-radius:12px;background:#fff;box-shadow:0 18px 45px rgba(16,32,51,.16)}
  .site-nav .menu-item-has-children:hover>.sub-menu,.site-nav .menu-item-has-children:focus-within>.sub-menu{display:flex!important;flex-direction:column}
  .site-nav .sub-menu a{width:100%;min-height:40px;padding:8px 10px;border-radius:7px;white-space:nowrap}
  .site-nav .sub-menu a:hover{background:#f3f6f8}
  .site-nav .sub-menu .menu-item:last-child a{width:100%;margin:0;padding:8px 10px;border-radius:7px;color:var(--bf-ink);background:transparent}
}
@media(max-width:900px){
  .site-nav .menu-item-has-children>a::after{content:'⌄';margin-left:.35rem;font-size:.78em;transition:transform .18s ease}
  .site-nav .menu-item-has-children.is-submenu-open>a::after{transform:rotate(180deg)}
  .site-nav .sub-menu{position:static!important;z-index:auto!important;top:auto!important;left:auto!important;display:none!important;width:100%!important;min-width:0!important;flex-direction:column!important;gap:0!important;margin:.35rem 0 .55rem .65rem!important;padding:.35rem 0 .35rem .85rem!important;border:0!important;border-left:3px solid var(--bf-blue)!important;border-radius:0!important;background:#f8fafc!important;box-shadow:none!important;opacity:1!important;filter:none!important}
  .site-nav .menu-item-has-children.is-submenu-open>.sub-menu{display:flex!important}
  .site-nav .sub-menu a,
  .site-nav .sub-menu .menu-item a,
  .site-nav .sub-menu .menu-item:last-child a{width:100%!important;min-height:42px;margin:0!important;padding:10px 8px!important;border-radius:6px!important;color:#071525!important;-webkit-text-fill-color:#071525!important;background:transparent!important;font-size:.94rem!important;font-weight:850!important;line-height:1.35!important;text-shadow:none!important;opacity:1!important;white-space:normal!important}
  .site-nav .sub-menu a:hover,
  .site-nav .sub-menu a:focus-visible{background:#eaf1f6!important;color:#000!important;-webkit-text-fill-color:#000!important}
}
html.bf-high-contrast .site-nav .sub-menu{border-left-color:#000!important;background:#fff!important}
html.bf-high-contrast .site-nav .sub-menu a,
html.bf-high-contrast .site-nav .sub-menu .menu-item a,
html.bf-high-contrast .site-nav .sub-menu .menu-item:last-child a{color:#000!important;-webkit-text-fill-color:#000!important;text-decoration:underline!important;background:#fff!important;opacity:1!important}

.bf-company-details{display:grid;gap:.28rem;margin:1.5rem 0;padding:1.15rem 1.25rem;border-left:4px solid var(--bf-orange);border-radius:0 10px 10px 0;background:#f4f7f9;color:var(--bf-ink);font-style:normal;line-height:1.5}.bf-company-details strong{font-size:1.05rem}.bf-company-details span,.bf-company-details a{display:block}.bf-company-details a{color:inherit;font-weight:750;text-decoration:underline;text-underline-offset:3px}.site-footer .bf-company-details-compact{gap:.15rem;margin:1rem 0 0;padding:0;border:0;background:transparent;color:inherit;font-size:.9rem}.site-footer .bf-company-details-compact strong{font-size:.95rem}
.bf-location-card{display:grid;grid-template-columns:minmax(250px,.72fr) minmax(0,1.28fr);gap:0;margin:2rem 0 1rem;overflow:hidden;border:1px solid var(--bf-line);border-radius:18px;background:#fff;box-shadow:0 18px 50px rgba(16,32,51,.1)}.bf-location-copy{display:flex;flex-direction:column;align-items:flex-start;justify-content:center;padding:clamp(1.5rem,4vw,2.5rem);background:linear-gradient(145deg,#f8fafc,#edf3f7)}.bf-location-copy h2{margin:.1rem 0 .7rem}.bf-location-copy p:not(.bf-kicker){margin:0 0 1.25rem;color:var(--bf-ink-soft)}.bf-location-map{position:relative;min-height:370px;background:#dfe8ee}.bf-location-map iframe{position:absolute;inset:0;width:100%;height:100%;border:0;opacity:0;transition:opacity .25s ease}.bf-location-placeholder{position:absolute;z-index:1;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.55rem;padding:2rem;text-align:center;color:var(--bf-ink);background:radial-gradient(circle at 50% 40%,#f8fafc,#dfe8ee)}.bf-location-placeholder>span:not(.bf-location-pin){max-width:380px;color:var(--bf-ink-soft)}.bf-location-pin{display:grid;width:58px;height:58px;place-items:center;border-radius:50%;color:#fff;background:var(--bf-orange);box-shadow:0 10px 25px rgba(1,207,182,.3);font-size:2rem}.bf-location-map.is-active iframe{opacity:1}.bf-location-map.is-active .bf-location-placeholder{display:none}@media(max-width:760px){.bf-location-card{grid-template-columns:1fr}.bf-location-map{min-height:330px}}
.bf-page-link-section{margin:clamp(3rem,7vw,6rem) 0 1rem;padding-top:clamp(2.4rem,5vw,4.5rem);border-top:1px solid var(--bf-line)}.bf-page-link-heading{max-width:760px;margin-bottom:2rem}.bf-page-link-heading h2{margin:.25rem 0 .75rem;font-size:clamp(2rem,4vw,3.25rem);line-height:1.08;letter-spacing:-.04em}.bf-page-link-heading>p:last-child{margin:0;color:var(--bf-ink-soft);font-size:1.05rem}.bf-page-link-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.bf-page-link-grid-4{grid-template-columns:repeat(2,minmax(0,1fr))}.bf-page-link-card{display:flex;min-width:0;overflow:hidden;flex-direction:column;border:1px solid var(--bf-line);border-radius:17px;color:var(--bf-ink);background:#fff;box-shadow:0 12px 32px rgba(16,32,51,.08);text-decoration:none;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}.bf-page-link-card:hover{transform:translateY(-4px);border-color:#b8c8d4;box-shadow:0 20px 45px rgba(16,32,51,.14)}.bf-page-link-image{position:relative;display:block;overflow:hidden;aspect-ratio:16/7;background:#dfe7ed}.bf-page-link-image img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease}.bf-page-link-card:hover .bf-page-link-image img{transform:scale(1.035)}.bf-page-link-badge{position:absolute;right:14px;bottom:14px;display:grid;min-width:44px;height:44px;padding:0 9px;place-items:center;border-radius:10px;color:#fff;background:rgba(7,21,37,.92);font-size:.76rem;font-weight:900;box-shadow:0 7px 18px rgba(0,0,0,.2)}.bf-page-link-content{display:flex;height:100%;padding:22px;flex-direction:column}.bf-page-link-content>strong{color:var(--bf-navy);font-size:1.24rem}.bf-page-link-content>span:not(.bf-text-link){margin:.65rem 0 1.15rem;color:var(--bf-ink-soft);line-height:1.6}.bf-page-link-content .bf-text-link{margin-top:auto;color:var(--bf-blue);font-weight:800}@media(max-width:850px){.bf-page-link-grid,.bf-page-link-grid-4{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:560px){.bf-page-link-grid,.bf-page-link-grid-4{grid-template-columns:1fr}.bf-page-link-image{aspect-ratio:16/8}.bf-page-link-content{padding:19px}}
.bf-contextual-contact{margin:clamp(3rem,7vw,6rem) 0 1rem;padding:clamp(1.4rem,4vw,2.5rem);border:1px solid #cbd7e0;border-radius:20px;background:linear-gradient(145deg,#f8fafc 0%,#eef4f7 100%);box-shadow:0 16px 42px rgba(16,32,51,.08)}.bf-contextual-contact-intro{max-width:780px}.bf-contextual-contact-intro h2{margin:.2rem 0 .65rem;color:var(--bf-navy);font-size:clamp(1.75rem,3.5vw,2.7rem);line-height:1.12;letter-spacing:-.035em}.bf-contextual-contact-intro>p:last-child{margin:0;color:var(--bf-ink-soft);font-size:1.02rem}.article-layout .bf-contextual-contact{margin-top:3rem;padding:clamp(1.2rem,3vw,2rem)}@media(max-width:560px){.bf-contextual-contact{border-radius:15px;padding:1.2rem}.bf-contextual-contact-intro h2{font-size:1.65rem}}

/* === Sticky header elevation === */
.site-header { transition: box-shadow .25s ease; }
.site-header.is-scrolled { box-shadow: 0 6px 30px rgba(8,24,39,.10); }

/* === Hero slider === */
.bf-slider { position: relative; overflow: hidden; color: #fff; background: var(--bf-navy); }
.bf-slider-track { position: relative; min-height: clamp(540px, 72vh, 740px); }
.bf-slide { position: absolute; inset: 0; display: flex; align-items: center; opacity: 0; visibility: hidden; transition: opacity .7s ease, visibility .7s ease; }
.bf-slide.is-active { position: relative; opacity: 1; visibility: visible; z-index: 1; }
.bf-slide-bg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; }
.bf-slide-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(4,15,29,.92) 0%, rgba(5,18,34,.78) 38%, rgba(5,18,34,.30) 72%, rgba(5,18,34,.12) 100%), linear-gradient(180deg, rgba(7,21,37,.05), rgba(7,21,37,.5)); pointer-events: none; }
.bf-slide-content { position: relative; z-index: 2; padding: clamp(72px, 10vh, 120px) 0 clamp(88px, 12vh, 130px); max-width: var(--bf-width); }
.bf-slide-content .bf-eyebrow { color: #7ff0e2; }
.bf-slide-title { max-width: 760px; margin: 0; color: #fff; font-size: clamp(2.5rem, 5.4vw, 4.6rem); line-height: 1.02; letter-spacing: -.055em; text-shadow: 0 4px 26px rgba(0,0,0,.28); }
.bf-slide-content .bf-lead { max-width: 640px; margin: 24px 0 0; color: #dbe5ee; font-size: clamp(1.05rem, 1.9vw, 1.22rem); }
.bf-slide-content .bf-actions { margin-top: 34px; }
.bf-button-hero-secondary { border: 1px solid rgba(255,255,255,.4); color: #fff; background: rgba(255,255,255,.08); backdrop-filter: blur(4px); }
.bf-button-hero-secondary:hover { color: #fff; background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.65); }
.bf-slide-social { display: flex; gap: 12px; margin: 30px 0 0; padding: 0; list-style: none; }
.bf-slide-social a { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; color: #fff; background: rgba(255,255,255,.07); transition: background .2s ease, transform .2s ease; }
.bf-slide-social a:hover { color: #fff; background: var(--bf-orange); transform: translateY(-2px); }
.bf-slide-social svg { width: 18px; height: 18px; }
.bf-slide-posts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; max-width: 900px; margin-top: 34px; }
.bf-slide-post-card { display: flex; flex-direction: column; overflow: hidden; border-radius: 14px; color: #fff; background: rgba(8,24,39,.55); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(6px); text-decoration: none; transition: transform .2s ease, border-color .2s ease; }
.bf-slide-post-card:hover { color: #fff; transform: translateY(-4px); border-color: rgba(255,255,255,.4); }
.bf-slide-post-media { display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--bf-blue); }
.bf-slide-post-media img { width: 100%; height: 100%; object-fit: cover; }
.bf-slide-post-placeholder { display: grid; width: 100%; height: 100%; place-items: center; color: rgba(255,255,255,.65); font-weight: 900; letter-spacing: .1em; }
.bf-slide-post-meta { padding: 12px 16px 0; color: #7ff0e2; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.bf-slide-post-title { padding: 4px 16px 16px; font-size: .95rem; font-weight: 750; line-height: 1.4; }
.bf-slider-arrow { position: absolute; z-index: 3; top: 50%; transform: translateY(-50%); display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: #fff; background: rgba(8,24,39,.45); cursor: pointer; font-size: 1.6rem; line-height: 1; transition: background .2s ease; }
.bf-slider-arrow:hover { background: var(--bf-orange); }
.bf-slider-prev { left: 18px; }
.bf-slider-next { right: 18px; }
.bf-slider-dots { position: absolute; z-index: 3; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.bf-slider-dots button { width: 12px; height: 12px; padding: 0; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; background: transparent; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.bf-slider-dots button[aria-selected="true"] { background: var(--bf-orange); border-color: var(--bf-orange); transform: scale(1.25); }
.bf-slider-pause { position: absolute; z-index: 3; right: 20px; bottom: 18px; display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: #fff; background: rgba(8,24,39,.45); cursor: pointer; }
@media (max-width: 850px) {
  .bf-slider-track { min-height: clamp(560px, 80vh, 720px); }
  .bf-slide-overlay { background: linear-gradient(90deg, rgba(4,15,29,.94) 0%, rgba(5,18,34,.82) 55%, rgba(5,18,34,.4) 100%), linear-gradient(180deg, rgba(7,21,37,.15), rgba(7,21,37,.62)); }
  .bf-slide-posts { grid-template-columns: 1fr; gap: 12px; max-width: 460px; }
  .bf-slide-post-media { display: none; }
  .bf-slider-arrow { width: 42px; height: 42px; }
  .bf-slider-prev { left: 10px; }
  .bf-slider-next { right: 10px; }
}
@media (max-width: 580px) {
  .bf-slide-content .bf-actions { align-items: stretch; flex-direction: column; }
  .bf-slide-content .bf-actions .bf-button { width: 100%; }
  .bf-slider-dots { bottom: 16px; }
  .bf-slider-pause { right: 12px; bottom: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  .bf-slide { transition: none; }
}
html.bf-high-contrast .bf-slide-overlay { background: rgba(0,0,0,.85); }
html.bf-high-contrast .bf-slider-arrow, html.bf-high-contrast .bf-slider-pause { border: 2px solid #fff; background: #000; }

/* === Breadcrumbs === */
.bf-breadcrumbs { padding: 14px 0; font-size: .82rem; }
.bf-breadcrumbs-top { border-bottom: 1px solid var(--bf-line); background: var(--bf-surface); }
.bf-breadcrumbs-above_footer { border-top: 1px solid var(--bf-line); background: var(--bf-surface); }
.bf-breadcrumbs-below_footer { background: #050f1b; color: #aebdcb; border-top: 1px solid rgba(255,255,255,.08); }
.bf-breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.bf-breadcrumbs li { display: flex; align-items: center; gap: 4px; }
.bf-breadcrumbs li + li::before { content: "\203A"; color: var(--bf-ink-soft); opacity: .7; margin-inline: 4px; }
.bf-breadcrumbs-below_footer li + li::before { color: #7e93a6; }
.bf-breadcrumbs a { color: var(--bf-ink-soft); font-weight: 650; text-decoration: none; }
.bf-breadcrumbs a:hover { color: var(--bf-orange-dark); text-decoration: underline; }
.bf-breadcrumbs-below_footer a { color: #d8e4ee; }
.bf-breadcrumbs [aria-current="page"] { color: var(--bf-navy); font-weight: 750; }
.bf-breadcrumbs-below_footer [aria-current="page"] { color: #fff; }


/* === 2.5.0: sticky-fix, vaste sliderhoogte, rustig menu, zoeken === */
html, body { overflow-x: clip; }
.admin-bar .site-header { top: var(--wp-admin--admin-bar--height, 32px); }
.bf-slider-track { height: clamp(540px, 72vh, 740px); min-height: 0; }
.bf-slide.is-active { position: absolute; }
@media (max-width: 850px) { .bf-slider-track { height: clamp(560px, 80vh, 720px); min-height: 0; } }

@media (min-width: 901px) {
  .site-nav a { color: var(--bf-ink); font-weight: 650; letter-spacing: 0; transition: color .15s ease; }
  .site-nav a:hover { color: var(--bf-orange-dark); }
  .site-nav > ul > li > a { border-bottom: 2px solid transparent; padding-block: 6px; }
  .site-nav > ul > li.current-menu-item > a,
  .site-nav > ul > li.current-menu-ancestor > a { border-bottom-color: var(--bf-orange); color: var(--bf-ink); }
  .site-nav .sub-menu { display: flex !important; flex-direction: column; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .16s ease, transform .16s ease, visibility .16s; padding: 6px; border-radius: 12px; box-shadow: 0 18px 45px rgba(8,24,39,.14); }
  .site-nav .menu-item-has-children:hover > .sub-menu,
  .site-nav .menu-item-has-children:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav .sub-menu a { min-height: 42px; padding: 9px 12px; border-radius: 8px; border-bottom: 0; font-weight: 600; }
  .site-nav .sub-menu a:hover { background: var(--bf-surface); color: var(--bf-navy); }
}

@media (max-width: 900px) {
  .js .site-nav.is-open { padding: 6px 10px 12px; margin-top: 6px; border: 1px solid var(--bf-line); border-radius: 14px; background: #fff; box-shadow: 0 18px 45px rgba(8,24,39,.10); }
  .site-nav.is-open ul { border-top: 0; }
}

/* Zoeken */
.bf-search-toggle { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid var(--bf-line); border-radius: 9px; color: var(--bf-ink-soft); background: transparent; cursor: pointer; transition: border-color .15s ease, color .15s ease; }
.bf-search-toggle:hover { border-color: var(--bf-orange); color: var(--bf-navy); }
.bf-search-toggle svg { width: 17px; height: 17px; }
.bf-search-overlay[hidden] { display: none; }
.bf-search-overlay { position: fixed; inset: 0; z-index: 100000; display: flex; justify-content: center; align-items: flex-start; padding: clamp(16px, 10vh, 110px) 16px 16px; background: rgba(7,21,37,.45); backdrop-filter: blur(4px); opacity: 0; transition: opacity .2s ease; }
.bf-search-overlay.is-open { opacity: 1; }
.bf-search-panel { width: min(660px, 100%); max-height: 80vh; display: flex; flex-direction: column; border-radius: 16px; background: #fff; box-shadow: 0 40px 90px rgba(4,15,29,.35); overflow: hidden; }
.bf-search-form { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-bottom: 1px solid var(--bf-line); }
.bf-search-form svg { width: 18px; height: 18px; flex: 0 0 auto; color: var(--bf-ink-soft); }
.bf-search-form input[type="search"] { flex: 1; min-width: 0; border: 0; outline: none; font: inherit; font-size: 1.05rem; color: var(--bf-ink); background: transparent; }
.bf-search-form input[type="search"]::-webkit-search-cancel-button { display: none; }
.bf-search-close { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid var(--bf-line); border-radius: 8px; color: var(--bf-ink-soft); background: transparent; cursor: pointer; font-size: 1.1rem; }
.bf-search-close:hover { background: var(--bf-surface); }
.bf-search-results { overflow-y: auto; }
.bf-search-result { display: block; padding: 13px 18px; border-bottom: 1px solid var(--bf-surface); color: var(--bf-ink); text-decoration: none; }
.bf-search-result:hover, .bf-search-result:focus-visible { background: var(--bf-surface); color: var(--bf-ink); }
.bf-search-result-meta { display: flex; gap: 8px; align-items: center; margin-bottom: 2px; font-size: .72rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; color: var(--bf-orange-dark); }
.bf-search-result-meta span:last-child { color: var(--bf-ink-soft); letter-spacing: 0; text-transform: none; font-weight: 600; }
.bf-search-result strong { display: block; font-size: 1rem; line-height: 1.35; }
.bf-search-result p { margin: 3px 0 0; color: var(--bf-ink-soft); font-size: .88rem; line-height: 1.5; }
.bf-search-all { display: block; padding: 13px 18px; color: var(--bf-orange-dark); font-weight: 750; text-decoration: none; text-align: center; }
.bf-search-all:hover { background: var(--bf-surface); }
.bf-search-empty, .bf-search-hint { margin: 0; padding: 14px 18px; color: var(--bf-ink-soft); font-size: .9rem; }
body.bf-search-open { overflow: hidden; }

/* Zoekresultatenpagina */
.bf-search-page-form { display: flex; gap: 10px; max-width: 560px; margin: 26px 0 0; }
.bf-search-page-form input[type="search"] { flex: 1; min-width: 0; min-height: 50px; padding: 10px 16px; border: 1px solid var(--bf-line); border-radius: 10px; font: inherit; color: var(--bf-ink); }
.bf-search-page-form input[type="search"]:focus { border-color: var(--bf-orange); outline: none; box-shadow: 0 0 0 3px rgba(1,207,182,.2); }
.bf-search-list { display: grid; gap: 14px; max-width: 780px; margin-top: 44px; }
.bf-search-list .bf-search-result { border: 1px solid var(--bf-line); border-radius: 13px; padding: 18px 20px; background: #fff; transition: border-color .15s ease, box-shadow .15s ease; }
.bf-search-list .bf-search-result:hover { border-color: var(--bf-orange); box-shadow: 0 10px 30px rgba(8,24,39,.07); background: #fff; }
.bf-search-count { margin: 10px 0 0; color: var(--bf-ink-soft); }

/* === 2.5.2: Klantlogin als subtiele outline-knop met poppetje-icoon === */
.site-header .site-nav > ul > li:last-child > a {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 40px; padding: 8px 14px 8px 12px;
  border: 1px solid var(--bf-line); border-radius: 9px;
  color: var(--bf-ink-soft); background: transparent;
  font-weight: 650; box-shadow: none;
  transition: border-color .15s ease, color .15s ease;
}
.site-header .site-nav > ul > li:last-child > a::before {
  content: ""; width: 16px; height: 16px; flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12a5 5 0 1 0 0-10 5 5 0 0 0 0 10zm0 2c-5 0-9 2.6-9 6v1h18v-1c0-3.4-4-6-9-6z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12a5 5 0 1 0 0-10 5 5 0 0 0 0 10zm0 2c-5 0-9 2.6-9 6v1h18v-1c0-3.4-4-6-9-6z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.site-header .site-nav > ul > li:last-child > a:hover {
  border-color: var(--bf-orange); color: var(--bf-navy); background: transparent;
}
@media (max-width: 900px) {
  .site-header .site-nav > ul > li:last-child > a { width: fit-content; margin-top: 6px; }
}
html.bf-high-contrast .site-header .site-nav > ul > li:last-child > a { border-color: #000; color: #000; }

/* === 2.6.0: full-bleed pagina-hero met titel-overlay === */
.page-main:has(.bf-page-hero) { padding-top: 0; }
.bf-page-hero {
  position: relative; width: 100vw; margin-left: calc(50% - 50vw);
  min-height: clamp(320px, 40vw, 520px); display: flex; align-items: flex-end;
  overflow: hidden; margin-bottom: clamp(42px, 6vw, 74px); background: var(--bf-navy);
}
.bf-page-hero-media { position: absolute; inset: 0; display: block; }
.bf-page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.bf-page-hero-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4,15,29,.92) 0%, rgba(5,18,34,.74) 40%, rgba(5,18,34,.36) 74%, rgba(5,18,34,.12) 100%),
    linear-gradient(0deg, rgba(7,21,37,.55), rgba(7,21,37,.04));
}
.bf-page-hero-inner { position: relative; z-index: 1; padding-block: clamp(40px, 6vw, 76px); }
.bf-page-hero-inner .bf-kicker { color: #7ff0e2; margin-bottom: 14px; }
.bf-page-hero-inner h1 {
  max-width: 900px; margin: 0; color: #fff;
  font-size: clamp(2.4rem, 5.2vw, 4.7rem); line-height: 1.01; letter-spacing: -.05em;
  text-shadow: 0 4px 30px rgba(0,0,0,.32);
}
@media (max-width: 700px) {
  .bf-page-hero { min-height: clamp(300px, 62vw, 420px); align-items: flex-end; }
  .bf-page-hero-overlay { background: linear-gradient(90deg, rgba(4,15,29,.9) 0%, rgba(5,18,34,.66) 100%), linear-gradient(0deg, rgba(7,21,37,.7), rgba(7,21,37,.15)); }
}
html.bf-high-contrast .bf-page-hero-overlay { background: rgba(0,0,0,.78); }
html.bf-high-contrast .bf-page-hero-inner .bf-kicker { color: #fff; }

/* 2.6.1: pagina-hero intro + knop */
.bf-page-hero-intro { max-width: 620px; margin: 18px 0 0; color: #dbe5ee; font-size: clamp(1.02rem, 1.6vw, 1.18rem); line-height: 1.55; text-shadow: 0 2px 16px rgba(0,0,0,.3); }
.bf-page-hero-inner .bf-actions { margin-top: 26px; }

/* === 2.6.2: 404 met full-bleed hero, teal accenten === */
.bf-404-hero { grid-template-columns: none; gap: 0; align-items: flex-end; }
.bf-404-body { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; margin-top: clamp(1rem, 3vw, 2rem); }
.bf-404-search-block h2 { margin: 0 0 1rem; color: var(--bf-navy); font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -.03em; }
.bf-404-search-block .bf-search-page-form { margin: 0; max-width: none; }
.bf-404-panel a::after { color: var(--bf-orange); }
.bf-404-panel a:hover { color: #7ff0e2; }
@media (max-width: 850px) { .bf-404-body { grid-template-columns: 1fr; } }
html.bf-high-contrast .bf-404-panel a::after { color: #000; }

/* === 2.6.5: artikel-hero — blogposts met full-bleed banner zoals pagina's === */
.bf-article-hero h1 { font-size: clamp(1.9rem, 3.6vw, 3.3rem); line-height: 1.08; }
.bf-article-hero .bf-kicker { text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; }
.bf-article-hero .bf-kicker a { color: inherit; text-decoration: none; }
.bf-article-hero .bf-kicker a:hover { color: #fff; }

/* === 2.6.6: zijbalk paginakaarten met afbeelding === */
.bf-related-page-media { display: block; margin: -.95rem -.95rem .35rem; border-radius: 12px 12px 0 0; overflow: hidden; aspect-ratio: 960 / 400; }
.bf-related-page-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .25s ease; }
.bf-related-page-card:hover .bf-related-page-media img { transform: scale(1.04); }

/* === 2.6.7: uniforme zijbalk, artikel-CTA op paginakaarten, zijbalk sluit aan op hero === */
.bf-related-card-cta { display: inline-block; margin-top: .4rem; color: var(--bf-blue); font-size: .82rem; font-weight: 800; text-decoration: none; }
.bf-related-card-cta:hover { text-decoration: underline; }
@media (min-width: 851px) {
  .page-main:has(.bf-page-hero) .bf-related-pages,
  .page-main:has(.bf-page-hero) .bf-related-articles {
    margin-top: calc(-1 * clamp(42px, 6vw, 74px));
    border-top-left-radius: 0; border-top-right-radius: 0; border-top: 0;
  }
}
/* #26 — WCAG AA contrast: --bf-orange-dark (#0b8577) geeft slechts 4.19:1 op --bf-surface (#f4f7fa).
   Nodig: 4.5:1 voor kleine tekst. #076557 geeft 6.48:1. */
.bf-section-soft .bf-kicker { color: #076557; }
.bf-section-soft ol.bf-process-list > li > span { color: #076557; }

/* 2.7.5: woordmerk-logo in de header */
.site-branding a { gap: 0; }
.site-logo { display: block; height: 30px; width: auto; }
.site-header.is-scrolled .site-logo { height: 27px; }
@media (max-width: 520px) { .site-logo { height: 26px; } }

/* 2.7.6: licht woordmerk in de footer */
.site-footer .site-branding a { gap: 0; }
.site-logo-footer { display: block; height: 30px; width: auto; margin-bottom: 4px; }
