/**
 * NVBDS theme — layout, typography and shell components.
 *
 * The design system: a single red accent for anything blood-related, a neutral
 * grey scale for everything else, generous whitespace, and no decoration that
 * does not carry information. Mobile-first throughout.
 */

:root {
	--nvbds-red: #c81e2b;
	--nvbds-red-dark: #a4131f;
	--nvbds-red-darker: #7f0e17;
	--nvbds-red-soft: #fff1f2;
	--nvbds-ink: #101828;
	--nvbds-body: #475467;
	--nvbds-muted: #667085;
	--nvbds-line: #e4e7ec;
	--nvbds-bg: #f8f9fb;
	--nvbds-radius: 14px;
	--nvbds-shadow-sm: 0 1px 2px rgba(16, 24, 40, .06);
	--nvbds-shadow: 0 1px 3px rgba(16, 24, 40, .08), 0 12px 32px -16px rgba(16, 24, 40, .18);
	--nvbds-container: 1200px;

	--bs-primary: #c81e2b;
	--bs-link-color: #c81e2b;
	--bs-link-hover-color: #a4131f;
}

/* ------------------------------------------------------------------- Base */

body.nvbds-site {
	margin: 0;
	background: #fff;
	color: var(--nvbds-body);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
	font-size: 1rem;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

.nvbds-site h1,
.nvbds-site h2,
.nvbds-site h3,
.nvbds-site h4 {
	color: var(--nvbds-ink);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -.011em;
}

/* :where() contributes no specificity, so this base link colour sits at (0,0,1)
   and any component rule — .btn, .nvbds-fab, .nvbds-tab, .nvbds-group-card —
   overrides it without needing !important or a :not() chain. It still beats
   Bootstrap's own `a` rule because this stylesheet loads later. */
:where(.nvbds-site) a { color: var(--nvbds-red); text-decoration: none; }
:where(.nvbds-site) a:hover,
:where(.nvbds-site) a:focus { color: var(--nvbds-red-dark); text-decoration: underline; }
.nvbds-site a.btn:hover { text-decoration: none; }

.nvbds-site .container { max-width: var(--nvbds-container); }

.nvbds-site :focus-visible {
	outline: 3px solid rgba(200, 30, 43, .45);
	outline-offset: 2px;
	border-radius: 4px;
}

.nvbds-skip-link {
	position: absolute;
	left: 12px;
	top: 12px;
	z-index: 2000;
	padding: 10px 16px;
	background: var(--nvbds-red);
	color: #fff;
	border-radius: 8px;
}

/* Bootstrap button re-skin. */
.nvbds-site .btn {
	--bs-btn-font-weight: 600;
	--bs-btn-padding-x: 1.1rem;
	--bs-btn-border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	color: var(--bs-btn-color);
}

.nvbds-site .btn-danger {
	--bs-btn-bg: var(--nvbds-red);
	--bs-btn-border-color: var(--nvbds-red);
	--bs-btn-hover-bg: var(--nvbds-red-dark);
	--bs-btn-hover-border-color: var(--nvbds-red-dark);
	--bs-btn-active-bg: var(--nvbds-red-darker);
	--bs-btn-active-border-color: var(--nvbds-red-darker);
}

.nvbds-site .btn-outline-danger {
	--bs-btn-color: var(--nvbds-red);
	--bs-btn-border-color: var(--nvbds-red);
	--bs-btn-hover-bg: var(--nvbds-red);
	--bs-btn-hover-border-color: var(--nvbds-red);
}

.nvbds-site .form-control:focus,
.nvbds-site .form-select:focus {
	border-color: #f2a3a9;
	box-shadow: 0 0 0 .2rem rgba(200, 30, 43, .15);
}

.nvbds-site .form-label { font-weight: 600; font-size: .88rem; color: #344054; margin-bottom: .35rem; }

/* ---------------------------------------------------------------- Topbar */

.nvbds-topbar {
	background: var(--nvbds-ink);
	color: #d0d5dd;
	font-size: .82rem;
}

.nvbds-topbar .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	min-height: 40px;
	flex-wrap: wrap;
}

.nvbds-topbar__text { margin: 0; display: flex; align-items: center; gap: 8px; }
.nvbds-topbar__text i { color: var(--nvbds-red); }

.nvbds-topbar__actions { display: flex; align-items: center; gap: 16px; }

.nvbds-topbar a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #d0d5dd;
	text-decoration: none;
}

