/*
 * VansOnly Skin — Trucks & Cars (Pro)
 *
 * Only visual styling lives here.
 * Layout/structure lives in assets/css/main.css.
 *
 * Goal:
 * - A bold automotive look (asphalt/metal/hazard accents)
 * - Still fast: no images, no heavy JS
 * - Micro-interactions (subtle animations) where it adds polish
 */

:root {
	/* Base */
	--vo-bg: #f3f6f8;
	--vo-text: #0f141b;
	--vo-muted: #5f6f84;
	--vo-border: rgba(15, 20, 27, 0.12);

	/* Surfaces */
	--vo-surface: #ffffff;
	--vo-surface-2: #fbfcfd;
	--vo-surface-dark: #0b0d10;

	/* Brand accents (truck/auto vibe) */
	--vo-accent: #ff6a00; /* signal orange */
	--vo-accent-2: #ffd000; /* warm yellow */
	--vo-accent-rgb: 255, 106, 0;
	--vo-accent2-rgb: 255, 208, 0;

	/* Header */
	--vo-dark: #0b0d10;
	--vo-topbar: #0b0d10;

	/* Shape */
	--vo-radius-sm: 12px;
	--vo-radius: 16px;
	--vo-radius-lg: 22px;

	/* Shadows */
	--vo-shadow-sm: 0 10px 22px rgba(15, 20, 27, 0.08);
	--vo-shadow: 0 18px 46px rgba(15, 20, 27, 0.12);
	--vo-shadow-hover: 0 26px 70px rgba(15, 20, 27, 0.16);

	/* UI */
	--vo-ring: 0 0 0 3px rgba(var(--vo-accent-rgb), 0.28);
	--vo-hazard: repeating-linear-gradient(
		135deg,
		rgba(var(--vo-accent-rgb), 1) 0 14px,
		rgba(var(--vo-accent2-rgb), 1) 14px 28px
	);
}

/* ------------------------------------
 * Global polish
 * ------------------------------------ */

body.vansonly {
	background:
		radial-gradient(1100px 620px at 12% -8%, rgba(var(--vo-accent-rgb), 0.14), transparent 60%),
		radial-gradient(900px 560px at 95% -10%, rgba(var(--vo-accent2-rgb), 0.10), transparent 55%),
		linear-gradient(180deg, #ffffff 0%, var(--vo-bg) 28%, #eef2f5 100%);
	position: relative;
}

/* Subtle asphalt texture (no images) */
body.vansonly::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	background:
		repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.028) 0 2px, transparent 2px 12px),
		repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 22px);
	opacity: 0.55;
	z-index: 0;
}

/* Soft vignette to make content pop */
body.vansonly::after {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(1400px 740px at 50% 0%, rgba(0, 0, 0, 0.00) 40%, rgba(0, 0, 0, 0.06) 100%);
	z-index: 0;
}

.site-header,
.site-main,
.site-footer {
	position: relative;
	z-index: 1;
}

::selection {
	background: rgba(var(--vo-accent-rgb), 0.22);
}

:focus-visible {
	outline: 3px solid rgba(var(--vo-accent-rgb), 0.35);
	outline-offset: 3px;
	border-radius: 10px;
}

/* Reduce “blue link” feeling; add quality hover */
.site-main a {
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

.site-main a:hover {
	color: var(--vo-accent);
}

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

.site-header {
	box-shadow: 0 14px 38px rgba(0, 0, 0, 0.10);
}

.vo-topbar {
	background: linear-gradient(90deg, #07080a 0%, #121a28 45%, #07080a 100%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.78);
	position: relative;
	overflow: hidden;
}

.vo-topbar::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 9px);
	opacity: 0.33;
}

.vo-topbar::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background-image: var(--vo-hazard);
	background-size: 200px 100%;
	animation: vo-stripe-slide 10s linear infinite;
	opacity: 0.95;
}

@keyframes vo-stripe-slide {
	from { background-position: 0 0; }
	to { background-position: 200px 0; }
}

.vo-topbar__left {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 60%;
}

.vo-topbar-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.vo-topbar__link {
	color: rgba(255, 255, 255, 0.92);
	text-decoration: none;
	font-weight: 800;
	letter-spacing: 0.02em;
	position: relative;
	padding: 0.1rem 0;
}

.vo-topbar__link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(var(--vo-accent-rgb), 0.0), rgba(var(--vo-accent-rgb), 0.95), rgba(var(--vo-accent2-rgb), 0.85));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms ease;
	opacity: 0.95;
}

.vo-topbar__link:hover {
	color: #ffffff;
	text-decoration: none;
}

