/* =========================================================
   VibeBase - main.css
   Mọi màu/font đều lấy từ biến CSS, biến đó do Tuỳ biến sinh ra.
   Muốn sửa nhanh: Giao diện > Tuỳ biến > CSS bổ sung.
   ========================================================= */

/* ---------- 1. Nền tảng ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--vb-font-body);
	font-size: var(--vb-fs-base);
	line-height: 1.7;
	color: var(--vb-ink);
	background: #fff;
	-webkit-font-smoothing: antialiased;
	overflow-wrap: break-word;
}

img, video, iframe, embed, object { max-width: 100%; height: auto; }
img { display: block; }

a { color: var(--vb-primary); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--vb-accent); }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--vb-font-heading);
	line-height: 1.25;
	margin: 0 0 .6em;
	font-weight: 600;
	letter-spacing: -0.01em;
}
h1 { font-size: clamp(1.75rem, 1.2rem + 2.2vw, 2.6rem); }
h2 { font-size: clamp(1.4rem, 1.1rem + 1.2vw, 1.9rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p, ul, ol, table, pre, blockquote, figure { margin: 0 0 1.2em; }

blockquote {
	margin-inline: 0;
	padding: .2em 0 .2em 1.2em;
	border-left: 3px solid var(--vb-accent);
	font-family: var(--vb-font-heading);
	font-size: 1.08em;
	color: var(--vb-ink);
}

code, pre, kbd { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: .92em; }
pre { background: var(--vb-surface); padding: 1em 1.1em; border-radius: var(--vb-radius); overflow-x: auto; }
code { background: var(--vb-surface); padding: .15em .4em; border-radius: 4px; }
pre code { background: none; padding: 0; }

table { width: 100%; border-collapse: collapse; }
th, td { padding: .6em .8em; border: 1px solid var(--vb-border); text-align: left; }
th { background: var(--vb-surface); font-weight: 600; }

hr { border: 0; border-top: 1px solid var(--vb-border); margin: 2.5em 0; }

/* ---------- 2. Tiện ích ---------- */
.vb-container {
	width: 100%;
	max-width: var(--vb-container);
	margin-inline: auto;
	padding-inline: 20px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	margin: -1px; padding: 0;
	overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
	white-space: nowrap; border: 0;
}
.vb-skip-link:focus {
	position: fixed; top: 10px; left: 10px;
	z-index: 9999; width: auto; height: auto;
	clip: auto; clip-path: none;
	padding: 12px 18px; background: var(--vb-ink); color: #fff;
	border-radius: var(--vb-radius);
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
	outline: 2px solid var(--vb-accent);
	outline-offset: 2px;
	border-radius: 3px;
}