.nvbds-topbar a:hover { color: #fff; text-decoration: none; }

.nvbds-topbar__bell { position: relative; }

.nvbds-badge {
	display: inline-block;
	min-width: 18px;
	padding: 0 5px;
	background: var(--nvbds-red);
	border-radius: 999px;
	color: #fff;
	font-size: .68rem;
	font-weight: 700;
	line-height: 18px;
	text-align: center;
}

@media (max-width: 575.98px) {
	.nvbds-topbar__text { display: none; }
	.nvbds-topbar .container { justify-content: center; }
}

/* ---------------------------------------------------------------- Header */

.nvbds-header {
	position: sticky;
	top: 0;
	z-index: 1030;
	background: #fff;
	border-bottom: 1px solid var(--nvbds-line);
}

.nvbds-header.is-stuck { box-shadow: var(--nvbds-shadow-sm); }

.nvbds-header .navbar { padding: .6rem 0; }

.nvbds-brand__link { display: flex; align-items: center; gap: 12px; text-decoration: none; }

.nvbds-brand__mark {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background: var(--nvbds-red);
	border-radius: 12px;
	color: #fff;
	font-size: 1.25rem;
	flex: 0 0 42px;
}

.nvbds-brand__text { display: flex; flex-direction: column; }

.nvbds-brand__name {
	color: var(--nvbds-ink);
	font-size: 1.12rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -.01em;
}

.nvbds-brand__tagline {
	font-size: .72rem;
	color: var(--nvbds-muted);
	line-height: 1.3;
}

/* Five grouped items, so the bar never wraps to a second row. */
.nvbds-header .navbar-nav { gap: 4px; align-items: center; }

.nvbds-header .nav-link {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: .55rem .8rem;
	border-radius: 10px;
	color: #344054;
	font-size: .9rem;
	font-weight: 500;
	white-space: nowrap;
	transition: background-color .15s ease, color .15s ease;
}

.nvbds-nav-icon { font-size: .82em; opacity: .55; transition: opacity .15s ease; }

.nvbds-header .nav-link:hover,
.nvbds-header .nav-link:focus-visible { background: var(--nvbds-bg); color: var(--nvbds-red); }
.nvbds-header .nav-link:hover .nvbds-nav-icon { opacity: 1; }

.nvbds-header .nav-link.active,
.nvbds-header .current-menu-item > .nav-link {
	background: var(--nvbds-red-soft);
	color: var(--nvbds-red);
	font-weight: 600;
}

.nvbds-header .nav-link.active .nvbds-nav-icon { opacity: 1; }

/* Bootstrap's caret is a border triangle; a chevron reads better and can turn. */
.nvbds-header .dropdown-toggle::after {
	content: "\f078";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	border: 0;
	margin: 0 0 0 1px;
	font-size: .58em;
	opacity: .5;
	/* inline-block, or the rotation below has nothing to transform. */
	display: inline-block;
	vertical-align: middle;
	transition: transform .18s ease;
}

/* Bootstrap marks the toggle, not the list item. */
.nvbds-header .dropdown-toggle.show::after { transform: rotate(180deg); opacity: 1; }

/* ------------------------------------------------------- Dropdown panels */

.nvbds-menu-panel {
	min-width: 288px;
	padding: 8px;
	border: 1px solid var(--nvbds-line);
	border-radius: 14px;
	box-shadow: var(--nvbds-shadow);
	margin-top: 8px;
}

.nvbds-menu-link {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	padding: 9px 10px;
	border-radius: 10px;
	white-space: normal;
}

.nvbds-menu-link__icon {
	flex: none;
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--nvbds-bg);
	border-radius: 9px;
	color: var(--nvbds-red);
	font-size: .82rem;
	transition: background-color .15s ease;
}

.nvbds-menu-link__text { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.nvbds-menu-link__text strong { font-size: .89rem; font-weight: 600; }
.nvbds-menu-link__text span { font-size: .76rem; color: var(--nvbds-muted); }

.nvbds-menu-link:hover,
.nvbds-menu-link:focus-visible,
.nvbds-menu-link.active { background: var(--nvbds-red-soft); color: var(--nvbds-ink); }
.nvbds-menu-link:hover .nvbds-menu-link__icon,
.nvbds-menu-link.active .nvbds-menu-link__icon { background: var(--nvbds-red); color: #fff; }
.nvbds-menu-link.active .nvbds-menu-link__text strong { color: var(--nvbds-red); }

/* Open on hover on pointer devices; the click toggle still works, and touch
   screens fall back to it because they do not match this query. */
@media (min-width: 992px) and (hover: hover) {
	.nvbds-header .nav-item.dropdown:hover > .dropdown-menu { display: block; }
	.nvbds-header .nav-item.dropdown:hover > .dropdown-toggle::after { transform: rotate(180deg); opacity: 1; }

	/* Bridge the gap so the panel does not close as the pointer travels to it. */
	.nvbds-header .nav-item.dropdown > .dropdown-menu::before {
		content: "";
		position: absolute;
		inset: -10px 0 auto 0;
		height: 10px;
	}
}

.nvbds-header__cta { display: flex; gap: 8px; margin-left: 16px; flex: none; }
.nvbds-header__cta .btn { white-space: nowrap; }

/* The nav already links to "Find a Donor"; drop the duplicate CTA when the bar
   gets tight so the primary action never wraps. */
@media (min-width: 992px) and (max-width: 1199.98px) {
	.nvbds-header__cta .btn-outline-danger { display: none; }
}

/* ------------------------------------------------------------- Mobile nav */

@media (max-width: 991.98px) {
	.nvbds-header .navbar-collapse {
		max-height: calc(100vh - 120px);
		overflow-y: auto;
		padding-bottom: 10px;
		margin-top: 8px;
		border-top: 1px solid var(--nvbds-line);
	}

	.nvbds-header .navbar-nav { align-items: stretch; gap: 2px; padding-top: 8px; }
	.nvbds-header .nav-link { padding: .7rem .8rem; font-size: .95rem; }

	/* Panels sit inline rather than floating, so the whole menu is one scroll. */
	.nvbds-menu-panel {
		border: 0;
		box-shadow: none;
		margin: 2px 0 6px;
		padding: 2px 0 2px 14px;
		border-left: 2px solid var(--nvbds-line);
		border-radius: 0;
		min-width: 0;
	}

	.nvbds-header__cta { margin: 10px 0 4px; }
	.nvbds-header__cta .btn { flex: 1; padding-block: .6rem; }

	.navbar-toggler { border-radius: 10px; padding: .35rem .55rem; }
	.navbar-toggler:focus { box-shadow: 0 0 0 3px var(--nvbds-red-soft); }
}

/* ---------------------------------------------------------------- Ticker */

.nvbds-ticker {
	background: var(--nvbds-red);
	color: #fff;
	font-size: .84rem;
	overflow: hidden;
}

.nvbds-ticker .container { display: flex; align-items: center; gap: 14px; min-height: 42px; }

.nvbds-ticker__label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 3px 10px;
	background: rgba(255, 255, 255, .18);
	border-radius: 999px;
	font-weight: 700;
	text-transform: uppercase;
	font-size: .7rem;
	letter-spacing: .05em;
	flex: none;
}

.nvbds-ticker__list {
	list-style: none;
	display: flex;
	gap: 26px;
	margin: 0;
	padding: 0;
	overflow-x: auto;
	scrollbar-width: none;
	flex: 1;
	white-space: nowrap;
}

.nvbds-ticker__list::-webkit-scrollbar { display: none; }
.nvbds-ticker__list a { color: #fff; text-decoration: none; }
.nvbds-ticker__list a:hover { color: #fff; text-decoration: underline; }
.nvbds-ticker__list strong { margin-right: 6px; }

.nvbds-ticker__all { color: #fff; font-weight: 600; white-space: nowrap; flex: none; }

@media (max-width: 767.98px) {
	.nvbds-ticker__all { display: none; }
}

/* ------------------------------------------------------------------- Hero */

.nvbds-hero {
	position: relative;
	padding: 68px 0 76px;
	background: linear-gradient(135deg, #8f1119 0%, var(--nvbds-red) 55%, #e04b53 100%);
	color: #fff;
	overflow: hidden;
}

.nvbds-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .16), transparent 42%);
	pointer-events: none;
}

.nvbds-hero.has-image::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: var(--nvbds-hero-image);
	background-size: cover;
	background-position: center;
	opacity: .18;
}

.nvbds-hero .container { position: relative; z-index: 1; }

.nvbds-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 5px 14px;
	margin-bottom: 18px;
	background: rgba(255, 255, 255, .16);
	border-radius: 999px;
	font-size: .8rem;
	font-weight: 600;
}