.vo-topbar__link:hover::after,
.vo-topbar__link:focus::after {
	transform: scaleX(1);
}

@media (max-width: 575px) {
	.vo-topbar__left { max-width: 52%; }
	.vo-topbar-menu { gap: 10px; }
}

.vo-navbar {
	background: linear-gradient(180deg, #0b0d10 0%, #111827 100%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	position: relative;
	overflow: hidden;
}

.vo-navbar::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 10px),
		radial-gradient(700px 200px at 20% 0%, rgba(var(--vo-accent-rgb), 0.16), transparent 70%);
	opacity: 0.6;
}

.vo-navbar::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background: linear-gradient(90deg, rgba(var(--vo-accent-rgb), 0.00), rgba(var(--vo-accent-rgb), 0.90), rgba(var(--vo-accent2-rgb), 0.90), rgba(var(--vo-accent-rgb), 0.00));
	opacity: 0.85;
}

.custom-logo {
	filter: drop-shadow(0 8px 12px rgba(0,0,0,0.25));
}

.vo-brand {
	font-weight: 950;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.navbar-dark .navbar-nav .nav-link {
	color: rgba(255, 255, 255, 0.90);
	font-weight: 800;
	letter-spacing: 0.03em;
	position: relative;
	padding: 0.85rem 0.9rem;
	transition: color 160ms ease;
}

.navbar-dark .navbar-nav .nav-link::after {
	content: "";
	position: absolute;
	left: 0.9rem;
	right: 0.9rem;
	bottom: 0.45rem;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(var(--vo-accent-rgb), 0.0), rgba(var(--vo-accent-rgb), 0.95), rgba(var(--vo-accent2-rgb), 0.85));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 220ms ease;
	opacity: 0.95;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
	color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link:focus::after {
	transform: scaleX(1);
}

/* WordPress adds current-menu-item/current_page_item on <li> */
.navbar-dark .navbar-nav .current-menu-item > .nav-link,
.navbar-dark .navbar-nav .current_page_item > .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
	color: #ffffff;
}

.navbar-dark .navbar-nav .current-menu-item > .nav-link::after,
.navbar-dark .navbar-nav .current_page_item > .nav-link::after,
.navbar-dark .navbar-nav .nav-link.active::after {
	transform: scaleX(1);
}

/* Search */
.vo-search .form-control {
	border-radius: var(--vo-radius-sm);
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.16);
	color: rgba(255, 255, 255, 0.92);
	transition: box-shadow 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.vo-search .form-control::placeholder {
	color: rgba(255, 255, 255, 0.60);
}

.vo-search .form-control:focus {
	background: rgba(255, 255, 255, 0.10);
	border-color: rgba(var(--vo-accent-rgb), 0.55);
	box-shadow: var(--vo-ring);
}

.vo-search .btn {
	border-radius: var(--vo-radius-sm);
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.vo-search .btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 18px rgba(0,0,0,0.18);
}

/* ------------------------------------
 * Section titles
 * ------------------------------------ */

.vo-section-title {
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 950;
	font-size: 0.88rem;
	position: relative;
	padding-left: 16px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.vo-section-title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
	height: 14px;
	border-radius: 4px;
	background: linear-gradient(180deg, var(--vo-accent), var(--vo-accent-2));
	box-shadow: 0 10px 18px rgba(var(--vo-accent-rgb), 0.16);
}

.vo-section-title::after {
	content: "";
	height: 1px;
	flex: 1;
	background: linear-gradient(90deg, rgba(var(--vo-accent-rgb), 0.45), rgba(15, 20, 27, 0.06), transparent);
}

/* ------------------------------------
 * Cards & lists
 * ------------------------------------ */

.vo-card,
.vo-sidebar .widget,
.vo-newsletter-box,
.vo-logo-slider,
.vo-event,
.vo-partner-grid__item,
.post-navigation a {
	border-radius: var(--vo-radius);
	border: 1px solid rgba(0, 0, 0, 0.08);
	background: linear-gradient(180deg, var(--vo-surface) 0%, var(--vo-surface-2) 100%);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.vo-card {
	position: relative;
	overflow: hidden;
	box-shadow: var(--vo-shadow-sm);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, filter 180ms ease;
}

.vo-card::after {
	content: "";
	position: absolute;
	inset: -1px;
	pointer-events: none;
	background:
		radial-gradient(520px 240px at 12% 0%, rgba(var(--vo-accent-rgb), 0.14), transparent 60%),
		radial-gradient(520px 240px at 110% 10%, rgba(var(--vo-accent2-rgb), 0.10), transparent 60%);
	opacity: 0;
	transition: opacity 180ms ease;
}

.vo-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--vo-shadow-hover);
	border-color: rgba(var(--vo-accent-rgb), 0.20);
}

