/*
 * VoitureBelgique portal system
 * Local-first, dependency-free presentation layered over Kadence.
 */

@font-face {
	font-display: swap;
	font-family: "Roboto";
	font-stretch: 100%;
	font-style: normal;
	font-weight: 400 700;
	src: url("../fonts/roboto-latin-400-700.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
	--vb-asphalt-950: #17191b;
	--vb-asphalt-900: #202124;
	--vb-asphalt-800: #2b2d30;
	--vb-asphalt-700: #3c4043;
	--vb-primary: #137333;
	--vb-primary-hover: #0d652d;
	--vb-amber: #f9ab00;
	--vb-teal: #00796b;
	--vb-teal-hover: #00695c;
	--vb-ink: #3c4043;
	--vb-muted: #5f6368;
	--vb-subtle: #7b8085;
	--vb-line: #dadce0;
	--vb-soft: #f8f9fa;
	--vb-soft-green: #eef5f1;
	--vb-white: #fff;
	/* Compatibility aliases for established portal components. */
	--vb-navy-950: var(--vb-asphalt-950);
	--vb-navy-900: var(--vb-asphalt-900);
	--vb-navy-800: var(--vb-asphalt-800);
	--vb-navy-700: var(--vb-asphalt-700);
	--vb-red-600: var(--vb-primary);
	--vb-red-700: var(--vb-primary-hover);
	--vb-yellow: var(--vb-amber);
	--vb-green: var(--vb-primary);
	--vb-blue: var(--vb-primary);
	--vb-soft-blue: var(--vb-soft-green);
	--vb-shell: min(1280px, calc(100vw - 48px));
	--vb-reading: 820px;
	--vb-radius-sm: 8px;
	--vb-radius: 16px;
	--vb-radius-lg: 24px;
	--vb-shadow-sm: 0 8px 24px rgba(32, 33, 36, .07);
	--vb-shadow: 0 18px 50px rgba(32, 33, 36, .12);
	--vb-transition: 180ms ease;
}

html { scroll-behavior: smooth; }

body.vb-kadence-portal {
	background: var(--vb-white);
	color: var(--vb-ink);
	font-family: "Roboto", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 17px;
	line-height: 1.65;
}

body.vb-electric-content {
	--vb-red-600: var(--vb-teal);
	--vb-red-700: var(--vb-teal-hover);
	--vb-soft-blue: #eaf5f3;
}

body.vb-kadence-portal button,
body.vb-kadence-portal input,
body.vb-kadence-portal select,
body.vb-kadence-portal textarea { font-family: inherit; }

body.vb-kadence-portal h1,
body.vb-kadence-portal h2,
body.vb-kadence-portal h3,
body.vb-kadence-portal h4,
body.vb-kadence-portal h5,
body.vb-kadence-portal h6 {
	color: var(--vb-navy-900);
	font-family: "Roboto", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-weight: 700;
	letter-spacing: -.028em;
	line-height: 1.12;
}

body.vb-kadence-portal :where(a) { color: var(--vb-red-600); }
body.vb-kadence-portal :where(a:hover) { color: var(--vb-red-700); }

body.vb-kadence-portal :focus-visible {
	outline: 3px solid var(--vb-yellow);
	outline-offset: 3px;
}

body.vb-kadence-portal img { height: auto; }

.vb-shell,
body.vb-kadence-portal .site-container {
	margin-inline: auto;
	max-width: 1280px;
	width: var(--vb-shell);
}

.vb-eyebrow,
.is-style-eyebrow {
	align-items: center;
	color: var(--vb-red-600);
	display: flex;
	font-size: 12px;
	font-weight: 700;
	gap: 9px;
	letter-spacing: .14em;
	line-height: 1.25;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.vb-eyebrow::before,
.is-style-eyebrow::before {
	background: currentColor;
	content: "";
	height: 2px;
	width: 24px;
}

.vb-eyebrow--light { color: #fdd663; }

.vb-button,
body.vb-kadence-portal .wp-block-button__link,
body.vb-kadence-portal .button {
	align-items: center;
	background: var(--vb-red-600);
	border: 1px solid var(--vb-red-600);
	border-radius: var(--vb-radius-sm);
	color: var(--vb-white);
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	justify-content: center;
	line-height: 1.2;
	min-height: 48px;
	padding: 13px 20px;
	text-decoration: none;
	transition: background var(--vb-transition), border-color var(--vb-transition), transform var(--vb-transition);
}

.vb-button:hover,
body.vb-kadence-portal .wp-block-button__link:hover,
body.vb-kadence-portal .button:hover {
	background: var(--vb-red-700);
	border-color: var(--vb-red-700);
	color: var(--vb-white);
	transform: translateY(-1px);
}

.vb-button--light { background: var(--vb-white); border-color: var(--vb-white); color: var(--vb-navy-900); }
.vb-button--light:hover { background: var(--vb-yellow); border-color: var(--vb-yellow); color: var(--vb-navy-900); }

/* Kadence header -------------------------------------------------------- */

body.vb-kadence-portal .site-header { background: var(--vb-white); box-shadow: 0 1px 0 rgba(32, 33, 36, .1); position: relative; z-index: 60; }
body.vb-kadence-portal .site-header-row-container-inner > .site-container { width: var(--vb-shell); }

body.vb-kadence-portal .site-top-header-wrap .site-header-row-container-inner {
	background: var(--vb-soft);
	border-bottom: 1px solid var(--vb-line);
	color: var(--vb-muted);
}

.vb-header-kicker { font-size: 11px; letter-spacing: .055em; text-transform: uppercase; }
.vb-header-kicker b { color: var(--vb-navy-900); font-weight: 700; }

body.vb-kadence-portal .site-main-header-wrap .site-header-row-container-inner {
	background: var(--vb-white);
	border: 0;
}

body.vb-kadence-portal .site-branding a.brand,
body.vb-kadence-portal .site-branding a.brand:hover { color: var(--vb-navy-900); }
body.vb-kadence-portal .site-branding .site-title { color: var(--vb-navy-900); font-size: clamp(22px, 3vw, 34px); font-weight: 700; letter-spacing: -.045em; }
body.vb-kadence-portal .site-branding .site-description { color: var(--vb-muted); }
body.vb-kadence-portal .site-branding .custom-logo { filter: brightness(0) saturate(100%) invert(12%); max-height: 58px; object-fit: contain; object-position: left center; width: auto; }
body.vb-kadence-portal .site-branding .custom-logo-link { align-items: center; display: inline-flex; }

body.vb-kadence-portal .site-branding .site-title-wrap { align-items: center; display: flex; gap: 11px; }
body.vb-kadence-portal .site-branding .site-title-wrap::before { background-color: var(--vb-red-600); background-image: linear-gradient(108deg, transparent 0 38%, rgba(255, 255, 255, .94) 39% 43%, transparent 44% 58%, rgba(255, 255, 255, .72) 59% 63%, transparent 64%); border-radius: 9px; content: ""; display: block; flex: 0 0 44px; height: 44px; }
body.vb-kadence-portal .site-branding .site-title { color: var(--vb-navy-900); font-family: "Roboto", ui-sans-serif, system-ui, sans-serif; font-size: clamp(22px, 2.3vw, 30px); font-weight: 700; letter-spacing: -.045em; line-height: 1; margin: 0; white-space: nowrap; }

body.vb-kadence-portal .header-search-toggle,
body.vb-kadence-portal .search-toggle-open,
body.vb-kadence-portal .mobile-toggle-open-container .menu-toggle-open {
	background: var(--vb-soft);
	border: 1px solid var(--vb-line);
	border-radius: 999px;
	color: var(--vb-navy-900);
	height: 44px;
	width: 44px;
}
body.vb-kadence-portal .header-search-toggle:hover,
body.vb-kadence-portal .search-toggle-open:hover,
body.vb-kadence-portal .mobile-toggle-open-container .menu-toggle-open:hover { background: var(--vb-red-600); color: var(--vb-white); }

body.vb-kadence-portal .site-bottom-header-wrap .site-header-row-container-inner {
	background: var(--vb-white);
	border-bottom: 1px solid var(--vb-line);
}

body.vb-kadence-portal .site-bottom-header-inner-wrap { justify-content: flex-start; }
body.vb-kadence-portal .header-navigation { width: 100%; }
body.vb-kadence-portal .header-navigation .header-menu-container { width: 100%; }
body.vb-kadence-portal .header-navigation .menu { display: flex; justify-content: flex-start; width: 100%; }
body.vb-kadence-portal .header-navigation .menu > li > a {
	color: var(--vb-navy-900);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .015em;
	padding-inline: 17px;
	text-transform: uppercase;
}
body.vb-kadence-portal .header-navigation .menu > li:first-child > a { padding-left: 0; }
body.vb-kadence-portal .header-navigation .menu > li.current-menu-item > a,
body.vb-kadence-portal .header-navigation .menu > li.current-menu-ancestor > a,
body.vb-kadence-portal .header-navigation .menu > li > a:hover { color: var(--vb-red-600); }
body.vb-kadence-portal .header-navigation .menu > li > a::after {
	background: var(--vb-red-600);
	bottom: 0;
	content: "";
	height: 3px;
	left: 17px;
	position: absolute;
	right: 17px;
	transform: scaleX(0);
	transition: transform var(--vb-transition);
}
body.vb-kadence-portal .header-navigation .menu > li:hover > a::after,
body.vb-kadence-portal .header-navigation .menu > li.current-menu-item > a::after,
body.vb-kadence-portal .header-navigation .menu > li.current-menu-ancestor > a::after { transform: scaleX(1); }

body.vb-kadence-portal .header-navigation .sub-menu {
	background: var(--vb-white);
	border: 1px solid var(--vb-line);
	border-radius: 0 0 12px 12px;
	box-shadow: var(--vb-shadow);
	min-width: 260px;
	padding: 10px;
}
body.vb-kadence-portal .header-navigation .sub-menu a {
	border-radius: 7px;
	color: var(--vb-ink);
	font-size: 14px;
	font-weight: 650;
	line-height: 1.3;
	padding: 11px 13px;
}
body.vb-kadence-portal .header-navigation .sub-menu a:hover { background: var(--vb-soft); color: var(--vb-red-600); }

.vb-page-scrolled body.vb-kadence-portal .site-header { box-shadow: 0 10px 30px rgba(32, 33, 36, .09); }

body.vb-kadence-portal #masthead .kadence-sticky-header.item-is-fixed:not(.item-at-start) > .site-header-row-container-inner,
body.vb-kadence-portal #masthead .site-main-header-wrap.kadence-sticky-header.item-is-fixed.item-is-stuck > .site-header-row-container-inner {
	background: rgba(255, 255, 255, .98) !important;
	border-bottom: 1px solid rgba(32, 33, 36, .1);
}

body.vb-kadence-portal .popup-drawer .drawer-inner { background: var(--vb-navy-900); color: var(--vb-white); }
body.vb-kadence-portal .popup-drawer .drawer-header .drawer-toggle { color: var(--vb-white); }
body.vb-kadence-portal .mobile-navigation a { border-bottom: 1px solid rgba(255, 255, 255, .12); color: var(--vb-white); font-size: 16px; font-weight: 700; padding-block: 14px; }
body.vb-kadence-portal .mobile-navigation a:hover { color: var(--vb-yellow); }

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

body.home.vb-kadence-portal #inner-wrap,
body.home.vb-kadence-portal #primary { background: var(--vb-white); }
body.home.vb-kadence-portal .content-area { margin: 0; }
body.home.vb-kadence-portal .content-container { max-width: none; padding: 0; width: 100%; }

.vb-home-hero {
	background-color: var(--vb-navy-950);
	background-image: linear-gradient(90deg, rgba(23, 25, 27, .99) 0%, rgba(23, 25, 27, .93) 39%, rgba(23, 25, 27, .58) 63%, rgba(23, 25, 27, .16) 100%), url("../images/portal-hero.webp");
	background-position: center;
	background-size: cover;
	color: var(--vb-white);
	isolation: isolate;
	min-height: 600px;
	position: relative;
}

.vb-home-hero::after {
	background: linear-gradient(180deg, transparent 72%, rgba(23, 25, 27, .46));
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: -1;
}

.vb-home-hero__inner { align-items: flex-end; display: grid; grid-template-columns: minmax(0, 760px) minmax(260px, 1fr); min-height: 600px; padding-block: 92px 64px; }
.vb-home-hero__content { align-self: center; }
body.vb-kadence-portal .vb-home-hero h1 { color: var(--vb-white); font-size: clamp(44px, 6vw, 76px); letter-spacing: -.055em; line-height: .98; margin: 0; max-width: 720px; }
.vb-home-hero__lede { color: rgba(255, 255, 255, .83); font-size: clamp(18px, 2vw, 22px); line-height: 1.55; margin: 26px 0 30px; max-width: 675px; }

.vb-portal-search {
	align-items: center;
	background: var(--vb-white);
	border: 1px solid rgba(255, 255, 255, .65);
	border-radius: 12px;
	box-shadow: 0 18px 45px rgba(0, 0, 0, .24);
	color: var(--vb-muted);
	display: flex;
	gap: 13px;
	max-width: 730px;
	padding: 7px 7px 7px 18px;
}
.vb-portal-search input[type="search"] { background: transparent; border: 0; box-shadow: none; color: var(--vb-ink); flex: 1; font-size: 15px; height: 48px; min-width: 0; padding: 0; }
.vb-portal-search input[type="search"]:focus { box-shadow: none; outline: 0; }
.vb-portal-search input::placeholder { color: var(--vb-subtle); opacity: 1; }
.vb-portal-search button { background: var(--vb-red-600); border: 0; border-radius: 8px; color: var(--vb-white); cursor: pointer; font-size: 14px; font-weight: 700; min-height: 48px; padding: 12px 21px; }
.vb-portal-search button:hover { background: var(--vb-red-700); }

.vb-quick-links { align-items: center; display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.vb-quick-links span { color: rgba(255, 255, 255, .62); font-size: 12px; font-weight: 700; letter-spacing: .08em; margin-right: 4px; text-transform: uppercase; }
.vb-quick-links a { background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .17); border-radius: 999px; color: var(--vb-white); font-size: 12px; font-weight: 700; padding: 7px 11px; text-decoration: none; }
.vb-quick-links a:hover { background: var(--vb-white); border-color: var(--vb-white); color: var(--vb-navy-900); }

.vb-portal-shortcuts { background: var(--vb-white); position: relative; z-index: 4; }
.vb-portal-shortcuts__grid { background: var(--vb-white); border: 1px solid var(--vb-line); border-radius: 17px; box-shadow: var(--vb-shadow); display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); margin-top: -30px; overflow: hidden; }
.vb-portal-shortcuts a { align-items: center; border-right: 1px solid var(--vb-line); color: var(--vb-navy-900); display: grid; gap: 8px; grid-template-columns: 39px minmax(0, 1fr) auto; min-height: 86px; padding: 14px 15px; text-decoration: none; transition: background var(--vb-transition), color var(--vb-transition); }
.vb-portal-shortcuts a:last-child { border-right: 0; }
.vb-portal-shortcuts a:hover { background: var(--vb-soft); color: var(--vb-red-600); }
.vb-portal-shortcuts__icon { align-items: center; background: var(--vb-soft-blue); border-radius: 10px; color: var(--vb-red-600); display: flex; height: 39px; justify-content: center; width: 39px; }
.vb-portal-shortcuts .vb-icon { height: 21px; width: 21px; }
.vb-portal-shortcuts strong { color: var(--vb-navy-900); font-size: 12px; line-height: 1.3; }
.vb-portal-shortcuts a > span:last-child { color: var(--vb-red-600); font-size: 15px; font-weight: 700; }

.vb-home-hero__trust {
	align-self: end;
	backdrop-filter: blur(14px);
	background: rgba(32, 33, 36, .82);
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 16px;
	display: grid;
	gap: 10px;
	justify-self: end;
	max-width: 300px;
	padding: 24px;
}
.vb-home-hero__trust strong { color: var(--vb-white); font-size: 16px; margin-bottom: 3px; }
.vb-home-hero__trust span { color: rgba(255, 255, 255, .78); font-size: 13px; padding-left: 21px; position: relative; }
.vb-home-hero__trust span::before { color: var(--vb-yellow); content: "✓"; font-weight: 700; left: 0; position: absolute; }

/* Homepage sections ----------------------------------------------------- */

.vb-home-section { padding-block: 92px; }
.vb-home-section + .vb-home-section { border-top: 1px solid var(--vb-line); }
.vb-home-topics { background: var(--vb-white); }
.vb-home-brands { background: #f4f7f5; border-block: 1px solid var(--vb-line); }
.vb-home-latest { background: var(--vb-soft); }
.vb-home-guides { background: var(--vb-white); }
.vb-home-reliability { background: var(--vb-soft); }

.vb-section-heading { align-items: end; display: grid; gap: 50px; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); margin-bottom: 38px; }
.vb-section-heading h2 { font-size: clamp(32px, 4vw, 48px); margin: 0; max-width: 790px; }
.vb-section-heading > p { color: var(--vb-muted); font-size: 16px; margin: 0 0 4px; }
.vb-section-heading--compact { align-items: center; grid-template-columns: minmax(0, 1fr) auto; }
.vb-section-heading--compact h2 { font-size: clamp(30px, 3.2vw, 42px); }
.vb-section-link { color: var(--vb-navy-900); font-size: 14px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.vb-section-link span { color: var(--vb-red-600); margin-left: 5px; }
.vb-section-link:hover { color: var(--vb-red-600); }

.vb-topic-grid { display: grid; gap: 16px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.vb-topic-card {
	background: var(--vb-white);
	border: 1px solid var(--vb-line);
	border-radius: var(--vb-radius);
	color: var(--vb-ink);
	display: flex;
	flex-direction: column;
	min-height: 262px;
	overflow: hidden;
	padding: 27px;
	position: relative;
	text-decoration: none;
	transition: border-color var(--vb-transition), box-shadow var(--vb-transition), transform var(--vb-transition);
}
.vb-topic-card::after { background: var(--vb-red-600); bottom: 0; content: ""; height: 4px; left: 0; position: absolute; transform: scaleX(0); transform-origin: left; transition: transform var(--vb-transition); width: 100%; }
.vb-topic-card:hover { border-color: rgba(19, 115, 51, .45); box-shadow: var(--vb-shadow-sm); color: var(--vb-ink); transform: translateY(-4px); }
.vb-topic-card:hover::after { transform: scaleX(1); }
.vb-topic-card__index { color: var(--vb-red-600); font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.vb-topic-card h3 { font-size: 23px; margin: 27px 0 10px; }
.vb-topic-card p { color: var(--vb-muted); font-size: 14px; line-height: 1.6; margin: 0; }
.vb-topic-card__action { color: var(--vb-navy-900); font-size: 13px; font-weight: 700; margin-top: auto; padding-top: 18px; }
.vb-topic-card__action b { color: var(--vb-red-600); margin-left: 5px; }

.vb-home-brand-grid { display: grid; gap: 12px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.vb-home-brand-card {
	align-items: center;
	background: var(--vb-white);
	border: 1px solid var(--vb-line);
	border-radius: 14px;
	color: var(--vb-ink);
	display: grid;
	gap: 13px;
	grid-template-columns: 52px minmax(0, 1fr) auto;
	min-height: 88px;
	padding: 15px;
	text-decoration: none;
	transition: border-color var(--vb-transition), box-shadow var(--vb-transition), transform var(--vb-transition);
}
.vb-home-brand-card:hover { border-color: rgba(19, 115, 51, .42); box-shadow: 0 12px 28px rgba(32, 33, 36, .08); color: var(--vb-ink); transform: translateY(-3px); }
.vb-home-brand-card__mark { align-items: center; background: #f7f9f8; border: 1px solid #e3e7e4; border-radius: 12px; display: flex; height: 52px; justify-content: center; width: 52px; }
.vb-home-brand-card__mark img { display: block; height: 33px; max-width: 36px; object-fit: contain; width: 33px; }
.vb-home-brand-card__mark .vbph-brand-monogram { color: var(--vb-navy-900); font-size: 11px; font-weight: 800; letter-spacing: -.02em; }
.vb-home-brand-card strong { color: var(--vb-navy-900); display: block; font-size: 15px; line-height: 1.2; }
.vb-home-brand-card small { color: var(--vb-muted); display: block; font-size: 10px; line-height: 1.35; margin-top: 5px; }
.vb-home-brand-card b { color: var(--vb-green); font-size: 17px; transition: transform var(--vb-transition); }
.vb-home-brand-card:hover b { transform: translateX(3px); }
.vb-home-brands__all { margin: 28px 0 0; text-align: center; }
.vb-home-brands__all .vb-button { background: var(--vb-white); border: 1px solid #b9c3bc; color: var(--vb-navy-900); }
.vb-home-brands__all .vb-button:hover { background: var(--vb-navy-900); border-color: var(--vb-navy-900); color: var(--vb-white); }

.vb-home-region { background: #f1f5f2; border-block: 1px solid var(--vb-line); color: var(--vb-ink); overflow: hidden; padding-block: 86px; position: relative; }
.vb-home-region::before { border: 1px solid rgba(32, 33, 36, .06); border-radius: 50%; content: ""; height: 620px; position: absolute; right: -230px; top: -240px; width: 620px; }
.vb-home-region__grid { align-items: center; display: grid; gap: 100px; grid-template-columns: minmax(0, 1fr) minmax(420px, .84fr); position: relative; }
body.vb-kadence-portal .vb-home-region h2 { color: var(--vb-navy-900); font-size: clamp(32px, 4vw, 50px); margin: 0 0 22px; }
.vb-home-region p:not(.vb-eyebrow) { color: var(--vb-muted); margin: 0 0 28px; max-width: 660px; }
.vb-region-list { display: grid; gap: 12px; }
.vb-region-list a { align-items: center; background: var(--vb-white); border: 1px solid var(--vb-line); border-radius: 12px; box-shadow: 0 5px 16px rgba(32, 33, 36, .04); color: var(--vb-navy-900); display: grid; gap: 14px; grid-template-columns: 46px 1fr auto; padding: 17px 19px; text-decoration: none; transition: background var(--vb-transition), transform var(--vb-transition); }
.vb-region-list a:hover { background: var(--vb-white); border-color: #b9c4bd; color: var(--vb-navy-900); transform: translateX(4px); }
.vb-region-list a > span { align-items: center; background: var(--vb-red-600); border-radius: 9px; display: flex; font-size: 14px; font-weight: 700; height: 40px; justify-content: center; width: 40px; }
.vb-region-list strong { font-size: 15px; }
.vb-region-list small { color: var(--vb-subtle); font-size: 12px; text-align: right; }

.vb-home-method { background: var(--vb-white); border-top: 1px solid var(--vb-line); padding-block: 82px; }
.vb-home-method__grid { align-items: start; display: grid; gap: 70px; grid-template-columns: .68fr 1.32fr; }
.vb-home-method h2 { font-size: clamp(30px, 3.2vw, 42px); margin: 0; }
.vb-method-points { display: grid; gap: 0; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.vb-method-points > div { border-left: 1px solid var(--vb-line); padding: 0 25px; }
.vb-method-points b { color: var(--vb-red-600); display: block; font-size: 12px; letter-spacing: .12em; margin-bottom: 20px; }
.vb-method-points p { color: var(--vb-muted); font-size: 13px; margin: 0; }
.vb-method-points strong { color: var(--vb-navy-900); display: block; font-size: 15px; margin-bottom: 8px; }

/* Article cards: homepage, related, and dynamic plugin blocks ----------- */

.vb-article-grid { display: grid; gap: 22px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.vb-article-card,
.vb-kadence-card {
	background: var(--vb-white);
	border: 1px solid var(--vb-line);
	border-radius: var(--vb-radius);
	box-shadow: none;
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	transition: border-color var(--vb-transition), box-shadow var(--vb-transition), transform var(--vb-transition);
}
.vb-article-card:hover { border-color: rgba(32, 33, 36, .25); box-shadow: var(--vb-shadow-sm); transform: translateY(-4px); }
.vb-article-card__media { aspect-ratio: 5 / 3; background: var(--vb-navy-900); display: block; overflow: hidden; position: relative; }
.vb-article-card__media img { height: 100%; object-fit: cover; transition: transform 500ms ease; width: 100%; }
.vb-article-card:hover .vb-article-card__media img { transform: scale(1.035); }
.vb-article-card__placeholder {
	align-items: flex-end;
	background: linear-gradient(135deg, var(--vb-navy-900), #2f5d46);
	color: rgba(255, 255, 255, .88);
	display: flex;
	font-size: 12px;
	font-weight: 700;
	height: 100%;
	letter-spacing: .09em;
	overflow: hidden;
	padding: 20px;
	position: relative;
	text-transform: uppercase;
	width: 100%;
}
.vb-article-card__placeholder::before { border: 1px solid rgba(255, 255, 255, .12); border-radius: 50%; content: ""; height: 210px; position: absolute; right: -70px; top: -90px; width: 210px; }
.vb-article-card__placeholder::after { background: var(--vb-red-600); bottom: 0; content: ""; height: 5px; left: 0; position: absolute; width: 58px; }
.vb-article-card__body { display: flex; flex: 1; flex-direction: column; padding: 23px; }
.vb-article-card__category { color: var(--vb-red-600); font-size: 11px; font-weight: 700; letter-spacing: .085em; line-height: 1.3; margin-bottom: 11px; text-transform: uppercase; }
.vb-article-card h3 { font-size: clamp(19px, 1.7vw, 23px); line-height: 1.22; margin: 0 0 12px; }
.vb-article-card h3 a { color: var(--vb-navy-900); text-decoration: none; }
.vb-article-card h3 a:hover { color: var(--vb-red-600); }
.vb-article-card__excerpt,
.vb-article-card__body > p { color: var(--vb-muted); font-size: 14px; line-height: 1.58; margin: 0 0 20px; }
.vb-article-card__meta { border-top: 1px solid var(--vb-line); color: var(--vb-subtle); font-size: 11px; margin-top: auto; padding-top: 14px; }

/* Kadence archives and search ------------------------------------------ */

body.archive.vb-kadence-portal #inner-wrap,
body.search.vb-kadence-portal #inner-wrap,
body.blog.vb-kadence-portal #inner-wrap { background: var(--vb-soft); }

body.vb-kadence-portal .archive-hero-section .entry-hero-container-inner,
body.vb-kadence-portal .entry-hero-container-inner {
	background: var(--vb-navy-900);
	color: var(--vb-white);
	padding-block: 58px;
}
body.vb-kadence-portal .archive-title,
body.vb-kadence-portal .entry-hero h1 { color: var(--vb-white); font-size: clamp(35px, 4.5vw, 56px); letter-spacing: -.045em; }
body.vb-kadence-portal .archive-description { color: rgba(255, 255, 255, .72); font-size: 16px; max-width: 760px; }

.vb-archive-tools { margin: 36px 0 26px; }
.vb-breadcrumbs { color: var(--vb-subtle); font-size: 12px; font-weight: 700; }
.vb-breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.vb-breadcrumbs li { align-items: center; display: flex; gap: 8px; }
.vb-breadcrumbs li:not(:last-child)::after { color: var(--vb-subtle); content: "/"; }
.vb-breadcrumbs a { color: inherit; text-decoration: none; }
.vb-breadcrumbs a:hover { color: var(--vb-red-600); }
body.vb-kadence-portal .entry-hero .vb-breadcrumbs { color: rgba(255, 255, 255, .64); margin-bottom: 22px; }

.vb-taxonomy-nav { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 19px; }
.vb-taxonomy-nav a { background: var(--vb-white); border: 1px solid var(--vb-line); border-radius: 999px; color: var(--vb-navy-900); font-size: 12px; font-weight: 700; padding: 8px 13px; text-decoration: none; }
.vb-taxonomy-nav a:hover { background: var(--vb-navy-900); border-color: var(--vb-navy-900); color: var(--vb-white); }

/* Manufacturer finder ------------------------------------------------- */

.vb-brand-finder {
	background: var(--vb-white);
	border: 1px solid var(--vb-line);
	border-radius: 24px;
	box-shadow: 0 22px 52px rgba(32, 33, 36, .1);
	margin: 0 0 44px;
	overflow: hidden;
}
.vb-brand-finder__intro {
	align-items: end;
	background: linear-gradient(125deg, var(--vb-navy-900), #2f5d46);
	display: grid;
	gap: 54px;
	grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr);
	padding: 34px 38px 36px;
	position: relative;
}
.vb-brand-finder__intro::after { background: var(--vb-red-600); bottom: 0; content: ""; height: 4px; left: 0; position: absolute; width: 92px; }
.vb-brand-finder__heading .vb-eyebrow { color: #fdd663; margin: 0 0 10px; }
body.vb-kadence-portal .vb-brand-finder__heading h2 { color: var(--vb-white); font-size: clamp(29px, 3vw, 39px); letter-spacing: -.035em; margin: 0 0 10px; }
.vb-brand-finder__heading > p:last-child { color: rgba(255, 255, 255, .72); font-size: 14px; line-height: 1.6; margin: 0; max-width: 650px; }
.vb-brand-finder__search-wrap > label { color: var(--vb-white); display: block; font-size: 12px; font-weight: 700; letter-spacing: .025em; margin: 0 0 9px; }
.vb-brand-finder__search { align-items: center; background: var(--vb-white); border: 2px solid transparent; border-radius: 12px; box-shadow: 0 10px 25px rgba(0, 0, 0, .18); color: var(--vb-navy-700); display: flex; min-height: 54px; padding: 5px 7px 5px 16px; transition: border-color var(--vb-transition), box-shadow var(--vb-transition); }
.vb-brand-finder__search:focus-within { border-color: var(--vb-primary); box-shadow: 0 0 0 4px rgba(19, 115, 51, .2), 0 10px 25px rgba(0, 0, 0, .18); }
.vb-brand-finder__search svg { flex: 0 0 auto; margin-right: 10px; }
.vb-brand-finder__search input { appearance: none; background: transparent; border: 0; box-shadow: none; color: var(--vb-navy-900); flex: 1; font-size: 15px; min-width: 0; outline: 0; padding: 8px 0; }
.vb-brand-finder__search input::-webkit-search-cancel-button { display: none; }
.vb-brand-finder__search input::placeholder { color: var(--vb-subtle); opacity: 1; }
.vb-brand-finder__search button { background: var(--vb-soft); border: 0; border-radius: 8px; color: var(--vb-navy-900); cursor: pointer; flex: 0 0 auto; font-size: 11px; font-weight: 700; padding: 9px 10px; }
.vb-brand-finder__search button:hover { background: #eceff1; }
.vb-brand-finder__summary { color: rgba(255, 255, 255, .6); font-size: 11px; font-weight: 650; margin: 9px 2px 0; }
.vb-brand-finder__body { padding: 28px 32px 32px; }
.vb-brand-finder__bar { align-items: center; display: flex; justify-content: space-between; margin-bottom: 18px; }
body.vb-kadence-portal .vb-brand-finder__bar h3 { color: var(--vb-navy-900); font-size: 16px; margin: 0; }
.vb-brand-finder__bar p { color: var(--vb-subtle); font-size: 12px; font-weight: 700; margin: 0; }
.vb-brand-grid { display: grid; gap: 10px; grid-template-columns: repeat(6, minmax(0, 1fr)); }
.vb-brand-card { align-items: center; background: var(--vb-white); border: 1px solid var(--vb-line); border-radius: 12px; color: var(--vb-navy-900); display: grid; gap: 10px; grid-template-columns: 38px minmax(0, 1fr) auto; min-height: 70px; padding: 11px; text-decoration: none; }
.vb-brand-card__mark { align-items: center; background: var(--vb-soft-blue); border-radius: 10px; color: var(--vb-navy-700); display: flex; font-size: 11px; font-weight: 700; height: 38px; justify-content: center; letter-spacing: -.02em; width: 38px; }
.vb-brand-card__copy { min-width: 0; }
.vb-brand-card__copy strong { display: block; font-size: 13px; line-height: 1.25; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vb-brand-card__copy small { color: var(--vb-subtle); display: block; font-size: 10px; line-height: 1.25; margin-top: 4px; }
.vb-brand-card__arrow { color: var(--vb-red-600); font-size: 16px; font-weight: 700; transform: translateX(0); transition: transform var(--vb-transition); }
.vb-brand-card.is-available { box-shadow: 0 2px 0 rgba(32, 33, 36, .025); transition: border-color var(--vb-transition), box-shadow var(--vb-transition), transform var(--vb-transition); }
.vb-brand-card.is-available:hover { border-color: #b9c4bd; box-shadow: 0 10px 22px rgba(32, 33, 36, .09); color: var(--vb-navy-900); transform: translateY(-2px); }
.vb-brand-card.is-available:hover .vb-brand-card__mark { background: var(--vb-red-600); color: var(--vb-white); }
.vb-brand-card.is-available:hover .vb-brand-card__arrow { transform: translateX(2px); }
.vb-brand-card.is-upcoming { background: var(--vb-soft); color: var(--vb-muted); }
.vb-brand-card.is-upcoming .vb-brand-card__mark { background: #eef0f1; color: var(--vb-subtle); }
.vb-brand-card.is-upcoming .vb-brand-card__copy small { color: var(--vb-subtle); }
.vb-brand-card[hidden],
.vb-brand-finder__empty[hidden],
.vb-brand-finder__search button[hidden] { display: none !important; }
.vb-brand-finder__empty { background: var(--vb-soft); border: 1px dashed #bdc1c6; border-radius: 12px; color: var(--vb-muted); font-size: 14px; margin: 0; padding: 24px; text-align: center; }
.vb-brand-guides-heading { margin: 0 0 23px; }
.vb-brand-guides-heading .vb-eyebrow { margin: 0 0 7px; }
body.vb-kadence-portal .vb-brand-guides-heading h2 { color: var(--vb-navy-900); font-size: clamp(25px, 2.8vw, 34px); letter-spacing: -.03em; margin: 0; }

body.archive.vb-kadence-portal .content-area,
body.search.vb-kadence-portal .content-area,
body.blog.vb-kadence-portal .content-area { margin-block: 0; padding-block: 0 82px; }
body.vb-kadence-portal .content-wrap.grid-cols { gap: 24px; }
body.vb-kadence-portal .loop-entry {
	background: var(--vb-white);
	border: 1px solid var(--vb-line);
	border-radius: var(--vb-radius);
	box-shadow: none;
	overflow: hidden;
	transition: box-shadow var(--vb-transition), transform var(--vb-transition);
}
body.vb-kadence-portal .loop-entry:hover { box-shadow: var(--vb-shadow-sm); transform: translateY(-4px); }
body.vb-kadence-portal .loop-entry .post-thumbnail { aspect-ratio: 5 / 3; background: linear-gradient(135deg, var(--vb-navy-900), var(--vb-navy-700)); margin: 0; overflow: hidden; }
body.vb-kadence-portal .loop-entry .post-thumbnail img { height: 100%; object-fit: cover; transition: transform 500ms ease; width: 100%; }
body.vb-kadence-portal .loop-entry:hover .post-thumbnail img { transform: scale(1.035); }
body.vb-kadence-portal .loop-entry .entry-content-wrap { padding: 24px; }
body.vb-kadence-portal .loop-entry .entry-taxonomies { color: var(--vb-red-600); font-size: 11px; font-weight: 700; letter-spacing: .085em; text-transform: uppercase; }
body.vb-kadence-portal .loop-entry .entry-title { font-size: 22px; line-height: 1.23; margin-top: 10px; }
body.vb-kadence-portal .loop-entry .entry-title a { color: var(--vb-navy-900); }
body.vb-kadence-portal .loop-entry .entry-title a:hover { color: var(--vb-red-600); }
body.vb-kadence-portal .loop-entry .entry-meta { color: var(--vb-subtle); font-size: 11px; }
body.vb-kadence-portal .loop-entry .entry-summary { color: var(--vb-muted); font-size: 14px; }
body.vb-kadence-portal .loop-entry .post-more-link { color: var(--vb-navy-900); font-size: 13px; font-weight: 700; text-transform: none; }
body.vb-kadence-portal .loop-entry .post-more-link:hover { color: var(--vb-red-600); }
body.vb-kadence-portal .pagination .page-numbers { align-items: center; background: var(--vb-white); border: 1px solid var(--vb-line); border-radius: 8px; color: var(--vb-navy-900); display: inline-flex; height: 42px; justify-content: center; min-width: 42px; }
body.vb-kadence-portal .pagination .page-numbers.current,
body.vb-kadence-portal .pagination a.page-numbers:hover { background: var(--vb-red-600); border-color: var(--vb-red-600); color: var(--vb-white); }

/* Single article and standard pages ------------------------------------ */

body.single-post.vb-kadence-portal #inner-wrap,
body.page.vb-kadence-portal #inner-wrap { background: var(--vb-white); }
body.single-post.vb-kadence-portal .entry-hero-container-inner { padding-block: 68px 62px; }
body.single-post.vb-kadence-portal .entry-hero .entry-header { margin: 0 auto; max-width: var(--vb-reading); }
body.single-post.vb-kadence-portal .entry-hero .entry-taxonomies { color: var(--vb-yellow); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
body.single-post.vb-kadence-portal .entry-hero .entry-taxonomies a { color: inherit; }
body.single-post.vb-kadence-portal .entry-hero .entry-title { font-size: clamp(38px, 5vw, 64px); line-height: 1.04; margin: 15px 0 18px; }
body.single-post.vb-kadence-portal .entry-hero .entry-summary { color: rgba(255, 255, 255, .76); font-size: clamp(17px, 2vw, 21px); line-height: 1.55; margin: 0; }

.vb-article-meta { align-items: center; color: rgba(255, 255, 255, .66); display: flex; flex-wrap: wrap; font-size: 11px; gap: 9px 18px; margin-top: 23px; }
.vb-article-meta > span { align-items: center; column-gap: .35em; display: inline-flex; }
.vb-article-meta a { color: var(--vb-white); font-weight: 700; text-decoration: none; }
.vb-article-meta__verified { background: rgba(19, 115, 51, .32); border: 1px solid rgba(112, 210, 144, .35); border-radius: 999px; color: #c0f2cf; padding: 5px 10px; }

body.single-post.vb-kadence-portal .content-area { margin-block: 0; }
body.single-post.vb-kadence-portal .content-container { padding-block: 46px 88px; }
body.single-post.vb-kadence-portal .entry-content-wrap { padding: 0; }
body.single-post.vb-kadence-portal .single-entry { box-shadow: none; }
body.single-post.vb-kadence-portal .post-thumbnail { border-radius: var(--vb-radius-lg); box-shadow: var(--vb-shadow); margin-bottom: 48px; overflow: hidden; }

body.vb-kadence-portal .entry-content { color: var(--vb-ink); font-size: 18px; line-height: 1.72; }
body.vb-kadence-portal .entry-content > * { margin-bottom: 1.45em; }
body.vb-kadence-portal .entry-content h2 { font-size: clamp(27px, 3vw, 36px); margin-top: 1.8em; scroll-margin-top: 120px; }
body.vb-kadence-portal .entry-content h3 { font-size: clamp(22px, 2.4vw, 28px); margin-top: 1.65em; scroll-margin-top: 120px; }
body.vb-kadence-portal .entry-content h4 { font-size: 20px; margin-top: 1.5em; }
body.vb-kadence-portal .entry-content a { font-weight: 650; text-decoration-thickness: 1px; text-underline-offset: 3px; }
body.vb-kadence-portal .entry-content blockquote { background: var(--vb-soft-blue); border-left: 5px solid var(--vb-red-600); border-radius: 0 12px 12px 0; color: var(--vb-navy-900); font-size: 20px; font-weight: 650; margin-inline: 0; padding: 24px 27px; }
body.vb-kadence-portal .entry-content table { border: 1px solid var(--vb-line); border-collapse: separate; border-radius: 12px; border-spacing: 0; font-size: 14px; overflow: hidden; }
body.vb-kadence-portal .entry-content th { background: var(--vb-navy-900); color: var(--vb-white); font-weight: 700; }
body.vb-kadence-portal .entry-content th,
body.vb-kadence-portal .entry-content td { border-color: var(--vb-line); padding: 13px 15px; }
body.vb-kadence-portal .entry-content tbody tr:nth-child(even) { background: var(--vb-soft); }

.is-style-portal-card,
.is-style-portal-panel,
.is-style-source-panel { border-radius: var(--vb-radius); margin-block: 30px; padding: 26px; }
.is-style-portal-card { background: var(--vb-white); border: 1px solid var(--vb-line); box-shadow: var(--vb-shadow-sm); }
.is-style-portal-panel { background: var(--vb-navy-900); color: var(--vb-white); }
body.vb-kadence-portal .is-style-portal-panel h2,
body.vb-kadence-portal .is-style-portal-panel h3 { color: var(--vb-white); }
.is-style-source-panel { background: var(--vb-soft); border: 1px solid var(--vb-line); border-left: 5px solid var(--vb-red-600); }
.is-style-checklist { list-style: none; padding-left: 0; }
.is-style-checklist li { padding-left: 29px; position: relative; }
.is-style-checklist li::before { color: var(--vb-green); content: "✓"; font-weight: 700; left: 0; position: absolute; }
.is-style-portal-outline .wp-block-button__link { background: transparent; border-color: currentColor; color: var(--vb-navy-900); }

.vb-editorial-responsibility { align-items: flex-start; background: var(--vb-soft); border: 1px solid var(--vb-line); border-radius: var(--vb-radius); display: grid; gap: 20px; grid-template-columns: 54px 1fr; margin-top: 52px; padding: 27px; }
.vb-editorial-responsibility__mark { align-items: center; background: var(--vb-navy-900); border-radius: 12px; color: var(--vb-white); display: flex; font-size: 14px; font-weight: 700; height: 50px; justify-content: center; letter-spacing: -.04em; }
.vb-editorial-responsibility h2 { font-size: 22px; margin: 0 0 10px; }
.vb-editorial-responsibility p:not(.vb-eyebrow) { color: var(--vb-muted); font-size: 13px; margin: 0 0 9px; }
.vb-editorial-responsibility a { font-size: 13px; font-weight: 700; text-decoration: none; }

.vb-related-articles { border-top: 1px solid var(--vb-line); margin-top: 55px; padding-top: 45px; }
.vb-related-articles > h2 { font-size: 30px; margin: 0 0 25px; }
.vb-related-articles .vb-article-grid { gap: 15px; }
.vb-related-articles .vb-article-card__body { padding: 17px; }
.vb-related-articles .vb-article-card h3 { font-size: 17px; }

body.vb-kadence-portal .post-navigation { border-top: 1px solid var(--vb-line); margin-top: 0; padding-block: 36px 60px; }
body.vb-kadence-portal .post-navigation a { color: var(--vb-navy-900); font-weight: 700; }
body.vb-kadence-portal .post-navigation a:hover { color: var(--vb-red-600); }
body.vb-kadence-portal .post-navigation-sub small { color: var(--vb-subtle); font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }

body.page.vb-kadence-portal .content-area { margin-block: 0; padding-block: 50px 90px; }
body.page.vb-kadence-portal .single-entry { background: transparent; box-shadow: none; }
body.page.vb-kadence-portal .entry-content-wrap { padding: 0; }
body.page.vb-kadence-portal .entry-header { margin-bottom: 32px; }
body.page.vb-kadence-portal .entry-title { font-size: clamp(36px, 4.5vw, 58px); }

/* Existing companion-plugin editorial components ---------------------- */

.vb-table-of-contents,
.vb-toc,
.vb-key-takeaways,
.vb-checklist,
.vb-sources,
.vb-faq,
.vb-verdict,
.vb-tool,
.vb-tool-shell {
	border-radius: var(--vb-radius);
}

.vb-table-of-contents,
.vb-toc { background: var(--vb-soft); border: 1px solid var(--vb-line); margin-block: 30px; padding: 24px 27px; }
.vb-table-of-contents a,
.vb-toc a { color: var(--vb-navy-900); font-size: 14px; text-decoration: none; }
.vb-table-of-contents a:hover,
.vb-toc a:hover { color: var(--vb-red-600); }
.vb-key-takeaways { background: #fff9e5; border: 1px solid #eddaa0; border-left: 5px solid var(--vb-yellow); margin-block: 30px; padding: 25px 27px; }
.vb-checklist { background: #edf8f2; border: 1px solid #b9ddc9; margin-block: 30px; padding: 25px 27px; }
.vb-sources { background: var(--vb-soft); border: 1px solid var(--vb-line); border-left: 5px solid var(--vb-blue); margin-block: 38px; padding: 25px 27px; }
.vb-faq { border-top: 1px solid var(--vb-line); margin-top: 48px; padding-top: 32px; }
.vb-faq details { border-bottom: 1px solid var(--vb-line); padding-block: 17px; }
.vb-faq summary { color: var(--vb-navy-900); cursor: pointer; font-weight: 700; }

/* Real Kadence footer widget areas ------------------------------------- */

body.vb-kadence-portal .site-footer { background: var(--vb-soft); border-top: 4px solid var(--vb-red-600); color: var(--vb-muted); margin: 0; }
body.vb-kadence-portal .site-top-footer-wrap,
body.vb-kadence-portal .site-top-footer-row-container-inner { background: var(--vb-soft); border: 0; }
body.vb-kadence-portal .site-top-footer-inner-wrap { align-items: start; gap: 34px; grid-template-columns: minmax(245px, 1.35fr) repeat(4, minmax(130px, 1fr)); padding-block: 58px 52px; }
body.vb-kadence-portal .site-footer .widget { margin: 0; }
body.vb-kadence-portal .site-footer .widget + .widget { margin-top: 22px; }
body.vb-kadence-portal .site-footer .widget-title { border-bottom: 1px solid var(--vb-line); color: var(--vb-navy-900); font-size: 13px; letter-spacing: .035em; margin: 0 0 18px; padding: 0 0 11px; }
body.vb-kadence-portal .site-footer .widget_nav_menu ul { list-style: none; margin: 0; padding: 0; }
body.vb-kadence-portal .site-footer .widget_nav_menu li + li { margin-top: 9px; }
body.vb-kadence-portal .site-footer .widget_nav_menu a { color: var(--vb-muted); font-size: 12.5px; line-height: 1.4; text-decoration: none; }
body.vb-kadence-portal .site-footer .widget_nav_menu a:hover { color: var(--vb-red-600); }
.vb-footer-widget-brand img { display: block; filter: brightness(0) saturate(100%) invert(12%); height: auto; max-width: 240px; width: 100%; }
.vb-footer-widget-brand p { color: var(--vb-muted); font-size: 13px; line-height: 1.65; margin: 21px 0 20px; max-width: 310px; }
.vb-footer-widget-brand span { border-left: 3px solid var(--vb-red-600); color: var(--vb-navy-900); display: block; font-size: 10.5px; font-weight: 700; line-height: 1.5; max-width: 285px; padding-left: 11px; }
body.vb-kadence-portal .site-middle-footer-wrap,
body.vb-kadence-portal .site-bottom-footer-wrap { display: none; }

/* Mobile portal dock --------------------------------------------------- */

.vb-mobile-dock,
.vb-mobile-search-panel { display: none; }
.vb-icon { display: block; height: 24px; width: 24px; }

/* AdSense-safe presentation ------------------------------------------- */

body.vb-adsense-ready ins.adsbygoogle { box-sizing: border-box; max-width: 100%; overflow: hidden; }
body.vb-adsense-ready .google-auto-placed { clear: both; margin: 32px auto !important; max-width: min(100%, 1100px); }
body.vb-adsense-ready ins.adsbygoogle[data-ad-status="unfilled"],
body.vb-adsense-ready .google-auto-placed:has(ins.adsbygoogle[data-ad-status="unfilled"]) {
	display: none !important;
	height: 0 !important;
	margin: 0 !important;
	min-height: 0 !important;
	padding: 0 !important;
}
body.vb-adsense-ready #wrapper + ins.adsbygoogle[data-ad-status="unfilled"],
body.vb-adsense-ready #wrapper + .google-auto-placed:has(ins.adsbygoogle[data-ad-status="unfilled"]) { display: none !important; }
.vb-ad-slot[data-filled="true"] { background: var(--vb-soft); border: 1px solid var(--vb-line); border-radius: 10px; clear: both; margin: 34px auto; min-height: 120px; overflow: hidden; padding: 24px 12px 12px; position: relative; text-align: center; }
.vb-ad-label { color: var(--vb-subtle); font-size: 9px; left: 50%; letter-spacing: .1em; position: absolute; text-transform: uppercase; top: 7px; transform: translateX(-50%); }

/* Utilities and state --------------------------------------------------- */

body.vb-kadence-portal .search-form { border-radius: 10px; overflow: hidden; }
body.vb-kadence-portal .search-form .search-field { border-color: var(--vb-line); }
body.vb-kadence-portal .search-form .search-submit { background: var(--vb-red-600); color: var(--vb-white); }
body.error404.vb-kadence-portal .content-wrap { margin-block: 90px; text-align: center; }
body.error404.vb-kadence-portal .error404 .page-title { font-size: clamp(42px, 8vw, 92px); }

@media (max-width: 1180px) {
	.vb-home-hero__inner { grid-template-columns: minmax(0, 1fr); }
	.vb-home-hero__trust { display: none; }
	.vb-home-region__grid { gap: 55px; }
	body.vb-kadence-portal .header-navigation .menu > li > a { font-size: 11px; padding-inline: 10px; }
	body.vb-kadence-portal .header-navigation .menu > li > a::after { left: 10px; right: 10px; }
}

@media (max-width: 1024px) {
	:root { --vb-shell: min(100% - 40px, 1280px); }
	.vb-home-section { padding-block: 72px; }
	.vb-topic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.vb-home-brand-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.vb-home-region__grid { grid-template-columns: 1fr; }
	.vb-region-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.vb-region-list a { align-content: start; grid-template-columns: 42px 1fr; }
	.vb-region-list small { grid-column: 1 / -1; text-align: left; }
	.vb-home-method__grid { gap: 45px; grid-template-columns: 1fr; }
	.vb-portal-shortcuts__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.vb-portal-shortcuts a { border-bottom: 1px solid var(--vb-line); }
	.vb-portal-shortcuts a:nth-child(3n) { border-right: 0; }
	body.vb-kadence-portal .site-top-footer-inner-wrap { gap: 30px; grid-template-columns: 1.25fr repeat(2, minmax(0, 1fr)); }
	body.vb-kadence-portal .footer-widget4,
	body.vb-kadence-portal .footer-widget5 { margin-top: 12px; }
	.vb-brand-finder__intro { gap: 32px; grid-template-columns: 1fr 1fr; padding-inline: 30px; }
	.vb-brand-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 800px) {
	body.vb-kadence-portal { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
	body.vb-kadence-portal .site-main-header-wrap .site-header-row-container-inner { background: var(--vb-white); }
	body.vb-kadence-portal .site-branding .custom-logo { max-height: 39px; max-width: 215px; }
	.vb-mobile-dock { align-items: stretch; background: rgba(255, 255, 255, .98); border-top: 1px solid var(--vb-line); bottom: 0; box-shadow: 0 -10px 28px rgba(32, 33, 36, .13); display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); left: 0; min-height: calc(66px + env(safe-area-inset-bottom)); padding: 5px 6px env(safe-area-inset-bottom); position: fixed; right: 0; z-index: 70; }
	.vb-mobile-dock a,
	.vb-mobile-dock button { align-items: center; background: transparent; border: 0; border-radius: 9px; color: var(--vb-muted); display: flex; flex-direction: column; font-family: inherit; font-size: 9.5px; font-weight: 700; gap: 3px; justify-content: center; line-height: 1.1; min-width: 0; padding: 4px 2px; text-decoration: none; }
	.vb-mobile-dock a:hover,
	.vb-mobile-dock button:hover,
	.vb-mobile-dock a[aria-current="page"],
	.vb-mobile-dock button[aria-expanded="true"] { background: #eef7f1; color: var(--vb-red-600); }
	.vb-mobile-dock .vb-icon { height: 21px; width: 21px; }
	.vb-mobile-search-panel { background: var(--vb-navy-900); bottom: calc(66px + env(safe-area-inset-bottom)); box-shadow: 0 -18px 46px rgba(32, 33, 36, .24); color: var(--vb-white); left: 0; padding: 20px 20px 22px; position: fixed; right: 0; z-index: 69; }
	.vb-mobile-search-panel:not([hidden]) { display: block; }
	.vb-mobile-search-panel form { margin: 0 auto; max-width: 620px; }
	.vb-mobile-search-panel label { display: block; font-size: 13px; font-weight: 700; margin: 0 0 9px; }
	.vb-mobile-search-panel form > div { align-items: center; background: var(--vb-white); border-radius: 10px; display: flex; padding: 5px 5px 5px 12px; }
	.vb-mobile-search-panel form > div > span { color: var(--vb-muted); margin-right: 8px; }
	.vb-mobile-search-panel .vb-icon { height: 20px; width: 20px; }
	.vb-mobile-search-panel input { background: transparent; border: 0; box-shadow: none; color: var(--vb-navy-900); flex: 1; min-width: 0; padding: 9px 0; }
	.vb-mobile-search-panel input:focus { box-shadow: none; outline: 0; }
	.vb-mobile-search-panel form button { background: var(--vb-red-600); border: 0; border-radius: 8px; color: var(--vb-white); font-size: 11px; font-weight: 700; padding: 11px 12px; }
	.vb-mobile-search-panel__close { background: transparent; border: 0; color: rgba(255, 255, 255, .7); font-size: 27px; line-height: 1; padding: 6px; position: absolute; right: 8px; top: 4px; }
	body.vb-adsense-ready .google-auto-placed { margin-block: 22px !important; }
	.vb-home-hero,
	.vb-home-hero__inner { min-height: 560px; }
	.vb-home-hero { background-image: linear-gradient(90deg, rgba(23, 25, 27, .98), rgba(23, 25, 27, .8)), url("../images/portal-hero.webp"); }
	.vb-home-hero__inner { padding-block: 74px 56px; }
	body.vb-kadence-portal .vb-home-hero h1 { font-size: clamp(42px, 11vw, 64px); }
	.vb-section-heading { align-items: start; gap: 18px; grid-template-columns: 1fr; }
	.vb-section-heading--compact { grid-template-columns: 1fr; }
	.vb-topic-grid,
	.vb-home-brand-grid,
	.vb-article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.vb-region-list { grid-template-columns: 1fr; }
	.vb-method-points { grid-template-columns: 1fr; }
	.vb-method-points > div { border-bottom: 1px solid var(--vb-line); border-left: 0; display: grid; gap: 15px; grid-template-columns: 35px 1fr; padding: 20px 0; }
	.vb-method-points b { margin: 3px 0 0; }
	body.vb-kadence-portal .site-top-footer-inner-wrap { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	body.vb-kadence-portal .footer-widget1 { grid-column: 1 / -1; }
	body.single-post.vb-kadence-portal .entry-hero-container-inner { padding-block: 50px; }
	.vb-brand-finder__intro { align-items: stretch; grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
	:root { --vb-shell: min(100% - 28px, 1280px); }
	body.vb-kadence-portal { font-size: 16px; }
	.vb-home-hero,
	.vb-home-hero__inner { min-height: 585px; }
	body.vb-kadence-portal .vb-home-hero h1 { font-size: 46px; }
	.vb-home-hero__lede { font-size: 17px; margin-block: 21px 24px; }
	.vb-portal-search { align-items: stretch; display: grid; gap: 0; grid-template-columns: auto 1fr; padding: 9px 10px 10px 16px; }
	.vb-portal-search svg { align-self: center; }
	.vb-portal-search button { grid-column: 1 / -1; margin-top: 5px; width: 100%; }
	.vb-quick-links { display: none; }
	.vb-home-section { padding-block: 58px; }
	.vb-section-heading { margin-bottom: 28px; }
	.vb-section-heading h2 { font-size: 34px; }
	.vb-topic-grid,
	.vb-home-brand-grid,
	.vb-article-grid { grid-template-columns: 1fr; }
	.vb-home-brand-card { min-height: 78px; }
	.vb-topic-card { min-height: 235px; }
	.vb-home-region { padding-block: 62px; }
	body.vb-kadence-portal .vb-home-region h2 { font-size: 35px; }
	.vb-home-method { padding-block: 60px; }
	.vb-portal-shortcuts { padding-inline: 14px; }
	.vb-portal-shortcuts__grid { border-radius: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: -24px; width: 100%; }
	.vb-portal-shortcuts a { border-right: 1px solid var(--vb-line); grid-template-columns: 35px minmax(0, 1fr); min-height: 74px; padding: 10px; }
	.vb-portal-shortcuts a:nth-child(3n) { border-right: 1px solid var(--vb-line); }
	.vb-portal-shortcuts a:nth-child(2n) { border-right: 0; }
	.vb-portal-shortcuts a > span:last-child { display: none; }
	.vb-portal-shortcuts__icon { height: 35px; width: 35px; }
	.vb-portal-shortcuts strong { font-size: 11px; }
	body.vb-kadence-portal .site-top-footer-inner-wrap { grid-template-columns: 1fr; padding-block: 54px 42px; }
	body.vb-kadence-portal .footer-widget1 { grid-column: auto; }
	body.vb-kadence-portal .entry-content { font-size: 17px; line-height: 1.72; }
	body.single-post.vb-kadence-portal .entry-hero .entry-title { font-size: 39px; }
	.vb-article-meta { align-items: flex-start; flex-direction: column; }
	.vb-editorial-responsibility { grid-template-columns: 1fr; }
	.vb-related-articles .vb-article-grid { grid-template-columns: 1fr; }
	.vb-archive-tools { margin-block: 26px 20px; }
	.vb-brand-finder { border-radius: 18px; margin-bottom: 34px; }
	.vb-brand-finder__intro { gap: 25px; padding: 27px 20px 29px; }
	body.vb-kadence-portal .vb-brand-finder__heading h2 { font-size: 30px; }
	.vb-brand-finder__body { padding: 22px 16px 24px; }
	.vb-brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.vb-brand-card { gap: 8px; grid-template-columns: 34px minmax(0, 1fr); min-height: 67px; padding: 10px 9px; }
	.vb-brand-card__mark { border-radius: 9px; height: 34px; width: 34px; }
	.vb-brand-card__arrow { display: none; }
	.vb-brand-card__copy strong { font-size: 12px; }
	.vb-brand-card__copy small { font-size: 9px; }
	body.vb-kadence-portal .vb-brand-guides-heading h2 { font-size: 28px; }
}

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

/* Sitewide readability safeguards ------------------------------------- */

body.vb-kadence-portal .site-footer .widget-title { font-size: 15px; }
body.vb-kadence-portal .site-footer .widget_nav_menu a { font-size: 14px; line-height: 1.5; }
.vb-footer-widget-brand p { font-size: 15px; }
.vb-footer-widget-brand span { font-size: 13px; }
.vb-brand-finder__search-wrap > label { font-size: 13px; }
.vb-brand-finder__summary,
.vb-brand-finder__bar p { font-size: 12px; }
.vb-brand-card__copy strong { font-size: 14px; }
.vb-brand-card__copy small { font-size: 11px; }

@media (max-width: 600px) {
	.vb-brand-card__copy strong { font-size: 13px; }
	.vb-brand-card__copy small { font-size: 11px; }
}