.nvbds-hero__title {
	color: #fff;
	font-size: clamp(2.1rem, 5.2vw, 3.5rem);
	font-weight: 800;
	letter-spacing: -.025em;
	margin-bottom: 16px;
}

.nvbds-hero__subtitle {
	font-size: clamp(1rem, 2vw, 1.2rem);
	color: rgba(255, 255, 255, .92);
	max-width: 34em;
	margin-bottom: 28px;
}

.nvbds-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.nvbds-hero__actions .btn-light { --bs-btn-color: var(--nvbds-red); font-weight: 700; }
.nvbds-hero__actions .btn-outline-light { --bs-btn-color: #fff; --bs-btn-hover-color: var(--nvbds-red); }

.nvbds-hero__trust { margin: 22px 0 0; font-size: .88rem; color: rgba(255, 255, 255, .85); }

.nvbds-hero__card {
	padding: 26px;
	background: rgba(255, 255, 255, .97);
	border-radius: 18px;
	box-shadow: 0 24px 48px -20px rgba(0, 0, 0, .45);
	color: var(--nvbds-body);
}

.nvbds-hero__card h2 { font-size: 1.15rem; margin-bottom: 4px; }
.nvbds-hero__card p { font-size: .86rem; color: var(--nvbds-muted); margin-bottom: 18px; }

/* --------------------------------------------------------------- Sections */

.nvbds-section { padding: 62px 0; }
.nvbds-section--muted { background: var(--nvbds-bg); }
.nvbds-section--emergency { background: linear-gradient(#fff, var(--nvbds-red-soft)); }
.nvbds-section--stats { padding: 40px 0; background: var(--nvbds-bg); border-block: 1px solid var(--nvbds-line); }

.nvbds-section__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 32px;
}

.nvbds-section__head--center { justify-content: center; text-align: center; }
.nvbds-section__head--center > div { max-width: 640px; }
.nvbds-section__head h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 0; }
.nvbds-section__head p { margin: 10px 0 0; color: var(--nvbds-muted); }

.nvbds-section__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 8px;
	color: var(--nvbds-red);
	font-size: .76rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.nvbds-section__eyebrow--alert {
	padding: 3px 10px;
	background: var(--nvbds-red);
	border-radius: 999px;
	color: #fff;
}

.nvbds-section__foot { margin-top: 28px; text-align: center; }

/* ------------------------------------------------------ Donor highlights */

.nvbds-donor-panel {
	height: 100%;
	padding: 24px;
	background: #fff;
	border: 1px solid var(--nvbds-line);
	border-radius: 16px;
}

.nvbds-donor-panel__title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 16px;
	font-size: 1.05rem;
	font-weight: 700;
}

.nvbds-donor-panel__title i { color: var(--nvbds-red); }

/* --------------------------------------------------------- How it works */

.nvbds-how {
	list-style: none;
	counter-reset: nvbds-how;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 18px;
	margin: 0;
	padding: 0;
}