.vo-card:hover::after {
	opacity: 1;
}

.vo-card__media {
	overflow: hidden;
}

.vo-img-cover {
	transition: transform 320ms ease, filter 320ms ease;
	transform-origin: center;
}

.vo-card:hover .vo-img-cover {
	transform: scale(1.035);
	filter: saturate(1.02) contrast(1.02);
}

.vo-card__body {
	position: relative;
	z-index: 1;
}

.vo-card__title {
	letter-spacing: 0.1px;
}

.vo-card__title a {
	text-decoration: none;
	transition: color 160ms ease;
}

.vo-card__title a:hover {
	text-decoration: none;
	color: var(--vo-accent);
}

/* Featured card: stronger frame + hazard top bar */
.vo-card--featured {
	border-radius: var(--vo-radius-lg);
	box-shadow: var(--vo-shadow);
	border-color: rgba(var(--vo-accent-rgb), 0.18);
}

.vo-card--featured .vo-card__media {
	position: relative;
}

.vo-card--featured .vo-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(11, 13, 16, 0.00) 50%, rgba(11, 13, 16, 0.34) 100%);
	opacity: 0.95;
}

.vo-card--featured .vo-card__body::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 4px;
	background-image: var(--vo-hazard);
	background-size: 220px 100%;
	animation: vo-stripe-slide 12s linear infinite;
	opacity: 0.95;
}

/* Excerpt */
.vo-excerpt {
	color: var(--vo-muted);
}

/* Badge */
.vo-badge {
	background: rgba(var(--vo-accent-rgb), 0.12);
	border: 1px solid rgba(var(--vo-accent-rgb), 0.22);
	color: #a33c00;
	font-weight: 900;
	letter-spacing: 0.02em;
}

.vo-badge::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: linear-gradient(180deg, var(--vo-accent), var(--vo-accent-2));
	box-shadow: 0 8px 14px rgba(var(--vo-accent-rgb), 0.25);
}

.vo-badge:hover {
	background: rgba(var(--vo-accent-rgb), 0.18);
	text-decoration: none;
}

/* Hero list */
.vo-hero-item {
	border-bottom-color: rgba(0, 0, 0, 0.10);
	border-radius: 14px;
	padding: 0.6rem 0.55rem;
	position: relative;
	transition: background-color 160ms ease, transform 160ms ease;
}

.vo-hero-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 12px;
	bottom: 12px;
	width: 3px;
	border-radius: 999px;
	background: linear-gradient(180deg, var(--vo-accent), var(--vo-accent-2));
	opacity: 0;
	transform: scaleY(0);
	transform-origin: top;
	transition: opacity 180ms ease, transform 180ms ease;
}

.vo-hero-item:hover {
	background: rgba(var(--vo-accent-rgb), 0.05);
	transform: translateY(-1px);
}

.vo-hero-item:hover::before {
	opacity: 1;
	transform: scaleY(1);
}

.vo-hero-item a:hover {
	color: var(--vo-accent);
}

/* News list */
.vo-list-item {
	transition: background-color 160ms ease, transform 160ms ease;
	border-bottom-color: rgba(0, 0, 0, 0.10);
	border-radius: 16px;
	padding-left: 0.55rem;
	padding-right: 0.55rem;
	position: relative;
}

.vo-list-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 14px;
	bottom: 14px;
	width: 3px;
	border-radius: 999px;
	background: linear-gradient(180deg, var(--vo-accent), var(--vo-accent-2));
	opacity: 0;
	transform: scaleY(0);
	transform-origin: top;
	transition: opacity 180ms ease, transform 180ms ease;
}

.vo-list-item:hover {
	background: rgba(var(--vo-accent-rgb), 0.04);
	transform: translateY(-1px);
}

.vo-list-item:hover::before {
	opacity: 1;
	transform: scaleY(1);
}

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

.vo-sidebar .widget {
	box-shadow: var(--vo-shadow-sm);
	position: relative;
	overflow: hidden;
}

.vo-sidebar .widget::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(520px 240px at 20% 0%, rgba(var(--vo-accent-rgb), 0.08), transparent 60%);
	opacity: 0.85;
}

.vo-sidebar .widget > * {
	position: relative;
	z-index: 1;
}

.vo-sidebar .widget-title {
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 950;
	font-size: 0.82rem;
	margin-bottom: 0.95rem;
	display: flex;
	align-items: center;
	gap: 10px;
}