/* ---------- 3. Nút ---------- */
.vb-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .5em;
	padding: .68em 1.35em;
	border: 1px solid transparent;
	border-radius: var(--vb-radius);
	font-family: var(--vb-font-body);
	font-size: .95rem; font-weight: 600; line-height: 1.2;
	text-decoration: none; cursor: pointer;
	transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.vb-btn--primary { background: var(--vb-primary); color: #fff; }
.vb-btn--primary:hover { background: var(--vb-ink); color: #fff; }
.vb-btn--accent { background: var(--vb-accent); color: #fff; }
.vb-btn--accent:hover { filter: brightness(.92); color: #fff; }
.vb-btn--ghost { border-color: var(--vb-border); color: var(--vb-ink); background: transparent; }
.vb-btn--ghost:hover { border-color: var(--vb-primary); color: var(--vb-primary); }

/* ---------- 4. Header ---------- */
.vb-header {
	position: relative;
	z-index: 50;
	background: var(--vb-header-bg);
	color: var(--vb-header-text);
	border-bottom: 1px solid var(--vb-border);
}
.vb-has-sticky .vb-header { position: sticky; top: 0; }
.admin-bar.vb-has-sticky .vb-header { top: 32px; }
.vb-header.is-scrolled { box-shadow: 0 1px 16px rgba(0,0,0,.07); }

.vb-header__inner {
	display: flex; align-items: center; gap: 20px;
	min-height: 68px;
}
.vb-header--split .vb-nav { margin-left: auto; }
.vb-header--left .vb-nav { margin-left: 12px; margin-right: auto; }

.vb-header--center .vb-header__inner {
	flex-wrap: wrap; justify-content: center; text-align: center; padding-block: 14px;
}
.vb-header--center .vb-brand { width: 100%; display: flex; justify-content: center; }
.vb-header--center .vb-nav { width: 100%; margin: 0; }
.vb-header--center .vb-menu { justify-content: center; }

.vb-brand { display: flex; align-items: center; gap: 12px; }
.vb-brand .custom-logo-link { display: block; line-height: 0; }
.vb-brand .custom-logo { height: var(--vb-logo-h); width: auto; max-width: min(60vw, 320px); object-fit: contain; }
.vb-brand__name {
	font-family: var(--vb-font-heading);
	font-size: 1.35rem; font-weight: 700;
	color: var(--vb-header-text); text-decoration: none;
	letter-spacing: -0.02em;
}
.vb-brand__tagline { margin: 2px 0 0; font-size: .82rem; color: var(--vb-muted); }

/* Menu */
.vb-menu { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.vb-menu li { position: relative; }
.vb-menu a {
	display: block; padding: 10px 13px;
	color: var(--vb-header-text); text-decoration: none;
	font-size: .95rem; font-weight: 500;
	border-radius: 6px;
	transition: color .15s ease, background-color .15s ease;
}
.vb-menu a:hover,
.vb-menu .current-menu-item > a,
.vb-menu .current-menu-ancestor > a { color: var(--vb-primary); background: var(--vb-surface); }

.vb-menu .menu-item-has-children > a::after {
	content: ""; display: inline-block; margin-left: 6px;
	width: .4em; height: .4em;
	border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
}
.vb-menu .sub-menu {
	position: absolute; top: 100%; left: 0;
	min-width: 220px; margin: 0; padding: 6px;
	list-style: none;
	background: #fff;
	border: 1px solid var(--vb-border);
	border-radius: var(--vb-radius);
	box-shadow: 0 12px 30px rgba(16,24,32,.1);
	opacity: 0; visibility: hidden; transform: translateY(6px);
	transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.vb-menu li:hover > .sub-menu,
.vb-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.vb-menu .sub-menu .sub-menu { top: -6px; left: 100%; }
.vb-menu .sub-menu a { padding: 9px 12px; font-weight: 400; }

/* Công cụ bên phải */
.vb-header__tools { display: flex; align-items: center; gap: 10px; }
.vb-header__phone {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: .92rem; font-weight: 600; text-decoration: none;
	color: var(--vb-header-text); white-space: nowrap;
}
.vb-header__phone:hover { color: var(--vb-accent); }
.vb-search-toggle {
	display: inline-flex; align-items: center; justify-content: center;
	width: 38px; height: 38px; padding: 0;
	background: transparent; color: inherit;
	border: 1px solid var(--vb-border); border-radius: 50%;
	cursor: pointer; transition: border-color .15s ease, color .15s ease;
}
.vb-search-toggle:hover { border-color: var(--vb-primary); color: var(--vb-primary); }

.vb-search-panel { border-top: 1px solid var(--vb-border); background: var(--vb-surface); padding: 16px 0; }

/* Chuyển ngôn ngữ */
.vb-lang__list { display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; list-style: none; }
.vb-lang__item a {
	display: inline-flex; align-items: center; gap: 5px;
	padding: 5px 9px; border-radius: 6px;
	font-size: .82rem; font-weight: 600; letter-spacing: .04em;
	color: var(--vb-muted); text-decoration: none;
}
.vb-lang__item a:hover { color: var(--vb-primary); background: var(--vb-surface); }
.vb-lang__item.is-current a { color: var(--vb-ink); background: var(--vb-surface); }
.vb-lang__flag { display: inline-block; border-radius: 2px; }

/* Nút hamburger */
.vb-burger {
	display: none; margin-left: auto;
	width: 42px; height: 42px; padding: 10px;
	background: transparent; border: 1px solid var(--vb-border); border-radius: 8px;
	cursor: pointer;
}
.vb-burger span {
	display: block; height: 2px; background: currentColor; border-radius: 2px;
	transition: transform .2s ease, opacity .2s ease;
}
.vb-burger span + span { margin-top: 5px; }
.vb-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vb-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.vb-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 5. Breadcrumb (điểm nhấn của theme) ---------- */
.vb-breadcrumb {
	background: var(--vb-surface);
	border-bottom: 1px solid var(--vb-border);
	font-size: .86rem;
	padding: 11px 0;
}
.vb-breadcrumb__list {
	display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
	margin: 0; padding: 0; list-style: none;
	color: var(--vb-muted);
}
.vb-breadcrumb__item { display: inline-flex; align-items: center; gap: 6px; }
.vb-breadcrumb a { color: var(--vb-muted); text-decoration: none; }
.vb-breadcrumb a:hover { color: var(--vb-primary); text-decoration: underline; }
.vb-breadcrumb__sep { color: var(--vb-accent); font-weight: 700; }
.vb-breadcrumb [aria-current="page"] { color: var(--vb-ink); font-weight: 600; }
.vb-breadcrumb p { margin: 0; }

/* ---------- 6. Bố cục ---------- */
.vb-main { display: block; min-height: 40vh; }

.vb-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 48px;
	padding-block: 44px 64px;
}
@media (min-width: 900px) {
	.vb-sidebar-right .vb-layout { grid-template-columns: minmax(0, 1fr) 320px; }
	.vb-sidebar-left .vb-layout { grid-template-columns: 320px minmax(0, 1fr); }
	.vb-sidebar-left .vb-layout__side { order: -1; }
}

/* Template toàn màn hình: không lề, không khung */
.vb-fullwidth { display: block; }
.vb-fullwidth > * { max-width: none; }

/* Template trắng */
.vb-blank { margin: 0; }
.vb-blank__content { display: block; }

/* ---------- 7. Thẻ bài viết ---------- */
.vb-cards { display: grid; gap: 30px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.vb-cards--3 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

.vb-card {
	display: flex; flex-direction: column;
	background: #fff;
	border: 1px solid var(--vb-border);
	border-radius: var(--vb-radius);
	overflow: hidden;
	transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.vb-card:hover {
	border-color: var(--vb-primary);
	border-color: color-mix(in srgb, var(--vb-primary) 40%, var(--vb-border));
	box-shadow: 0 10px 28px rgba(16,24,32,.07);
	transform: translateY(-2px);
}
.vb-card__thumb { display: block; aspect-ratio: 3 / 2; overflow: hidden; background: var(--vb-surface); }
.vb-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.vb-card:hover .vb-card__thumb img { transform: scale(1.04); }
.vb-card__body { display: flex; flex-direction: column; gap: 8px; padding: 20px; }
.vb-card__cat {
	align-self: flex-start;
	font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
	color: var(--vb-accent); text-decoration: none;
}
.vb-card__cat:hover { text-decoration: underline; }
.vb-card__title { margin: 0; font-size: 1.15rem; line-height: 1.35; }
.vb-card__title a { color: var(--vb-ink); text-decoration: none; }
.vb-card__title a:hover { color: var(--vb-primary); }
.vb-card__excerpt { margin: 0; font-size: .92rem; color: var(--vb-muted); }
.vb-card .vb-meta { margin-top: auto; padding-top: 6px; }

.vb-meta {
	display: flex; flex-wrap: wrap; align-items: center; gap: 6px 14px;
	font-size: .82rem; color: var(--vb-muted);
}
.vb-meta a { color: inherit; text-decoration: none; }
.vb-meta a:hover { color: var(--vb-primary); text-decoration: underline; }

/* ---------- 8. Bài viết đơn ---------- */
.vb-entry { max-width: 100%; }
.vb-entry__header { margin-bottom: 26px; }
.vb-entry__cats { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
.vb-entry__cats a {
	font-size: .74rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
	color: var(--vb-accent); text-decoration: none;
}
.vb-entry__title { margin: 0 0 14px; }
.vb-entry--single .vb-entry__header { border-bottom: 1px solid var(--vb-border); padding-bottom: 20px; }
.vb-entry__thumb { margin: 0 0 30px; }
.vb-entry__thumb img { width: 100%; border-radius: var(--vb-radius); }
.vb-entry__thumb figcaption { margin-top: 8px; font-size: .82rem; color: var(--vb-muted); text-align: center; }

.vb-entry__content { font-size: 1.03rem; }
.vb-entry__content > *:first-child { margin-top: 0; }
.vb-entry__content h2 { margin-top: 1.8em; }
.vb-entry__content h3 { margin-top: 1.5em; }
.vb-entry__content ul, .vb-entry__content ol { padding-left: 1.4em; }
.vb-entry__content li { margin-bottom: .4em; }
.vb-entry__content img { border-radius: var(--vb-radius); }
.vb-entry__content > p:first-of-type { font-size: 1.1em; color: var(--vb-ink); }

.vb-entry__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.vb-entry__tags a {
	padding: 5px 12px;
	background: var(--vb-surface);
	border: 1px solid var(--vb-border);
	border-radius: 100px;
	font-size: .82rem; color: var(--vb-muted); text-decoration: none;
}
.vb-entry__tags a:hover { border-color: var(--vb-primary); color: var(--vb-primary); }

.vb-postnav { margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--vb-border); }
.vb-postnav .nav-links { display: grid; gap: 18px; }
@media (min-width: 700px) { .vb-postnav .nav-links { grid-template-columns: 1fr 1fr; } }
.vb-postnav a { display: block; text-decoration: none; }
.vb-navlabel {
	display: block; margin-bottom: 4px;
	font-size: .74rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
	color: var(--vb-muted);
}
.vb-navtitle { font-family: var(--vb-font-heading); font-size: 1.02rem; color: var(--vb-ink); }
.vb-postnav .nav-next { text-align: right; }

.vb-related { margin-top: 56px; }
.vb-related__title { padding-bottom: 12px; border-bottom: 2px solid var(--vb-accent); display: inline-block; }

/* ---------- 9. Lưu trữ ---------- */
.vb-archive__header { margin-bottom: 34px; padding-bottom: 18px; border-bottom: 1px solid var(--vb-border); }
.vb-archive__title { margin: 0; }
.vb-archive__desc { margin-top: 10px; color: var(--vb-muted); }

.vb-none { padding: 40px 0; }
.vb-none__title { margin-bottom: 8px; }

/* ---------- 10. Widget & sidebar ---------- */
.vb-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 30px; }
.vb-widget {
	padding: 22px;
	background: var(--vb-surface);
	border-radius: var(--vb-radius);
	font-size: .95rem;
}
.vb-widget__title {
	margin: 0 0 14px;
	font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
	font-family: var(--vb-font-body);
	color: var(--vb-muted);
}
.vb-widget ul { margin: 0; padding: 0; list-style: none; }
.vb-widget li { padding: 8px 0; border-bottom: 1px solid var(--vb-border); }
.vb-widget li:last-child { border-bottom: 0; }
.vb-widget a { color: var(--vb-ink); text-decoration: none; }
.vb-widget a:hover { color: var(--vb-primary); }
.vb-widget .sub-menu, .vb-widget .children { padding-left: 14px; }

/* ---------- 11. Form ---------- */
input[type="text"], input[type="email"], input[type="url"], input[type="search"],
input[type="tel"], input[type="number"], input[type="password"], input[type="date"],
select, textarea {
	width: 100%;
	padding: .68em .9em;
	font-family: inherit; font-size: .95rem; color: var(--vb-ink);
	background: #fff;
	border: 1px solid var(--vb-border);
	border-radius: var(--vb-radius);
	transition: border-color .15s ease;
}
input:focus, select:focus, textarea:focus { border-color: var(--vb-primary); outline: none; }
label { display: inline-block; margin-bottom: 6px; font-size: .9rem; font-weight: 500; }
input[type="submit"], button[type="submit"] {
	width: auto;
	padding: .7em 1.4em;
	background: var(--vb-primary); color: #fff;
	border: 0; border-radius: var(--vb-radius);
	font-family: inherit; font-size: .95rem; font-weight: 600;
	cursor: pointer;
}
input[type="submit"]:hover, button[type="submit"]:hover { background: var(--vb-ink); }

.vb-searchform { display: flex; gap: 8px; }
.vb-searchform__input { flex: 1; }
.vb-searchform__btn { white-space: nowrap; }

/* ---------- 12. Phân trang ---------- */
.vb-pagination { margin-top: 48px; }
.vb-pagination .nav-links { display: flex; flex-wrap: wrap; gap: 6px; }
.vb-pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 42px; height: 42px; padding: 0 12px;
	border: 1px solid var(--vb-border); border-radius: var(--vb-radius);
	color: var(--vb-ink); text-decoration: none; font-size: .92rem; font-weight: 500;
}
.vb-pagination .page-numbers:hover { border-color: var(--vb-primary); color: var(--vb-primary); }
.vb-pagination .page-numbers.current { background: var(--vb-primary); border-color: var(--vb-primary); color: #fff; }
.vb-pagination .dots { border-color: transparent; }

/* ---------- 13. Bình luận ---------- */
.vb-comments { margin-top: 56px; padding-top: 34px; border-top: 1px solid var(--vb-border); }
.vb-comments__list, .vb-comments__list .children { margin: 0 0 34px; padding: 0; list-style: none; }
.vb-comments__list .children { margin: 18px 0 0; padding-left: 26px; border-left: 2px solid var(--vb-border); }
.vb-comments__list .comment-body { padding: 18px 0; }
.vb-comments__list .comment-author { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.vb-comments__list .comment-author img { border-radius: 50%; }
.vb-comments__list .comment-metadata { font-size: .82rem; color: var(--vb-muted); margin: 4px 0 10px; }
.vb-comments__list .comment-metadata a { color: inherit; text-decoration: none; }
.vb-comments__list .reply { font-size: .88rem; }
.comment-form p { margin-bottom: 14px; }
.comment-form .comment-notes, .comment-form .form-submit { margin-bottom: 0; }

/* ---------- 14. Footer ---------- */
.vb-footer { background: var(--vb-footer-bg); color: var(--vb-footer-text); margin-top: 0; }
.vb-footer a { color: var(--vb-footer-text); text-decoration: none; }
.vb-footer a:hover { color: #fff; text-decoration: underline; }

.vb-footer__top { padding: 56px 0 42px; }
.vb-footer__about { max-width: 60ch; margin-bottom: 36px; opacity: .9; }

.vb-footer__widgets { display: grid; gap: 34px; }
@media (min-width: 640px) {
	.vb-footer__widgets--2, .vb-footer__widgets--4 { grid-template-columns: repeat(2, 1fr); }
	.vb-footer__widgets--3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 960px) {
	.vb-footer__widgets--4 { grid-template-columns: repeat(4, 1fr); }
}
.vb-footer .vb-widget { background: transparent; padding: 0; }
.vb-footer .vb-widget__title { color: #fff; }
.vb-footer .vb-widget li { border-color: rgba(255,255,255,.09); }
.vb-footer .vb-widget a { color: var(--vb-footer-text); }

.vb-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.vb-footer__bar {
	display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
	font-size: .87rem;
}
.vb-footer__copy { margin: 0; }
.vb-footer__menu, .vb-social__list {
	display: flex; flex-wrap: wrap; gap: 4px 18px; margin: 0; padding: 0; list-style: none;
}

/* ---------- 15. Nút lên đầu trang ---------- */
.vb-totop {
	position: fixed; right: 20px; bottom: 20px; z-index: 60;
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; padding: 0;
	background: var(--vb-primary); color: #fff;
	border: 0; border-radius: 50%;
	box-shadow: 0 6px 20px rgba(16,24,32,.2);
	cursor: pointer; opacity: 0; transform: translateY(10px);
	transition: opacity .2s ease, transform .2s ease;
}
.vb-totop.is-visible { opacity: 1; transform: translateY(0); }
.vb-totop:hover { background: var(--vb-ink); }

/* ---------- 16. Trang 404 ---------- */
.vb-404 { padding: 80px 0; text-align: center; max-width: 560px; margin-inline: auto; }
.vb-404__code {
	margin: 0; font-family: var(--vb-font-heading);
	font-size: clamp(4rem, 12vw, 7rem); line-height: 1; font-weight: 700;
	color: var(--vb-accent);
}
.vb-404__title { margin-top: 10px; }
.vb-404__text { color: var(--vb-muted); }
.vb-404__search { margin: 26px 0; }

/* ---------- 17. Class chuẩn của WordPress ---------- */
.alignleft { float: left; margin: .3em 1.6em 1em 0; }
.alignright { float: right; margin: .3em 0 1em 1.6em; }
.aligncenter { display: block; margin-inline: auto; }
.alignwide { width: min(100%, calc(var(--vb-container) - 40px)); margin-inline: auto; }
.alignfull { width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); }
.vb-fullwidth .alignfull, .vb-blank .alignfull { margin-left: 0; width: 100%; }
.wp-caption { max-width: 100%; }
.wp-caption-text, .gallery-caption { font-size: .84rem; color: var(--vb-muted); text-align: center; margin-top: 8px; }
.sticky .vb-card__title::before { content: "★ "; color: var(--vb-accent); }
.bypostauthor > .comment-body .comment-author { color: var(--vb-primary); }
.wp-block-image figcaption { font-size: .84rem; color: var(--vb-muted); }
.wp-block-button__link { border-radius: var(--vb-radius); }

/* ---------- 18. Di động ---------- */
@media (max-width: 899px) {
	.vb-burger { display: block; }
	.vb-header__inner { flex-wrap: wrap; }
	.vb-nav {
		order: 10; width: 100%;
		max-height: 0; overflow: hidden;
		transition: max-height .28s ease;
	}
	.vb-nav.is-open { max-height: 80vh; overflow-y: auto; }
	.vb-menu { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0 16px; }
	.vb-menu a { padding: 12px 4px; border-bottom: 1px solid var(--vb-border); border-radius: 0; }
	.vb-menu .sub-menu {
		position: static; opacity: 1; visibility: visible; transform: none;
		box-shadow: none; border: 0; border-radius: 0;
		padding: 0 0 0 16px; min-width: 0;
		max-height: 0; overflow: hidden; transition: max-height .25s ease;
	}
	.vb-menu li.is-open > .sub-menu { max-height: 900px; }
	.vb-menu .menu-item-has-children > a::after { float: right; margin-top: .5em; }
	.vb-header__tools { order: 5; margin-left: auto; }
	.vb-header__cta, .vb-header__phone { display: none; }
	.vb-sidebar { position: static; }
	.vb-layout { padding-block: 30px 48px; gap: 40px; }
	.vb-footer__top { padding: 40px 0 30px; }
	.vb-footer__bar { justify-content: center; text-align: center; }
}

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

@media print {
	.vb-header, .vb-footer, .vb-breadcrumb, .vb-totop, .vb-layout__side, .vb-comments { display: none !important; }
}