.nvbds-how__step {
	position: relative;
	padding: 30px 20px 22px;
	background: #fff;
	border: 1px solid var(--nvbds-line);
	border-radius: var(--nvbds-radius);
	text-align: center;
}

.nvbds-how__num {
	position: absolute;
	top: -16px;
	left: 50%;
	transform: translateX(-50%);
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--nvbds-red);
	border: 3px solid #fff;
	border-radius: 50%;
	color: #fff;
	font-weight: 700;
	font-size: .9rem;
}

.nvbds-how__step i { font-size: 1.6rem; color: var(--nvbds-red); opacity: .45; margin-bottom: 10px; display: block; }
.nvbds-how__step h3 { font-size: 1.02rem; margin-bottom: 6px; }
.nvbds-how__step p { font-size: .86rem; color: var(--nvbds-muted); margin: 0; }

/* -------------------------------------------------------------------- CTA */

.nvbds-cta { padding: 56px 0; background: var(--nvbds-ink); color: #fff; }

.nvbds-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	flex-wrap: wrap;
}

.nvbds-cta h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 8px; }
.nvbds-cta p { margin: 0; color: #d0d5dd; max-width: 46em; }
.nvbds-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.nvbds-cta__actions .btn-light { --bs-btn-color: var(--nvbds-ink); font-weight: 700; }

/* ----------------------------------------------------------- Page header */

.nvbds-page-header {
	padding: 34px 0 30px;
	background: var(--nvbds-bg);
	border-bottom: 1px solid var(--nvbds-line);
}

.nvbds-page-header__title { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin: 6px 0 0; }
.nvbds-page-header__subtitle { margin: 8px 0 0; color: var(--nvbds-muted); max-width: 60ch; }

/* Breadcrumbs without a page title, for pages that supply their own headline. */
.nvbds-crumb-bar {
	padding: 14px 0 0;
	background: #fff;
}

.nvbds-crumb-bar + .nvbds-section { padding-top: 22px; }

.nvbds-breadcrumbs ol {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	font-size: .82rem;
	color: var(--nvbds-muted);
}

.nvbds-breadcrumbs li + li::before { content: '/'; margin-right: 8px; opacity: .5; }
.nvbds-breadcrumbs a { color: var(--nvbds-muted); }
.nvbds-breadcrumbs a:hover { color: var(--nvbds-red); }

/* ------------------------------------------------------------- Content */

.nvbds-prose { max-width: 74ch; margin-inline: auto; }
.nvbds-wide { max-width: none; }

.nvbds-prose h2 { margin: 2em 0 .6em; font-size: 1.5rem; }
.nvbds-prose h3 { margin: 1.6em 0 .5em; font-size: 1.2rem; }
.nvbds-prose p, .nvbds-prose li { font-size: 1.02rem; }
.nvbds-prose ul, .nvbds-prose ol { padding-left: 1.3em; }
.nvbds-prose li { margin-bottom: .45em; }
.nvbds-prose img { max-width: 100%; height: auto; border-radius: 10px; }

.nvbds-prose blockquote {
	margin: 1.6em 0;
	padding: 4px 0 4px 20px;
	border-left: 4px solid var(--nvbds-red);
	color: var(--nvbds-ink);
	font-size: 1.08rem;
}

/* ---------------------------------------------------------------- Cards */

.nvbds-post-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--nvbds-line);
	border-radius: var(--nvbds-radius);
	overflow: hidden;
	transition: transform .15s ease, box-shadow .15s ease;
}

.nvbds-post-card:hover { transform: translateY(-3px); box-shadow: var(--nvbds-shadow); }
.nvbds-post-card__thumb img { width: 100%; height: 190px; object-fit: cover; display: block; }
.nvbds-post-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.nvbds-post-card__title { font-size: 1.1rem; margin: 4px 0 8px; }
.nvbds-post-card__title a { color: var(--nvbds-ink); }
.nvbds-post-card__title a:hover { color: var(--nvbds-red); text-decoration: none; }
.nvbds-post-card__excerpt { font-size: .9rem; color: var(--nvbds-muted); flex: 1; }

.nvbds-post-card__more {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 12px;
	font-size: .88rem;
	font-weight: 600;
}

.nvbds-post__meta { font-size: .78rem; color: var(--nvbds-muted); margin: 0 0 4px; }
.nvbds-post__thumb { margin: 0 0 26px; }
.nvbds-post__thumb img { width: 100%; border-radius: var(--nvbds-radius); }

.nvbds-post__footer {
	margin-top: 30px;
	padding-top: 18px;
	border-top: 1px solid var(--nvbds-line);
	font-size: .85rem;
}

.nvbds-postnav { margin: 34px 0; display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.nvbds-postnav a { display: block; padding: 16px; background: var(--nvbds-bg); border-radius: 12px; color: var(--nvbds-ink); }
.nvbds-postnav a:hover { background: var(--nvbds-red-soft); text-decoration: none; }
.nvbds-postnav__label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: var(--nvbds-muted); }

/* -------------------------------------------------------------- Sidebar */

.nvbds-sidebar .widget {
	padding: 22px;
	margin-bottom: 20px;
	background: var(--nvbds-bg);
	border-radius: var(--nvbds-radius);
}