.vo-sidebar .widget-title::after {
	content: "";
	height: 1px;
	flex: 1;
	background: linear-gradient(90deg, rgba(var(--vo-accent-rgb), 0.42), rgba(15, 20, 27, 0.06), transparent);
}

.vo-popular__item {
	transition: transform 160ms ease;
}

.vo-popular__item a {
	text-decoration: none;
	font-weight: 800;
}

.vo-popular__item a:hover {
	text-decoration: none;
	color: var(--vo-accent);
}

.vo-popular__item:hover {
	transform: translateX(2px);
}

/* ------------------------------------
 * Logo slider & partner grid
 * ------------------------------------ */

.vo-logo-slider {
	box-shadow: var(--vo-shadow-sm);
	position: relative;
}

/* Fade edges (supported browsers). If unsupported: no harm. */
.vo-logo-slider {
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.vo-logo-slider__track {
	will-change: transform;
}

.vo-logo-slider__item {
	filter: grayscale(1);
	opacity: 0.72;
	transform: translateZ(0);
	transition: opacity 160ms ease, filter 160ms ease, transform 160ms ease;
}

.vo-logo-slider__item:hover {
	filter: grayscale(0);
	opacity: 1;
	transform: translateY(-1px);
	text-decoration: none;
}

.vo-partner-grid__item {
	box-shadow: var(--vo-shadow-sm);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
	position: relative;
	overflow: hidden;
}

.vo-partner-grid__item::after {
	content: "";
	position: absolute;
	inset: -1px;
	pointer-events: none;
	background: radial-gradient(520px 240px at 12% 0%, rgba(var(--vo-accent-rgb), 0.10), transparent 60%);
	opacity: 0;
	transition: opacity 180ms ease;
}

.vo-partner-grid__item:hover {
	transform: translateY(-2px);
	box-shadow: var(--vo-shadow-hover);
	border-color: rgba(var(--vo-accent-rgb), 0.18);
	text-decoration: none;
}

.vo-partner-grid__item:hover::after {
	opacity: 1;
}

/* ------------------------------------
 * Newsletter (home + footer)
 * ------------------------------------ */

.vo-newsletter-box {
	background: linear-gradient(135deg, #0b0d10 0%, #121a28 55%, #0b0d10 100%);
	border-color: rgba(255, 255, 255, 0.14);
	color: rgba(255, 255, 255, 0.92);
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
}

/* Carbon-like overlay */
.vo-newsletter-box::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 11px),
		repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 13px);
	opacity: 0.35;
}

/* Animated glow blob */
.vo-newsletter-box::after {
	content: "";
	position: absolute;
	inset: -160px -160px auto auto;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle at 30% 30%, rgba(var(--vo-accent-rgb), 0.50), transparent 62%);
	filter: blur(2px);
	opacity: 0.70;
	pointer-events: none;
	animation: vo-glow 8s ease-in-out infinite;
}

@keyframes vo-glow {
	0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.70; }
	50% { transform: translate3d(-18px, 10px, 0) scale(1.06); opacity: 0.82; }
	100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.70; }
}

.vo-newsletter-box .text-muted {
	color: rgba(255, 255, 255, 0.72) !important;
}

.vo-newsletter-box h2,
.vo-newsletter-box h3 {
	font-weight: 950;
	letter-spacing: 0.02em;
}

.vo-newsletter-form {
	position: relative;
	z-index: 1;
}

.vo-newsletter-form .form-control {
	border-radius: var(--vo-radius-sm);
	background: rgba(255, 255, 255, 0.10);
	border-color: rgba(255, 255, 255, 0.18);
	color: rgba(255, 255, 255, 0.94);
	transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.vo-newsletter-form .form-control::placeholder {
	color: rgba(255, 255, 255, 0.65);
}

.vo-newsletter-form .form-control:focus {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(var(--vo-accent-rgb), 0.60);
	box-shadow: var(--vo-ring);
}

/* Make the CTA button feel premium */
.vo-newsletter-form .btn.btn-dark {
	border-radius: var(--vo-radius-sm);
	background: linear-gradient(180deg, var(--vo-accent) 0%, #ff4d00 100%);
	border-color: rgba(var(--vo-accent-rgb), 0.55);
	color: #10131a;
	font-weight: 950;
	letter-spacing: 0.02em;
	position: relative;
	overflow: hidden;
	box-shadow: 0 18px 34px rgba(var(--vo-accent-rgb), 0.18);
	transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

/* Shine sweep */
.vo-newsletter-form .btn.btn-dark::after {
	content: "";
	position: absolute;
	top: -50%;
	left: -120%;
	width: 80%;
	height: 200%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
	transform: rotate(20deg);
	opacity: 0.0;
}

.vo-newsletter-form .btn.btn-dark:hover {
	transform: translateY(-1px);
	filter: brightness(1.05);
	box-shadow: 0 24px 52px rgba(var(--vo-accent-rgb), 0.22);
}

.vo-newsletter-form .btn.btn-dark:hover::after {
	animation: vo-shine 700ms ease;
}

@keyframes vo-shine {
	0% { left: -120%; opacity: 0.0; }
	30% { opacity: 0.9; }
	100% { left: 140%; opacity: 0.0; }
}

/* Alerts inside newsletter */
.vo-newsletter-form .alert {
	border-radius: var(--vo-radius-sm);
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.92);
}

/* Footer styling */
.site-footer {
	position: relative;
	color: rgba(255, 255, 255, 0.84);
}

.site-footer::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 4px;
	background-image: var(--vo-hazard);
	background-size: 240px 100%;
	animation: vo-stripe-slide 12s linear infinite;
	opacity: 0.95;
}

.vo-footer-top {
	background: linear-gradient(180deg, #0b0d10 0%, #0f1522 100%);
}

.vo-footer-bottom {
	background: #07080a;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vo-footer-links a {
	color: rgba(255, 255, 255, 0.80);
	text-decoration: none;
	font-weight: 800;
}

.vo-footer-links a:hover {
	color: #ffffff;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

/* ------------------------------------
 * Buttons (site-wide)
 * ------------------------------------ */

.btn {
	transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.btn-outline-dark {
	border-color: rgba(var(--vo-accent-rgb), 0.45);
	color: #10131a;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
	background: linear-gradient(180deg, rgba(var(--vo-accent-rgb), 0.14), rgba(var(--vo-accent2-rgb), 0.10));
	border-color: rgba(var(--vo-accent-rgb), 0.70);
	color: #10131a;
	box-shadow: 0 16px 28px rgba(var(--vo-accent-rgb), 0.10);
	transform: translateY(-1px);
}

/* ------------------------------------
 * Agenda
 * ------------------------------------ */

.vo-event {
	box-shadow: var(--vo-shadow-sm);
	border-color: rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.vo-event__date {
	font-weight: 950;
}

.vo-event__link {
	position: relative;
}

.vo-event__link:hover {
	text-decoration: none;
	background: rgba(var(--vo-accent-rgb), 0.05);
}

/* ------------------------------------
 * Pagination
 * ------------------------------------ */

.navigation.pagination .page-numbers {
	border-radius: 999px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	padding: 0.45rem 0.75rem;
	text-decoration: none;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	box-shadow: 0 1px 0 rgba(0,0,0,0.04);
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.navigation.pagination .page-numbers:hover {
	transform: translateY(-1px);
	box-shadow: var(--vo-shadow-sm);
	border-color: rgba(var(--vo-accent-rgb), 0.30);
	text-decoration: none;
}

.navigation.pagination .page-numbers.current {
	background: linear-gradient(180deg, var(--vo-accent), #ff4d00);
	border-color: rgba(var(--vo-accent-rgb), 0.55);
	color: #10131a;
	font-weight: 950;
}

/* ------------------------------------
 * Article typography
 * ------------------------------------ */

.vo-article__title {
	letter-spacing: 0.2px;
	font-weight: 950;
}

.vo-meta a {
	color: inherit;
	text-decoration: none;
	font-weight: 800;
}

.vo-meta a:hover {
	color: var(--vo-accent);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.vo-content {
	font-size: 1.06rem;
	line-height: 1.82;
}

.vo-content a {
	color: var(--vo-accent);
	text-decoration-color: rgba(var(--vo-accent-rgb), 0.55);
}

.vo-content blockquote {
	border-left: 4px solid rgba(var(--vo-accent-rgb), 0.55);
	padding-left: 1rem;
	color: rgba(15, 20, 27, 0.84);
	background: rgba(var(--vo-accent-rgb), 0.04);
	border-radius: var(--vo-radius-sm);
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
}

/* ------------------------------------
 * Reduced motion
 * ------------------------------------ */

@media (prefers-reduced-motion: reduce) {
	.vo-topbar::after,
	.vo-card--featured .vo-card__body::before,
	.site-footer::before,
	.vo-logo-slider__track,
	.vo-newsletter-box::after,
	.vo-newsletter-form .btn.btn-dark:hover::after {
		animation: none !important;
	}

	.vo-card,
	.vo-img-cover,
	.vo-hero-item,
	.vo-list-item,
	.vo-popular__item,
	.vo-partner-grid__item,
	.btn,
	.vo-topbar__link::after,
	.navbar-dark .navbar-nav .nav-link::after {
		transition: none !important;
	}
}