.widget-title { font-size: 1rem; margin-bottom: 14px; }
.nvbds-sidebar ul { list-style: none; margin: 0; padding: 0; }
.nvbds-sidebar li { padding: 7px 0; border-bottom: 1px dashed var(--nvbds-line); }
.nvbds-sidebar li:last-child { border-bottom: 0; }

/* ---------------------------------------------------------------- Footer */

.nvbds-footer { background: var(--nvbds-ink); color: #98a2b3; padding: 56px 0 0; font-size: .9rem; }
.nvbds-footer__top { padding-bottom: 36px; }
.nvbds-footer h2, .nvbds-footer .widget-title { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 16px; }

.nvbds-footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.nvbds-footer__brand .nvbds-brand__name { color: #fff; }
.nvbds-footer__about { color: #98a2b3; max-width: 40ch; }

.nvbds-footer__contact,
.nvbds-footer__links,
.nvbds-footer__social { list-style: none; margin: 0; padding: 0; }

.nvbds-footer__contact li { display: flex; gap: 10px; margin-bottom: 10px; }
.nvbds-footer__contact i { width: 16px; margin-top: 5px; color: var(--nvbds-red); }
.nvbds-footer__links li { margin-bottom: 9px; }
.nvbds-footer a { color: #98a2b3; }
.nvbds-footer a:hover { color: #fff; text-decoration: none; }

.nvbds-footer__social { display: flex; gap: 10px; margin-top: 18px; }

.nvbds-footer__social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: rgba(255, 255, 255, .08);
	border-radius: 9px;
	color: #d0d5dd;
}

.nvbds-footer__social a:hover { background: var(--nvbds-red); color: #fff; }

.nvbds-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, .1);
	font-size: .83rem;
}

.nvbds-footer__credit { margin: 0; }
.nvbds-footer__legal { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }

/* ------------------------------------------------------ Floating actions */

.nvbds-fab {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 1040;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 12px 18px;
	background: var(--nvbds-red);
	border-radius: 999px;
	color: #fff;
	font-weight: 700;
	font-size: .9rem;
	box-shadow: 0 10px 26px -8px rgba(200, 30, 43, .7);
}

.nvbds-fab:hover { background: var(--nvbds-red-dark); color: #fff; text-decoration: none; }

.nvbds-to-top {
	position: fixed;
	left: 18px;
	bottom: 18px;
	z-index: 1040;
	width: 42px;
	height: 42px;
	border: 1px solid var(--nvbds-line);
	background: #fff;
	border-radius: 50%;
	color: var(--nvbds-ink);
	box-shadow: var(--nvbds-shadow-sm);
	cursor: pointer;
}

.nvbds-to-top:hover { color: var(--nvbds-red); border-color: var(--nvbds-red); }

@media (max-width: 575.98px) {
	.nvbds-fab span { display: none; }
	.nvbds-fab { padding: 14px; }
}

/* ------------------------------------------------------------------ 404 */

.nvbds-404 { max-width: 600px; margin: 0 auto; text-align: center; padding: 30px 0 10px; }
.nvbds-404__code { display: block; font-size: 5rem; font-weight: 800; color: var(--nvbds-red); opacity: .18; line-height: 1; }
.nvbds-404 h1 { margin: 8px 0 10px; font-size: 1.7rem; }
.nvbds-404 p { color: var(--nvbds-muted); }
.nvbds-404__actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin: 22px 0; }
.nvbds-404__search { max-width: 400px; margin: 0 auto; }

/* ------------------------------------------------------------- Comments */

.nvbds-comments { margin-top: 46px; padding-top: 30px; border-top: 1px solid var(--nvbds-line); }
.nvbds-comments__title { font-size: 1.2rem; margin-bottom: 20px; }
.nvbds-comments__list { list-style: none; margin: 0 0 30px; padding: 0; }
.nvbds-comments__list .comment-body { padding: 18px 0; border-bottom: 1px dashed var(--nvbds-line); }
.nvbds-comments__list .children { list-style: none; padding-left: 26px; }
.nvbds-comment-form .form-submit { margin-top: 12px; }
.nvbds-comment-form textarea,
.nvbds-comment-form input[type="text"],
.nvbds-comment-form input[type="email"],
.nvbds-comment-form input[type="url"] {
	width: 100%;
	padding: .55rem .8rem;
	border: 1px solid var(--nvbds-line);
	border-radius: 8px;
}

/* ------------------------------------------------------------ Utilities */

.nvbds-empty {
	padding: 46px 24px;
	background: var(--nvbds-bg);
	border: 1px dashed var(--nvbds-line);
	border-radius: var(--nvbds-radius);
	text-align: center;
}

.nvbds-empty i { display: block; font-size: 2.2rem; color: var(--nvbds-line); margin-bottom: 12px; }
.nvbds-empty h2 { font-size: 1.2rem; margin-bottom: 8px; }
.nvbds-empty p { color: var(--nvbds-muted); margin-bottom: 18px; }

.nvbds-site .pagination { --bs-pagination-color: var(--nvbds-red); --bs-pagination-active-bg: var(--nvbds-red); --bs-pagination-active-border-color: var(--nvbds-red); }
.nvbds-site .nav-links { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

.nvbds-site .nav-links .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	border: 1px solid var(--nvbds-line);
	border-radius: 9px;
	color: var(--nvbds-body);
	text-decoration: none;
}

.nvbds-site .nav-links .page-numbers.current,
.nvbds-site .nav-links .page-numbers:hover { background: var(--nvbds-red); border-color: var(--nvbds-red); color: #fff; }

/* ==========================================================================
   Blog · Notices · Gallery
   --------------------------------------------------------------------------
   Three content types, three reading patterns. Articles are browsed, so they
   get pictures and a lead story; notices are scanned and filed, so they get a
   dense dated list with the download in reach; albums are looked at, so the
   photograph is the whole tile. Informational badges stay in the grey scale —
   the red is still reserved for anything to do with blood.
   ========================================================================== */

/* ------------------------------------------------------------------ Tabs */

.nvbds-catnav {
	display: flex;
	gap: 8px;
	margin-top: 22px;
	padding-bottom: 2px;
	overflow-x: auto;
	scrollbar-width: none;
}

.nvbds-catnav::-webkit-scrollbar { display: none; }

.nvbds-catnav__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 15px;
	background: #fff;
	border: 1px solid var(--nvbds-line);
	border-radius: 999px;
	color: #344054;
	font-size: .88rem;
	font-weight: 600;
	white-space: nowrap;
	transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.nvbds-catnav__link i { font-size: .85em; opacity: .5; }
.nvbds-catnav__link:hover { border-color: #d0d5dd; color: var(--nvbds-red); text-decoration: none; }
.nvbds-catnav__link:hover i { opacity: 1; }

.nvbds-catnav__link.is-active {
	background: var(--nvbds-red);
	border-color: var(--nvbds-red);
	color: #fff;
}

.nvbds-catnav__link.is-active i { opacity: 1; }

.nvbds-catnav__count {
	padding: 0 7px;
	background: rgba(16, 24, 40, .06);
	border-radius: 999px;
	font-size: .74rem;
	font-weight: 700;
}

.nvbds-catnav__link.is-active .nvbds-catnav__count { background: rgba(255, 255, 255, .22); }

.nvbds-page-header--archive .nvbds-page-header__subtitle,
.nvbds-page-header--post .nvbds-page-header__subtitle { max-width: 64ch; }

.nvbds-page-header--archive .nvbds-section__eyebrow,
.nvbds-page-header--post .nvbds-section__eyebrow { margin-bottom: 4px; }

.nvbds-page-header--post .nvbds-page-header__title { max-width: 26ch; }

.nvbds-post__meta--lead {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 20px;
	margin-top: 14px;
	font-size: .85rem;
}

.nvbds-post__meta--lead i { margin-right: 6px; opacity: .65; }

/* --------------------------------------------------------------- Filters */

.nvbds-filters {
	margin-bottom: 30px;
	padding-bottom: 22px;
	border-bottom: 1px solid var(--nvbds-line);
}

.nvbds-filters__form {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.nvbds-filters__search { position: relative; flex: 1 1 260px; min-width: 0; }

.nvbds-filters__search > i {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--nvbds-muted);
	font-size: .85rem;
	pointer-events: none;
}

.nvbds-filters__field { flex: 0 1 165px; }

.nvbds-filters .form-control,
.nvbds-filters .form-select,
.nvbds-filters .btn {
	height: 46px;
	border-radius: 10px;
	font-size: .92rem;
}

.nvbds-filters .form-control { padding-left: 40px; }
.nvbds-filters .btn { padding-inline: 1.4rem; }

.nvbds-filters__clear {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: .86rem;
	font-weight: 600;
	color: var(--nvbds-muted);
}

.nvbds-filters__clear:hover { color: var(--nvbds-red); }

.nvbds-filters__count { margin: 14px 0 0; font-size: .85rem; color: var(--nvbds-muted); }

@media (max-width: 575.98px) {
	.nvbds-filters__search { flex-basis: 100%; }
	.nvbds-filters__field { flex: 1 1 45%; }
	.nvbds-filters .btn { flex: 1 1 100%; }
}

/* ------------------------------------------------------------ Lead story */

.nvbds-lead {
	display: grid;
	grid-template-columns: 1fr;
	margin-bottom: 40px;
	background: #fff;
	border: 1px solid var(--nvbds-line);
	border-radius: 18px;
	overflow: hidden;
}

.nvbds-lead__thumb { display: block; position: relative; }

.nvbds-lead__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 220px;
	object-fit: cover;
}

.nvbds-lead__body { padding: 26px; }
.nvbds-lead__title { font-size: clamp(1.35rem, 2.6vw, 1.9rem); margin: 0 0 10px; }
.nvbds-lead__title a { color: var(--nvbds-ink); }
.nvbds-lead__title a:hover { color: var(--nvbds-red); text-decoration: none; }
.nvbds-lead__excerpt { color: var(--nvbds-muted); margin-bottom: 12px; }
.nvbds-lead .nvbds-post__meta { margin-bottom: 18px; }
.nvbds-lead .nvbds-post__meta span { margin: 0 4px; }

@media (min-width: 768px) {
	.nvbds-lead { grid-template-columns: 1.1fr 1fr; }
	.nvbds-lead__body { padding: 34px; align-self: center; }
}

/* ------------------------------------------------------- Card additions */

.nvbds-post-card__thumb { position: relative; display: block; }

.nvbds-post-card__thumb--empty {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 190px;
	background: linear-gradient(135deg, #eef0f4, #fff);
	color: #d0d5dd;
	font-size: 2rem;
}

.nvbds-post-card__flag { position: absolute; top: 12px; left: 12px; }

.nvbds-pill {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 3px 9px;
	background: #f2f4f7;
	border-radius: 999px;
	color: #475467;
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	line-height: 1.5;
}

.nvbds-pill--new { background: var(--nvbds-ink); color: #fff; }

/* --------------------------------------------------------- Notice board */

.nvbds-notice-list { display: flex; flex-direction: column; gap: 12px; }

.nvbds-notice {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 8px 16px;
	padding: 18px;
	background: #fff;
	border: 1px solid var(--nvbds-line);
	border-radius: var(--nvbds-radius);
	transition: border-color .15s ease, box-shadow .15s ease;
}

.nvbds-notice:hover { border-color: #d0d5dd; box-shadow: var(--nvbds-shadow); }

.nvbds-notice__date {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: none;
	width: 62px;
	height: 62px;
	background: var(--nvbds-bg);
	border: 1px solid var(--nvbds-line);
	border-radius: 12px;
}

.nvbds-notice__day { font-size: 1.35rem; font-weight: 800; color: var(--nvbds-ink); line-height: 1; }

.nvbds-notice__month {
	margin-top: 3px;
	font-size: .66rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--nvbds-muted);
}

.nvbds-notice.is-pinned .nvbds-notice__date { background: #eceff3; border-color: #d0d5dd; }

.nvbds-notice__body { min-width: 0; }
.nvbds-notice__pills { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 8px; }
.nvbds-notice__title { font-size: 1.05rem; margin: 0 0 6px; }
.nvbds-notice__title a { color: var(--nvbds-ink); }
.nvbds-notice__title a:hover { color: var(--nvbds-red); text-decoration: none; }

/* The whole row is the target; the download button below is lifted back out
   of it so it stays independently clickable. */
.nvbds-notice__title a::after { content: ''; position: absolute; inset: 0; }

.nvbds-notice__excerpt {
	margin: 0 0 8px;
	font-size: .9rem;
	color: var(--nvbds-muted);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.nvbds-notice__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 18px;
	margin: 0;
	font-size: .78rem;
	color: var(--nvbds-muted);
}

.nvbds-notice__meta i { margin-right: 6px; opacity: .7; }

.nvbds-notice__actions {
	position: relative;
	z-index: 1;
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	gap: 14px;
}

.nvbds-notice__size { opacity: .75; font-weight: 500; }
.nvbds-notice__open { color: var(--nvbds-muted); transition: transform .15s ease, color .15s ease; }
.nvbds-notice:hover .nvbds-notice__open { color: var(--nvbds-red); transform: translateX(3px); }

@media (min-width: 768px) {
	.nvbds-notice { grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; padding: 20px 22px; }
	.nvbds-notice__actions { grid-column: auto; }
}

@media (max-width: 767.98px) {
	.nvbds-notice__open { display: none; }
	.nvbds-notice__actions:empty { display: none; }
}

.nvbds-pinned { margin-bottom: 28px; }

.nvbds-pinned__title {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 12px;
	font-size: .76rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--nvbds-muted);
}

.nvbds-pinned .nvbds-notice { border-color: #d0d5dd; box-shadow: var(--nvbds-shadow-sm); }

/* --------------------------------------------------------------- Albums */

.nvbds-album {
	position: relative;
	background: var(--nvbds-ink);
	border-radius: var(--nvbds-radius);
	overflow: hidden;
}

.nvbds-album__link { display: block; position: relative; color: #fff; }
.nvbds-album__link:hover { color: #fff; text-decoration: none; }

.nvbds-album__link::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(16, 24, 40, .88) 0%, rgba(16, 24, 40, .3) 45%, rgba(16, 24, 40, 0) 72%);
}

.nvbds-album__thumb { display: block; aspect-ratio: 4 / 3; overflow: hidden; }

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

.nvbds-album:hover .nvbds-album__thumb img { transform: scale(1.05); }
.nvbds-album .nvbds-post-card__thumb--empty { height: 100%; }

.nvbds-album__count {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 11px;
	background: rgba(16, 24, 40, .55);
	border-radius: 999px;
	color: #fff;
	font-size: .76rem;
	font-weight: 700;
}

.nvbds-album__caption {
	position: absolute;
	z-index: 1;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding: 16px 18px;
}

.nvbds-album__title { color: #fff; font-size: 1.02rem; font-weight: 700; line-height: 1.3; }
.nvbds-album__date { font-size: .78rem; color: rgba(255, 255, 255, .82); }
/* The write-up sits above the grid, so it lines up with the grid's left edge
   rather than centring on the page like ordinary prose. */
.nvbds-album__intro { margin: 0 0 30px; max-width: 74ch; }

/* ---------------------------------------------------------- Photo grid */

.nvbds-photos {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
	gap: 14px;
	margin: 0;
	padding: 0;
}

.nvbds-photos__link {
	display: block;
	position: relative;
	aspect-ratio: 1;
	background: var(--nvbds-bg);
	border-radius: 12px;
	overflow: hidden;
}

.nvbds-photos__link img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.nvbds-photos__link:hover img { transform: scale(1.06); }

.nvbds-photos__zoom {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(16, 24, 40, .4);
	color: #fff;
	font-size: 1.1rem;
	opacity: 0;
	transition: opacity .2s ease;
}

.nvbds-photos__link:hover .nvbds-photos__zoom,
.nvbds-photos__link:focus-visible .nvbds-photos__zoom { opacity: 1; }

.nvbds-photos__caption { display: block; margin-top: 7px; font-size: .78rem; color: var(--nvbds-muted); }

.nvbds-photos__hint {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 18px 0 0;
	font-size: .84rem;
	color: var(--nvbds-muted);
}

@media (min-width: 768px) {
	.nvbds-photos { grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); }
}

/* ----------------------------------------------------------- Lightbox */

.nvbds-lightbox {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 64px 18px 48px;
	background: rgba(8, 11, 18, .95);
}

.nvbds-lightbox[hidden] { display: none; }

.nvbds-lightbox__figure {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	max-width: min(1200px, 100%);
	margin: 0;
}

.nvbds-lightbox__img {
	max-width: 100%;
	max-height: calc(100vh - 170px);
	object-fit: contain;
	border-radius: 8px;
}

.nvbds-lightbox__caption { margin: 0; color: #d0d5dd; font-size: .88rem; text-align: center; }

.nvbds-lightbox__count {
	position: absolute;
	top: 24px;
	left: 22px;
	color: #98a2b3;
	font-size: .82rem;
	font-weight: 600;
}

.nvbds-lightbox__btn {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	padding: 0;
	background: rgba(255, 255, 255, .12);
	border: 0;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	transition: background-color .15s ease;
}

.nvbds-lightbox__btn:hover { background: rgba(255, 255, 255, .26); }
.nvbds-lightbox__close { top: 16px; right: 16px; }
.nvbds-lightbox__prev { left: 14px; top: 50%; transform: translateY(-50%); }
.nvbds-lightbox__next { right: 14px; top: 50%; transform: translateY(-50%); }

body.nvbds-lightbox-open { overflow: hidden; }

/* ------------------------------------------------------ Side panels */

.nvbds-aside { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 16px; }

@media (max-width: 991.98px) {
	.nvbds-aside { position: static; }
}

.nvbds-panel {
	padding: 20px;
	background: var(--nvbds-bg);
	border: 1px solid var(--nvbds-line);
	border-radius: var(--nvbds-radius);
}

.nvbds-panel__title { display: flex; align-items: center; gap: 9px; margin: 0 0 14px; font-size: .98rem; }
.nvbds-panel__title i { color: var(--nvbds-red); font-size: .9em; }

.nvbds-panel__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
	font-size: .88rem;
	font-weight: 600;
}

.nvbds-files { list-style: none; display: flex; flex-direction: column; gap: 8px; margin: 0; padding: 0; }

.nvbds-file {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 11px 12px;
	background: #fff;
	border: 1px solid var(--nvbds-line);
	border-radius: 11px;
	color: var(--nvbds-ink);
}

.nvbds-file:hover { border-color: var(--nvbds-red); color: var(--nvbds-ink); text-decoration: none; }

.nvbds-file__icon {
	flex: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: var(--nvbds-bg);
	border-radius: 9px;
	color: var(--nvbds-red);
}

.nvbds-file__text { display: flex; flex-direction: column; min-width: 0; line-height: 1.35; }
.nvbds-file__text strong { font-size: .87rem; font-weight: 600; overflow-wrap: anywhere; }
.nvbds-file__text span { font-size: .72rem; color: var(--nvbds-muted); letter-spacing: .04em; }
.nvbds-file__go { margin-left: auto; color: var(--nvbds-muted); font-size: .8rem; }

/* --------------------------------------------------------------- Share */

.nvbds-share { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }

.nvbds-share__label {
	margin-right: 2px;
	font-size: .74rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .07em;
	color: var(--nvbds-muted);
}

.nvbds-share__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	background: #fff;
	border: 1px solid var(--nvbds-line);
	border-radius: 10px;
	color: var(--nvbds-body);
	cursor: pointer;
	transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.nvbds-share__btn:hover {
	background: var(--nvbds-red);
	border-color: var(--nvbds-red);
	color: #fff;
	text-decoration: none;
}

.nvbds-share__btn.is-copied { background: var(--nvbds-ink); border-color: var(--nvbds-ink); color: #fff; }

/* ------------------------------------------------------------- Related */

.nvbds-post__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

.nvbds-post__tags i { margin-right: 7px; color: var(--nvbds-muted); }
.nvbds-post__thumb figcaption { margin-top: 8px; font-size: .82rem; color: var(--nvbds-muted); }

.nvbds-related { margin-top: 50px; padding-top: 34px; border-top: 1px solid var(--nvbds-line); }
.nvbds-related .nvbds-section__head { margin-bottom: 22px; }
.nvbds-related .nvbds-section__head h2 { font-size: 1.25rem; }

@media print {
	.nvbds-topbar, .nvbds-header, .nvbds-ticker, .nvbds-footer, .nvbds-fab, .nvbds-to-top { display: none !important; }
	.nvbds-site { color: #000; }

	/* A printed notice should be the notice: no tabs, filters, sharing or
	   "read this too" trailers. */
	.nvbds-catnav, .nvbds-filters, .nvbds-aside, .nvbds-share,
	.nvbds-postnav, .nvbds-related, .nvbds-photos__hint,
	.nvbds-breadcrumbs, .nvbds-comments { display: none !important; }

	.nvbds-page-header { background: #fff; border: 0; padding-bottom: 0; }
	.nvbds-section { padding: 12px 0; }
	.nvbds-post--notice .nvbds-prose { max-width: none; }
}

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