/*
 * Soleil Skin:
 * Site-specific visual layer for variable Thema.
 * Keep Origin structure and block contracts intact.
 */

:root {
	--soleil-color-cosmos: #05070f;
	--soleil-color-cosmos-deep: #090d18;
	--soleil-color-cosmos-soft: #111827;
	--soleil-color-text: #f8fafc;
	--soleil-color-muted: #c9d2df;
	--soleil-color-dim: #8b97a8;
	--soleil-color-accent: #c93a32;
	--soleil-color-accent-bright: #ef5a4f;
	--soleil-color-line: rgba(255, 255, 255, 0.14);
	--soleil-color-panel: rgba(255, 255, 255, 0.06);
	--soleil-bg-base: #05070f;
	--soleil-bg-deep: #090d18;
	--soleil-bg-void: #03040a;
	--soleil-bg-star-opacity: 0.36;
	--soleil-bg-nebula-opacity: 0.18;
	--soleil-font-heading: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Times New Roman", serif;
	--soleil-shadow-soft: 0 28px 80px rgba(0, 0, 0, 0.34);
	--soleil-radius: 18px;
	--soleil-content-wide: 1120px;

	--vt-color-text: var(--soleil-color-text);
	--vt-color-muted: var(--soleil-color-muted);
	--vt-color-border: var(--soleil-color-line);
	--vt-color-bg: var(--soleil-color-cosmos);
	--vt-color-surface: var(--soleil-color-cosmos-soft);
	--vt-color-main: var(--soleil-color-text);
	--vt-color-accent: var(--soleil-color-accent);
	--vt-color-button: var(--soleil-color-accent);
	--vt-content-width: var(--soleil-content-wide);
}

html {
	background: var(--soleil-bg-void);
}

body {
	position: relative;
	isolation: isolate;
	min-height: 100vh;
	background:
		radial-gradient(circle at 18% 8%, rgba(201, 58, 50, 0.12), transparent 30rem),
		radial-gradient(circle at 82% 16%, rgba(130, 150, 190, 0.1), transparent 26rem),
		radial-gradient(circle at 50% 96%, rgba(255, 255, 255, 0.04), transparent 34rem),
		linear-gradient(180deg, var(--soleil-bg-base) 0%, var(--soleil-bg-deep) 46%, var(--soleil-bg-void) 100%);
	color: var(--soleil-color-text);
}

body::before,
body::after {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	content: "";
}

body::before {
	background-image: url("../images/soleil-stars.svg");
	background-repeat: repeat;
	background-size: 720px 720px;
	background-position: 0 0;
	opacity: var(--soleil-bg-star-opacity);
}

body::after {
	background:
		radial-gradient(ellipse at 78% 24%, rgba(255, 255, 255, 0.05), transparent 24rem),
		radial-gradient(ellipse at 14% 62%, rgba(201, 58, 50, 0.08), transparent 30rem);
	opacity: var(--soleil-bg-nebula-opacity);
}

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 999;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

body.admin-bar .site-header {
	top: 32px;
}

.site-header__inner {
	display: flex;
	align-items: stretch;
	width: 100%;
	padding-top: 0;
	padding-bottom: 0;
	gap: clamp(16px, 3vw, 40px);
}

.site-header .site-nav {
	position: relative;
	z-index: 21;
	align-self: stretch;
	margin-left: auto;
	background: transparent;
}

.site-branding {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	color: var(--soleil-color-text);
}

.site-title {
	font-family: var(--soleil-font-heading);
	font-weight: 600;
	letter-spacing: 0;
}

.site-title a,
.site-branding a {
	color: #373737;
	text-decoration: none;
}

.site-nav,
.main-navigation {
	color: var(--soleil-color-text);
}

.site-nav__list,
.main-navigation .menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav__list .menu-item,
.main-navigation .menu-item {
	position: relative;
	display: block;
}

.site-nav__list a,
.main-navigation a {
	position: relative;
	display: block;
	color: rgba(248, 250, 252, 0.78);
	font-weight: 600;
	letter-spacing: 0;
	text-decoration: none;
	transition:
		background-color 0.2s ease,
		color 0.2s ease,
		text-shadow 0.2s ease;
}

.site-nav__list a::after,
.main-navigation a::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 1px;
	background: currentColor;
	opacity: 0;
	transform: scaleX(0.42);
	transform-origin: center;
	transition:
		opacity 0.2s ease,
		transform 0.2s ease;
	content: "";
}

.site-nav__list .sub-menu a::after,
.main-navigation ul ul a::after {
	content: none;
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible,
.main-navigation a:hover,
.main-navigation a:focus-visible {
	color: rgba(255, 255, 255, 0.96);
	text-shadow: 0 0 10px rgba(239, 90, 79, 0.18);
}

.site-nav__list a:hover::after,
.site-nav__list a:focus-visible::after,
.main-navigation a:hover::after,
.main-navigation a:focus-visible::after {
	color: var(--soleil-color-accent-bright);
	opacity: 0.5;
	transform: scaleX(1);
}

.site-nav__list .current-menu-item > a,
.site-nav__list .current-menu-ancestor > a,
.site-nav__list .current_page_item > a,
.site-nav__list .current_page_ancestor > a,
.main-navigation .current-menu-item > a,
.main-navigation .current-menu-ancestor > a,
.main-navigation .current_page_item > a,
.main-navigation .current_page_ancestor > a {
	color: var(--soleil-color-accent-bright);
	background: rgba(201, 58, 50, 0.08);
	text-shadow: none;
}

.site-nav__list .current-menu-item > a::after,
.site-nav__list .current-menu-ancestor > a::after,
.site-nav__list .current_page_item > a::after,
.site-nav__list .current_page_ancestor > a::after,
.main-navigation .current-menu-item > a::after,
.main-navigation .current-menu-ancestor > a::after,
.main-navigation .current_page_item > a::after,
.main-navigation .current_page_ancestor > a::after {
	opacity: 0.76;
	transform: scaleX(1);
}

.site-nav__list .sub-menu,
.main-navigation ul ul {
	width: max-content;
	min-width: 220px;
	margin: 0;
	padding: 0.35rem 0;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0)),
		rgba(5, 7, 15, 0.92);
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
	list-style: none;
	backdrop-filter: blur(10px);
}

.site-nav__list .sub-menu .menu-item,
.main-navigation ul ul .menu-item {
	width: 100%;
}

.site-nav__list .sub-menu a,
.main-navigation ul ul a {
	box-sizing: border-box;
	width: 100%;
	padding: 0.72rem 0.95rem;
	color: rgba(248, 250, 252, 0.8);
	line-height: 1.45;
	white-space: nowrap;
}

.site-nav__list .sub-menu a:hover,
.site-nav__list .sub-menu a:focus-visible,
.main-navigation ul ul a:hover,
.main-navigation ul ul a:focus-visible {
	background: rgba(201, 58, 50, 0.12);
	color: rgba(255, 255, 255, 0.96);
	text-shadow: none;
}

.site-header .site-nav {
	color: #373737;
}

.site-header .site-nav__list {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 100%;
	margin: 0;
	padding: 0;
	background: transparent;
	list-style: none;
}

.site-header .site-nav__list > .menu-item > a {
	display: flex;
	align-items: center;
	height: 100%;
	padding-top: 1.8rem;
	padding-bottom: 1.8rem;
	color: #373737;
	background: transparent;
	text-decoration: none;
	text-shadow: none;
}

.site-header .site-nav__list > .menu-item {
	display: flex;
	height: 100%;
}

.site-header .site-nav__list > .menu-item > a::after {
	background: var(--soleil-color-accent-bright);
	opacity: 0;
}

.site-header .site-nav__list > .menu-item > a:hover,
.site-header .site-nav__list > .menu-item > a:focus-visible {
	color: var(--soleil-color-accent);
	background: transparent;
	text-shadow: none;
}

.site-header .site-nav__list > .menu-item > a:hover::after,
.site-header .site-nav__list > .menu-item > a:focus-visible::after {
	opacity: 0.52;
	transform: scaleX(1);
}

.site-header .site-nav__list > .current-menu-item > a,
.site-header .site-nav__list > .current-menu-ancestor > a,
.site-header .site-nav__list > .current_page_item > a,
.site-header .site-nav__list > .current_page_ancestor > a {
	color: var(--soleil-color-accent);
	background: transparent;
	text-shadow: none;
}

.site-header .site-nav__list > .current-menu-item > a::after,
.site-header .site-nav__list > .current-menu-ancestor > a::after,
.site-header .site-nav__list > .current_page_item > a::after,
.site-header .site-nav__list > .current_page_ancestor > a::after {
	opacity: 0.78;
	transform: scaleX(1);
}

.site-header .site-nav__list > .menu-item:last-child > a {
	background: #ff1f1f;
	color: #ffffff;
}

.site-header .site-nav__list > .menu-item:last-child > a:hover,
.site-header .site-nav__list > .menu-item:last-child > a:focus-visible,
.site-header .site-nav__list > .menu-item:last-child.current-menu-item > a,
.site-header .site-nav__list > .menu-item:last-child.current-menu-ancestor > a,
.site-header .site-nav__list > .menu-item:last-child.current_page_item > a,
.site-header .site-nav__list > .menu-item:last-child.current_page_ancestor > a {
	background: #e21b1b;
	color: #ffffff;
	text-shadow: none;
}

.site-header .site-nav__list > .menu-item:last-child > a::after {
	content: none;
}

.site-header .site-nav__list > .menu-item > .sub-menu {
	border: 1px solid rgba(255, 255, 255, 0.1);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0)),
		rgba(5, 7, 15, 0.92);
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(10px);
}

.site-header .site-nav__list .sub-menu a {
	color: rgba(248, 250, 252, 0.8);
	background: transparent;
	text-decoration: none;
	text-shadow: none;
}

.site-header .site-nav__list .sub-menu a:hover,
.site-header .site-nav__list .sub-menu a:focus-visible {
	background: rgba(201, 58, 50, 0.12);
	color: rgba(255, 255, 255, 0.96);
	text-shadow: none;
}

.site-header .site-nav__list .sub-menu .current-menu-item > a,
.site-header .site-nav__list .sub-menu .current_page_item > a {
	background: rgba(201, 58, 50, 0.1);
	color: var(--soleil-color-accent-bright);
}

.site-header .main-navigation li {
	position: relative;
}

.site-header .main-navigation ul ul {
	pointer-events: none;
}

@media (min-width: 720px) {
	.site-header .site-nav__list {
		display: flex;
		flex-wrap: nowrap;
		align-self: stretch;
		align-items: center;
		gap: 0;
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.site-header__inner {
		align-items: stretch;
	}

	.site-header .site-branding {
		align-items: center;
		padding-left: clamp(24px, 3vw, 48px);
	}

	.site-header .site-nav__list .menu-item {
		position: relative;
	}

	.site-header .site-nav__list > .menu-item {
		align-self: stretch;
		display: flex;
	}

	.site-header .site-nav__list > .menu-item > a {
		align-self: stretch;
		padding-inline: clamp(20px, 2vw, 32px);
	}

	.site-header .site-nav__list > .menu-item > .sub-menu {
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 20;
		visibility: hidden;
		opacity: 0;
		margin: 0;
		padding: 0.35rem 0;
		transform: none;
		pointer-events: none;
	}

	.site-header .site-nav__list .sub-menu .sub-menu {
		position: absolute;
		top: 0;
		left: 100%;
		z-index: 21;
		visibility: hidden;
		opacity: 0;
		margin: 0;
		transform: none;
		pointer-events: none;
	}

	.site-header .site-nav__list .menu-item:hover > .sub-menu,
	.site-header .site-nav__list .menu-item:focus-within > .sub-menu {
		visibility: visible;
		opacity: 1;
		pointer-events: auto;
	}

	.site-header .site-nav__list .sub-menu a {
		display: block;
		box-sizing: border-box;
		width: 100%;
	}

	.site-nav__list > .menu-item > .sub-menu,
	.main-navigation .menu > .menu-item > ul {
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 20;
		visibility: hidden;
		opacity: 0;
		margin: 0;
		transform: none;
		pointer-events: none;
		transition:
			opacity 0.18s ease,
			visibility 0.18s ease;
	}

	.site-nav__list .sub-menu .sub-menu,
	.main-navigation ul ul ul {
		position: absolute;
		top: 0;
		left: 100%;
		z-index: 21;
		visibility: hidden;
		opacity: 0;
		margin: 0;
		transform: none;
		pointer-events: none;
		transition:
			opacity 0.18s ease,
			visibility 0.18s ease;
	}

	.site-nav__list .menu-item:hover > .sub-menu,
	.site-nav__list .menu-item:focus-within > .sub-menu,
	.main-navigation li:hover > ul,
	.main-navigation li:focus-within > ul {
		visibility: visible;
		opacity: 1;
		pointer-events: auto;
	}
}

@media (max-width: 767px) {
	.site-header {
		z-index: 999;
		border-bottom-color: rgba(5, 7, 15, 0.08);
		background: rgba(255, 255, 255, 0.94);
		-webkit-backdrop-filter: blur(12px);
		backdrop-filter: blur(12px);
	}

	.site-header__inner {
		position: relative;
		display: flex;
		align-items: center;
		width: min(100% - 24px, var(--soleil-content-wide));
		min-height: 64px;
		margin-inline: auto;
		padding-block: 8px;
		gap: 8px;
	}

	.site-branding {
		order: 1;
		min-width: 0;
		margin-right: auto;
	}

	.site-logo img {
		max-width: min(36vw, 148px);
		max-height: 42px;
		object-fit: contain;
	}

	.site-title {
		font-size: 1rem;
		line-height: 1.2;
	}

	.site-header .site-nav {
		position: static;
		order: 2;
		display: block !important;
		flex: 0 0 auto;
		align-self: center;
		margin-left: auto;
		color: #373737;
	}

	.site-header .site-nav__list {
		display: flex;
		align-items: center;
		height: auto;
		margin: 0;
		padding: 0;
		gap: 0;
	}

	.site-header .site-nav__list > .menu-item {
		display: none;
		height: auto;
	}

	.site-header .site-nav__list > .menu-item:last-child {
		display: flex;
	}

	.site-header .site-nav__list > .menu-item:last-child > a {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		max-width: min(38vw, 150px);
		min-height: 38px;
		padding: 0.55rem 0.85rem;
		border: 1px solid rgba(201, 58, 50, 0.48);
		border-radius: 999px;
		background: rgba(255, 255, 255, 0.72);
		color: var(--soleil-color-accent);
		font-size: clamp(0.72rem, 2.8vw, 0.82rem);
		font-weight: 700;
		line-height: 1.2;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		text-shadow: none;
	}

	.site-header .site-nav__list > .menu-item:last-child > a:hover,
	.site-header .site-nav__list > .menu-item:last-child > a:focus-visible {
		border-color: var(--soleil-color-accent);
		background: rgba(201, 58, 50, 0.08);
		color: var(--soleil-color-accent);
	}

	.site-header .site-nav__list > .menu-item:last-child > a::after {
		content: none;
	}

	.site-nav-toggle {
		position: relative;
		order: 3;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex: 0 0 44px;
		width: 44px;
		height: 44px;
		min-height: 44px;
		margin: 0;
		padding: 0;
		border: 1px solid rgba(5, 7, 15, 0.12);
		border-radius: 999px;
		background:
			radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.98) 0 48%, rgba(245, 246, 248, 0.96) 100%);
		color: #373737;
		box-shadow:
			0 10px 24px rgba(5, 7, 15, 0.08),
			inset 0 1px 0 rgba(255, 255, 255, 0.92);
		isolation: isolate;
			transition:
				border-color 0.18s ease,
				background-color 0.18s ease,
				color 0.18s ease,
				transform 0.18s ease,
				box-shadow 0.18s ease;
	}

	.site-nav-toggle::before {
		position: absolute;
		inset: 5px;
		z-index: 0;
		border: 1px solid rgba(5, 7, 15, 0.08);
		border-radius: 50%;
		background:
			conic-gradient(from 32deg, transparent 0 22%, rgba(55, 55, 55, 0.2) 23% 29%, transparent 30% 62%, rgba(55, 55, 55, 0.14) 63% 68%, transparent 69% 100%);
		opacity: 0.9;
		content: "";
		transition:
			border-color 0.18s ease,
			background 0.18s ease,
			opacity 0.18s ease,
			transform 0.18s ease;
	}

	.site-nav-toggle:hover,
	.site-nav-toggle:focus-visible,
	.site-header.is-navigation-open .site-nav-toggle {
		border-color: rgba(201, 58, 50, 0.58);
		background:
			radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.98) 0 46%, rgba(255, 247, 246, 0.96) 100%);
		color: var(--soleil-color-accent);
		box-shadow:
			0 12px 28px rgba(201, 58, 50, 0.16),
			inset 0 1px 0 rgba(255, 255, 255, 0.96);
	}

	.site-nav-toggle:hover::before,
	.site-nav-toggle:focus-visible::before,
	.site-header.is-navigation-open .site-nav-toggle::before {
		border-color: rgba(201, 58, 50, 0.18);
		background:
			conic-gradient(from 38deg, transparent 0 18%, rgba(201, 58, 50, 0.42) 19% 27%, transparent 28% 58%, rgba(201, 58, 50, 0.26) 59% 66%, transparent 67% 100%);
		opacity: 1;
		transform: rotate(18deg);
	}

	.site-nav-toggle:hover,
	.site-nav-toggle:focus-visible {
		transform: translateY(-1px);
	}

	.site-nav-toggle__label {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
		white-space: nowrap;
		clip-path: inset(50%);
	}

	.site-nav-toggle__icon {
		position: relative;
		z-index: 1;
		display: block;
		width: 24px;
		height: 24px;
		border: 1.5px solid rgba(55, 55, 55, 0.72);
		border-radius: 999px;
		opacity: 0.9;
		transition:
			border-color 0.18s ease,
			opacity 0.18s ease,
			transform 0.18s ease;
	}

	.site-nav-toggle__icon::before,
	.site-nav-toggle__icon::after {
		position: absolute;
		inset: 50% auto auto 50%;
		border-radius: 999px;
		content: "";
		transform: translate(-50%, -50%);
	}

	.site-nav-toggle__icon::before {
		width: 15px;
		height: 9px;
		border: 1.4px solid currentColor;
		border-right-color: transparent;
		border-left-color: transparent;
		opacity: 0.74;
		transform: translate(-50%, -50%) rotate(-22deg);
	}

	.site-nav-toggle__icon::after {
		width: 4.5px;
		height: 4.5px;
		background: currentColor;
		box-shadow:
			8px -1px 0 -1.5px currentColor,
			-7px -5px 0 -1.5px currentColor,
			-1px 8px 0 -1.8px currentColor;
		transition:
			box-shadow 0.18s ease,
			transform 0.18s ease;
	}

	.site-nav-toggle:hover .site-nav-toggle__icon,
	.site-nav-toggle:focus-visible .site-nav-toggle__icon,
	.site-header.is-navigation-open .site-nav-toggle__icon {
		border-color: rgba(201, 58, 50, 0.72);
		opacity: 1;
		transform: rotate(18deg);
	}

	.site-header.is-navigation-open .site-nav-toggle__icon {
		transform: rotate(42deg) scale(1.04);
	}

	.site-header.is-navigation-open .site-nav-toggle__icon::before {
		width: 16px;
		height: 16px;
		border-color: currentColor;
		border-top-color: transparent;
		transform: translate(-50%, -50%) rotate(18deg);
	}

	.site-header.is-navigation-open .site-nav-toggle__icon::after {
		transform: translate(-50%, -50%) scale(1.16);
		box-shadow:
			0 0 0 4px rgba(201, 58, 50, 0.12),
			8px -1px 0 -1.5px currentColor,
			-7px -5px 0 -1.5px currentColor;
	}

	.site-nav-toggle__line {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
		clip-path: inset(50%);
	}

	.variable-thema-navigation-ready .site-header.is-navigation-open .site-nav,
		.site-header.is-navigation-open .site-nav {
			position: absolute;
			top: calc(100% + 8px);
			right: 12px;
			left: 12px;
			z-index: 30;
			box-sizing: border-box;
			display: block !important;
			max-height: calc(100vh - 88px - env(safe-area-inset-bottom));
			max-height: calc(100dvh - 88px - env(safe-area-inset-bottom));
			margin: 0;
			padding: 0.65rem;
			border: 1px solid rgba(5, 7, 15, 0.1);
			border-radius: 16px;
			background: rgba(255, 255, 255, 0.98);
			box-shadow: 0 20px 48px rgba(5, 7, 15, 0.16);
			overflow-y: auto;
			overscroll-behavior: contain;
			-webkit-overflow-scrolling: touch;
		}

	.site-header.is-navigation-open .site-nav__list {
		display: grid;
		align-items: stretch;
		justify-content: stretch;
		gap: 4px;
	}

	.site-header.is-navigation-open .site-nav__list > .menu-item {
		display: block;
		height: auto;
		min-height: 0;
		align-items: stretch;
		justify-content: flex-start;
	}

	.site-header.is-navigation-open .site-nav__list > .menu-item-has-children {
		display: block;
		height: auto;
		min-height: 0;
		align-items: stretch;
		justify-content: flex-start;
		margin: 0;
		padding: 0;
	}

	.site-header.is-navigation-open .site-nav li,
	.site-header.is-navigation-open .site-nav__list li {
		height: auto;
		min-height: 0;
		max-height: none;
		margin: 0;
		padding: 0;
	}

	.site-header.is-navigation-open .site-nav__list .menu-item-has-children > a {
		display: block;
		width: 100%;
		height: auto;
		min-height: 0;
		padding-bottom: 0.78rem;
	}

	.site-header.is-navigation-open .site-nav__list > .menu-item > a,
	.site-header.is-navigation-open .site-nav__list > .menu-item:last-child > a {
		display: flex;
		justify-content: flex-start;
		width: 100%;
		min-height: 44px;
		padding: 0.78rem 0.9rem;
		border: 0;
		border-radius: 10px;
		background: transparent;
		color: #373737;
		font-size: 0.92rem;
		font-weight: 600;
	}

	.site-header.is-navigation-open .site-nav__list > .menu-item-has-children > a {
		display: block;
		align-items: stretch;
		justify-content: flex-start;
		height: auto;
		min-height: 0;
		padding-bottom: 0.78rem;
	}

	.site-header.is-navigation-open .site-nav__list > .menu-item > a:hover,
	.site-header.is-navigation-open .site-nav__list > .menu-item > a:focus-visible {
		background: rgba(201, 58, 50, 0.08);
		color: var(--soleil-color-accent);
	}

	.site-header.is-navigation-open .site-nav__list .menu-item-has-children > a {
		border-bottom: 1px solid rgba(5, 7, 15, 0.08);
		border-bottom-right-radius: 0;
		border-bottom-left-radius: 0;
	}

	.site-header.is-navigation-open .site-nav__list .menu-item-has-children.current-menu-item > a,
	.site-header.is-navigation-open .site-nav__list .menu-item-has-children.current-menu-ancestor > a {
		background: transparent;
	}

		.site-header.is-navigation-open .site-nav__list .sub-menu,
		.site-header.is-navigation-open .main-navigation ul ul {
			position: static;
			z-index: auto;
			display: grid;
			visibility: visible;
			width: 100%;
			min-width: 0;
			margin: 0 0 0.35rem;
			padding: 0.2rem 0 0.2rem 1.25rem;
			border: 0;
			border-left: 2px solid rgba(201, 58, 50, 0.18);
			border-radius: 0;
			background: transparent;
			box-shadow: none;
			opacity: 1;
			transform: none;
			pointer-events: auto;
			backdrop-filter: none;
			gap: 2px;
	}

	.site-header.is-navigation-open .site-nav__list .sub-menu .sub-menu {
			position: static;
			display: grid;
			visibility: visible;
			width: 100%;
			min-width: 0;
			margin: 0.25rem 0 0.25rem;
			padding: 0.2rem 0 0.2rem 2.25rem;
			border: 0;
			border-left: 2px solid rgba(201, 58, 50, 0.14);
			border-radius: 0;
			background: transparent;
			opacity: 1;
			transform: none;
			pointer-events: auto;
			backdrop-filter: none;
			box-shadow: none;
			gap: 2px;
		}

	.site-header.is-navigation-open .site-nav__list .sub-menu .sub-menu .menu-item {
		border-top-color: rgba(5, 7, 15, 0.04);
	}

		.site-header.is-navigation-open .site-nav__list .sub-menu .sub-menu a {
			padding-left: 0;
			font-size: 0.84rem;
			color: rgba(55, 55, 55, 0.76);
		}

		.site-header.is-navigation-open .site-nav__list .sub-menu li {
			position: relative;
			display: block;
			width: 100%;
			border-top: 0;
		}

	.site-header.is-navigation-open .site-nav__list .sub-menu li:first-child {
		border-top: 0;
	}

	.site-header.is-navigation-open .site-nav__list .sub-menu a {
			display: block;
			width: 100%;
			min-height: 40px;
			padding: 0.62rem 0;
			border-radius: 4px;
			background: transparent;
			color: rgba(55, 55, 55, 0.82);
			font-size: 0.86rem;
			font-weight: 500;
			line-height: 1.35;
		white-space: normal;
		text-shadow: none;
	}

		.site-header.is-navigation-open .site-nav__list .sub-menu a:hover,
		.site-header.is-navigation-open .site-nav__list .sub-menu a:focus-visible {
			background: rgba(201, 58, 50, 0.06);
			color: var(--soleil-color-accent);
		}

	.site-header.is-navigation-open .site-nav .sub-menu,
	.site-header.is-navigation-open .site-nav .sub-menu .sub-menu,
	.site-header.is-navigation-open .site-nav__list .sub-menu,
	.site-header.is-navigation-open .site-nav__list .sub-menu .sub-menu,
	.site-header.is-navigation-open .main-navigation ul ul,
	.site-header.is-navigation-open .main-navigation ul ul ul {
		position: static;
		display: block;
		visibility: visible;
		opacity: 1;
		transform: none;
		pointer-events: auto;
		width: 100%;
		min-width: 0;
		max-width: none;
		margin: 0;
		box-shadow: none;
	}

		.site-header.is-navigation-open .site-nav__list > .menu-item > .sub-menu {
			padding: 0.2rem 0 0.2rem 1.25rem;
			border: 0;
			border-left: 2px solid rgba(201, 58, 50, 0.18);
			border-radius: 0;
			background: transparent;
		}

		.site-header.is-navigation-open .site-nav__list .sub-menu .sub-menu {
			padding: 0.2rem 0 0.2rem 2.25rem;
			border: 0;
			border-left: 2px solid rgba(201, 58, 50, 0.14);
			border-radius: 0;
			background: transparent;
		}

	.site-header.is-navigation-open .site-nav__list > .menu-item:last-child > a {
		border: 1px solid rgba(201, 58, 50, 0.42);
		background: rgba(201, 58, 50, 0.08);
		color: var(--soleil-color-accent);
	}
}

@media (max-width: 782px) {
	body.admin-bar #wpadminbar {
		position: fixed;
		top: 0;
		z-index: 99999;
	}

	body.admin-bar .site-header {
		top: 46px;
		z-index: 1000;
	}

	body.admin-bar .site-header.is-navigation-open .site-nav {
		max-height: calc(100vh - 134px - env(safe-area-inset-bottom));
		max-height: calc(100dvh - 134px - env(safe-area-inset-bottom));
	}
}

.site-footer {
	border-top-color: var(--soleil-color-line);
	background:
		linear-gradient(180deg, rgba(17, 24, 39, 0.72), rgba(5, 7, 15, 0.96)),
		var(--soleil-color-cosmos);
	color: var(--soleil-color-muted);
}

.site-footer__inner {
	width: min(100% - 40px, var(--soleil-content-wide));
	padding-block: 44px;
}

.site-footer a {
	color: var(--soleil-color-text);
}

.vt-cta {
	position: relative;
	overflow: hidden;
	justify-self: stretch;
	width: 100%;
	max-width: none;
	margin-block: clamp(48px, 7vw, 88px) 0;
	padding: clamp(3rem, 7vw, 5.5rem) clamp(1.25rem, 4vw, 3rem);
	border: 0;
	border-radius: 0;
	background:
		radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.07), transparent 22rem),
		radial-gradient(circle at 84% 36%, rgba(201, 58, 50, 0.16), transparent 18rem),
		linear-gradient(135deg, #321b1b 0%, #2a1717 58%, #170909 100%);
	color: #ffffff;
	text-align: center;
}

.wp-block-group.vt-cta,
.vt-entry__content > .wp-block-group.vt-cta,
.entry-content > .wp-block-group.vt-cta {
	width: 100%;
	max-width: none;
}

.vt-cta > .wp-block-group__inner-container,
.vt-cta__inner {
	width: min(100%, var(--soleil-content-wide));
	margin-inline: auto;
}

.vt-cta::before {
	position: absolute;
	inset: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background:
		linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent),
		radial-gradient(circle at 82% 28%, rgba(201, 58, 50, 0.18), transparent 18rem);
	content: "";
	pointer-events: none;
}

.vt-cta > * {
	position: relative;
	z-index: 1;
}

.vt-cta__label {
	border-color: rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.78);
}

.vt-cta__title {
	width: 100%;
	max-width: none;
	color: #ffffff;
	font-family: var(--soleil-font-heading);
	font-weight: 500;
}

.vt-cta__title.wp-block-heading,
.vt-cta .wp-block-heading.vt-cta__title {
	display: block;
	justify-self: stretch;
	width: 100%;
	max-width: none;
	box-sizing: border-box;
}

.vt-cta__text {
	width: 100%;
	max-width: none;
	color: rgba(255, 255, 255, 0.72);
}

.vt-cta__text.wp-block-paragraph,
.vt-cta .wp-block-paragraph.vt-cta__text {
	width: 100%;
	max-width: none;
}

.vt-cta__actions {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: clamp(1rem, 2.5vw, 1.5rem);
	justify-content: center;
	max-width: 920px;
	margin-inline: auto;
}

.vt-cta__button,
.vt-cta__actions .wp-block-button {
	width: 100%;
}

.vt-cta__button .wp-block-button__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.7rem;
	min-height: 160px;
	width: 100%;
	padding: 1.35rem 1rem;
	border-color: rgba(255, 255, 255, 0.18);
	border-radius: 0;
	background: rgba(255, 255, 255, 0.06);
	color: #ffffff;
	line-height: 1.5;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.vt-cta__button .wp-block-button__link::before {
	display: grid;
	place-items: center;
	width: 3.5rem;
	height: 3.5rem;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.86);
	font-size: 1.25rem;
	line-height: 1;
	content: "";
}

.vt-cta__button .wp-block-button__link:hover,
.vt-cta__button .wp-block-button__link:focus-visible {
	border-color: rgba(239, 90, 79, 0.58);
	background: rgba(201, 58, 50, 0.2);
	color: #ffffff;
}

a.vt-cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.7rem;
	min-height: 64px;
	width: 100%;
	padding: 1rem 1.2rem;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 0;
	background: rgba(255, 255, 255, 0.06);
	color: #ffffff;
	font-weight: 700;
	line-height: 1.35;
	text-align: center;
	text-decoration: none;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease,
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

a.vt-cta__button:hover,
a.vt-cta__button:focus-visible {
	border-color: rgba(239, 90, 79, 0.62);
	background: rgba(201, 58, 50, 0.2);
	color: #ffffff;
	transform: translateY(-2px);
}

.vt-cta__button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	color: inherit;
	transition:
		color 0.2s ease,
		transform 0.2s ease;
}

.vt-cta__button-icon svg {
	display: block;
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.vt-cta__button-label {
	display: inline-block;
	min-width: 0;
}

a.vt-cta__button:hover .vt-cta__button-icon,
a.vt-cta__button:focus-visible .vt-cta__button-icon {
	transform: translateX(2px);
}

a.vt-cta__button--primary {
	border-color: rgba(239, 90, 79, 0.72);
	background: linear-gradient(135deg, rgba(201, 58, 50, 0.92), rgba(111, 0, 0, 0.9));
	box-shadow:
		0 18px 38px rgba(201, 58, 50, 0.18),
		inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

a.vt-cta__button--primary:hover,
a.vt-cta__button--primary:focus-visible {
	border-color: rgba(255, 132, 122, 0.85);
	background: linear-gradient(135deg, rgba(239, 90, 79, 0.96), rgba(137, 12, 6, 0.92));
}

a.vt-cta__button--secondary {
	border-color: rgba(255, 255, 255, 0.26);
	background: rgba(255, 255, 255, 0.1);
}

a.vt-cta__button--secondary:hover,
a.vt-cta__button--secondary:focus-visible {
	border-color: rgba(239, 90, 79, 0.62);
	background: rgba(255, 255, 255, 0.14);
	color: var(--soleil-color-accent-bright);
}

a.vt-cta__button--tertiary {
	border-color: rgba(255, 255, 255, 0.16);
	background: transparent;
	color: rgba(255, 255, 255, 0.82);
}

a.vt-cta__button--tertiary:hover,
a.vt-cta__button--tertiary:focus-visible {
	border-color: rgba(239, 90, 79, 0.5);
	background: rgba(201, 58, 50, 0.12);
	color: #ffffff;
}

body.page:not(.home) .site-main__inner > .vt-entry--page {
	width: min(100% - 40px, 960px);
	margin: 0 auto clamp(56px, 7vw, 88px);
	padding: clamp(48px, 7vw, 72px) clamp(24px, 5vw, 72px);
	border: 0;
	border-radius: 0;
	background: #ffffff;
	box-shadow: none;
	color: #374151;
	backdrop-filter: none;
}

body.page:not(.home) .site-main__inner > .vt-entry--page .vt-entry__content,
body.page:not(.home) .site-main__inner > .vt-entry--page .entry-content {
	display: grid;
	gap: 1.25rem;
	width: min(100%, 760px);
	margin-inline: auto;
	color: #374151;
}

body.page:not(.home) .site-main__inner > .vt-entry--page .vt-entry__content > :first-child,
body.page:not(.home) .site-main__inner > .vt-entry--page .entry-content > :first-child {
	margin-top: 0;
}

body.page:not(.home) .site-main__inner > .vt-entry--page .vt-entry__content > :last-child,
body.page:not(.home) .site-main__inner > .vt-entry--page .entry-content > :last-child {
	margin-bottom: 0;
}

body.page:not(.home) .site-main__inner > .vt-entry--page .vt-entry__content :where(h2, h3, h4, h5, h6):not(.vt-cta *),
body.page:not(.home) .site-main__inner > .vt-entry--page .entry-content :where(h2, h3, h4, h5, h6):not(.vt-cta *) {
	position: relative;
	margin: 1.6rem 0 0.7rem;
	color: #111827;
	font-family: var(--soleil-font-heading);
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: 0;
}

body.page:not(.home) .site-main__inner > .vt-entry--page .vt-entry__content :where(h2, h3, h4, h5, h6):not(.vt-cta *)::before,
body.page:not(.home) .site-main__inner > .vt-entry--page .entry-content :where(h2, h3, h4, h5, h6):not(.vt-cta *)::before {
	display: inline-block;
	width: 0.28rem;
	height: 1em;
	margin-right: 0.68rem;
	border-radius: 999px;
	background: rgba(201, 58, 50, 0.78);
	vertical-align: -0.12em;
	content: "";
}

body.page:not(.home) .site-main__inner > .vt-entry--page .vt-entry__content h2:not(.vt-cta *),
body.page:not(.home) .site-main__inner > .vt-entry--page .entry-content h2:not(.vt-cta *) {
	font-size: clamp(1.5rem, 2.3vw, 2rem);
}

body.page:not(.home) .site-main__inner > .vt-entry--page .vt-entry__content h3:not(.vt-cta *),
body.page:not(.home) .site-main__inner > .vt-entry--page .entry-content h3:not(.vt-cta *) {
	font-size: clamp(1.2rem, 1.8vw, 1.5rem);
}

body.page:not(.home) .site-main__inner > .vt-entry--page .vt-entry__content p:not(.vt-cta *),
body.page:not(.home) .site-main__inner > .vt-entry--page .entry-content p:not(.vt-cta *) {
	margin: 0;
	color: #374151;
	font-size: 1rem;
	line-height: 1.85;
}

body.page:not(.home) .site-main__inner > .vt-entry--page .vt-entry__content :where(ul, ol):not(.vt-cta *),
body.page:not(.home) .site-main__inner > .vt-entry--page .entry-content :where(ul, ol):not(.vt-cta *) {
	margin: 0;
	padding-left: 1.4rem;
	color: #374151;
	line-height: 1.8;
}

body.page:not(.home) .site-main__inner > .vt-entry--page .vt-entry__content :where(li, li p):not(.vt-cta *),
body.page:not(.home) .site-main__inner > .vt-entry--page .entry-content :where(li, li p):not(.vt-cta *) {
	color: #374151;
}

body.page:not(.home) .site-main__inner > .vt-entry--page .vt-entry__content :where(a:not(.wp-block-button__link)):not(.vt-cta *),
body.page:not(.home) .site-main__inner > .vt-entry--page .entry-content :where(a:not(.wp-block-button__link)):not(.vt-cta *) {
	color: #C43A3A;
	text-decoration: underline;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

body.page:not(.home) .site-main__inner > .vt-entry--page .vt-entry__content :where(a:not(.wp-block-button__link):hover, a:not(.wp-block-button__link):focus-visible):not(.vt-cta *),
body.page:not(.home) .site-main__inner > .vt-entry--page .entry-content :where(a:not(.wp-block-button__link):hover, a:not(.wp-block-button__link):focus-visible):not(.vt-cta *) {
	color: #A82E2E;
}

body.page:not(.home) .site-main__inner > .vt-entry--page .vt-entry__content a:not(.wp-block-button__link):not(.vt-cta *):not(.vt-linkcard *):not(.vt-post-card *):not(.archive-card *):not(.soleil-link-cards *):not(.soleil-news-tabs *),
body.page:not(.home) .site-main__inner > .vt-entry--page .entry-content a:not(.wp-block-button__link):not(.vt-cta *):not(.vt-linkcard *):not(.vt-post-card *):not(.archive-card *):not(.soleil-link-cards *):not(.soleil-news-tabs *) {
	color: #C43A3A;
	text-decoration: underline;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

body.page:not(.home) .site-main__inner > .vt-entry--page .vt-entry__content a:not(.wp-block-button__link):not(.vt-cta *):not(.vt-linkcard *):not(.vt-post-card *):not(.archive-card *):not(.soleil-link-cards *):not(.soleil-news-tabs *):hover,
body.page:not(.home) .site-main__inner > .vt-entry--page .vt-entry__content a:not(.wp-block-button__link):not(.vt-cta *):not(.vt-linkcard *):not(.vt-post-card *):not(.archive-card *):not(.soleil-link-cards *):not(.soleil-news-tabs *):focus-visible,
body.page:not(.home) .site-main__inner > .vt-entry--page .entry-content a:not(.wp-block-button__link):not(.vt-cta *):not(.vt-linkcard *):not(.vt-post-card *):not(.archive-card *):not(.soleil-link-cards *):not(.soleil-news-tabs *):hover,
body.page:not(.home) .site-main__inner > .vt-entry--page .entry-content a:not(.wp-block-button__link):not(.vt-cta *):not(.vt-linkcard *):not(.vt-post-card *):not(.archive-card *):not(.soleil-link-cards *):not(.soleil-news-tabs *):focus-visible {
	color: #A82E2E;
}

body.page:not(.home) .site-main__inner > .vt-entry--page .vt-entry__content :where(figure, .wp-block-image),
body.page:not(.home) .site-main__inner > .vt-entry--page .entry-content :where(figure, .wp-block-image) {
	margin: 1.25rem 0;
}

body.page:not(.home) .site-main__inner > .vt-entry--page .vt-entry__content :where(img),
body.page:not(.home) .site-main__inner > .vt-entry--page .entry-content :where(img) {
	display: block;
	width: 100%;
	height: auto;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	box-shadow: none;
}

body.page:not(.home) .site-main__inner > .vt-entry--page .vt-entry__content :where(.wp-block-buttons),
body.page:not(.home) .site-main__inner > .vt-entry--page .entry-content :where(.wp-block-buttons) {
	margin-top: 1.4rem;
}

body.page:not(.home) .site-main__inner > .vt-entry--page .vt-entry__content :where(.wp-block-button__link, a.wp-block-button__link):not(.vt-cta *),
body.page:not(.home) .site-main__inner > .vt-entry--page .entry-content :where(.wp-block-button__link, a.wp-block-button__link):not(.vt-cta *) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0.8rem 1.15rem;
	border: 1px solid rgba(201, 58, 50, 0.28);
	border-radius: 999px;
	background: rgba(201, 58, 50, 0.08);
	color: #c93a32;
	text-decoration: none;
	transition:
		transform 0.2s ease,
		border-color 0.2s ease,
		background-color 0.2s ease,
		color 0.2s ease;
}

body.page:not(.home) .site-main__inner > .vt-entry--page .vt-entry__content :where(.wp-block-button__link:hover, .wp-block-button__link:focus-visible, a.wp-block-button__link:hover, a.wp-block-button__link:focus-visible):not(.vt-cta *),
body.page:not(.home) .site-main__inner > .vt-entry--page .entry-content :where(.wp-block-button__link:hover, .wp-block-button__link:focus-visible, a.wp-block-button__link:hover, a.wp-block-button__link:focus-visible):not(.vt-cta *) {
	transform: translateY(-1px);
	border-color: rgba(201, 58, 50, 0.42);
	background: rgba(201, 58, 50, 0.12);
	color: #9f2f28;
}

body.page:not(.home) .site-main__inner > .vt-entry--page :is(.vt-entry__content, .entry-content) .vt-faq {
	width: 100%;
	margin: clamp(1.75rem, 4vw, 2.75rem) 0 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
	overflow: visible;
	color: #222222;
}

body.page:not(.home) .site-main__inner > .vt-entry--page :is(.vt-entry__content, .entry-content) .vt-faq::before {
	content: none;
}

body.page:not(.home) .site-main__inner > .vt-entry--page :is(.vt-entry__content, .entry-content) .vt-faq__title,
body.page:not(.home) .site-main__inner > .vt-entry--page :is(.vt-entry__content, .entry-content) .vt-faq__header h2 {
	color: #111111;
}

body.page:not(.home) .site-main__inner > .vt-entry--page :is(.vt-entry__content, .entry-content) .vt-faq__item {
	padding: 1.5rem;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	background: #f7f8fa;
	box-shadow: none;
	backdrop-filter: none;
	color: #222222;
}

body.page:not(.home) .site-main__inner > .vt-entry--page :is(.vt-entry__content, .entry-content) .vt-faq__item:hover,
body.page:not(.home) .site-main__inner > .vt-entry--page :is(.vt-entry__content, .entry-content) .vt-faq__item:focus-within {
	border-color: #C43A3A;
	box-shadow: 0 10px 22px rgba(17, 24, 39, 0.08);
}

body.page:not(.home) .site-main__inner > .vt-entry--page :is(.vt-entry__content, .entry-content) .vt-faq__question {
	color: #111111;
	font-weight: 700;
}

body.page:not(.home) .site-main__inner > .vt-entry--page :is(.vt-entry__content, .entry-content) .vt-faq__question::before {
	border-color: rgba(196, 58, 58, 0.24);
	background: rgba(196, 58, 58, 0.08);
	color: #C43A3A;
}

body.page:not(.home) .site-main__inner > .vt-entry--page :is(.vt-entry__content, .entry-content) .vt-faq__answer {
	color: #444444;
}

body.page:not(.home) .site-main__inner > .vt-entry--page :is(.vt-entry__content, .entry-content) .vt-faq__answer::before {
	border-color: rgba(0, 0, 0, 0.1);
	background: rgba(0, 0, 0, 0.035);
	color: #6b7280;
}

body.page:not(.home) .vt-page-header {
	position: relative;
	display: grid;
	overflow: hidden;
	width: 100vw;
	max-width: none;
	margin: 0 0 18px;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	min-height: clamp(280px, 38vw, 420px);
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.075);
	border-radius: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.008)),
		linear-gradient(135deg, rgba(7, 10, 18, 0.8), rgba(5, 7, 15, 0.92));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.035),
		0 16px 36px rgba(0, 0, 0, 0.16);
	backdrop-filter: blur(6px);
	border-bottom: 0;
	isolation: isolate;
}

body.page:not(.home) .vt-page-header__media {
	position: absolute;
	inset: 0;
	margin: 0;
	z-index: 0;
}

body.page:not(.home) .vt-page-header__media::after {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(3, 4, 10, 0.1) 0%, rgba(3, 4, 10, 0.45) 48%, rgba(3, 4, 10, 0.88) 100%),
		linear-gradient(90deg, rgba(201, 58, 50, 0.12) 0%, transparent 28%);
	content: "";
}

body.page:not(.home) .vt-page-header__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	filter: saturate(0.94) contrast(1.02);
}

body.page:not(.home) .vt-page-header__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		radial-gradient(circle at 18% 14%, rgba(201, 58, 50, 0.12), transparent 34%),
		linear-gradient(180deg, rgba(5, 7, 15, 0.16) 0%, rgba(5, 7, 15, 0.42) 52%, rgba(5, 7, 15, 0.8) 100%);
	pointer-events: none;
}

body.page:not(.home) .vt-page-header__inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: clamp(280px, 38vw, 420px);
	padding: clamp(1.25rem, 3vw, 2rem);
}

body.page:not(.home) .vt-page-header__content {
	max-width: 48rem;
	text-align: center;
	transform: translateY(-0.25em);
}

body.page:not(.home) .vt-page-header__title {
	margin: 0;
	color: var(--soleil-color-text);
	font-family: var(--soleil-font-heading);
	font-size: clamp(1.9rem, 4vw, 3rem);
	font-weight: 500;
	line-height: 1.18;
	letter-spacing: 0;
	text-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

body.page:not(.home) .vt-page-header__description {
	max-width: 44rem;
	margin-top: 0.75rem;
	color: var(--soleil-color-muted);
	font-size: 0.98rem;
	line-height: 1.8;
}

body.page:not(.home) .site-main {
	overflow-x: clip;
}

body.page:not(.home) .site-main__inner {
	padding-top: 0;
}

body.blog:not(.home) .site-main__inner,
body.archive:not(.home) .site-main__inner,
body.category:not(.home) .site-main__inner,
body.tag:not(.home) .site-main__inner,
body.date:not(.home) .site-main__inner,
body.author:not(.home) .site-main__inner,
body.search:not(.home) .site-main__inner {
	display: block;
}

.archive-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 40px;
	align-items: start;
	width: 100%;
	margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.archive-layout__main,
.archive-layout__sidebar {
	min-width: 0;
}

.archive-layout__sidebar {
	align-self: start;
}

.archive-layout .single-post-sidebar {
	width: 100%;
	max-width: none;
}

.archive-layout .single-post-sidebar__inner {
	position: static;
}

body.blog:not(.home) .vt-post-list,
body.archive:not(.home) .vt-post-list,
body.category:not(.home) .vt-post-list,
body.tag:not(.home) .vt-post-list,
body.date:not(.home) .vt-post-list,
body.author:not(.home) .vt-post-list,
body.search:not(.home) .vt-post-list {
	display: contents;
}

body.blog:not(.home) .vt-post-card,
body.archive:not(.home) .vt-post-card,
body.category:not(.home) .vt-post-card,
body.tag:not(.home) .vt-post-card,
body.date:not(.home) .vt-post-card,
body.author:not(.home) .vt-post-card,
body.search:not(.home) .vt-post-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	margin: 0;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.075);
	border-radius: 18px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.012)),
		linear-gradient(135deg, rgba(7, 10, 18, 0.86), rgba(5, 7, 15, 0.94));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.035),
		0 16px 36px rgba(0, 0, 0, 0.16);
	backdrop-filter: blur(6px);
	transition:
		transform 0.22s ease,
		border-color 0.22s ease,
		box-shadow 0.22s ease;
}

body.blog:not(.home) .vt-post-card:hover,
body.blog:not(.home) .vt-post-card:focus-within,
body.archive:not(.home) .vt-post-card:hover,
body.archive:not(.home) .vt-post-card:focus-within,
body.category:not(.home) .vt-post-card:hover,
body.category:not(.home) .vt-post-card:focus-within,
body.tag:not(.home) .vt-post-card:hover,
body.tag:not(.home) .vt-post-card:focus-within,
body.date:not(.home) .vt-post-card:hover,
body.date:not(.home) .vt-post-card:focus-within,
body.author:not(.home) .vt-post-card:hover,
body.author:not(.home) .vt-post-card:focus-within,
body.search:not(.home) .vt-post-card:hover,
body.search:not(.home) .vt-post-card:focus-within {
	transform: translateY(-3px);
	border-color: rgba(201, 58, 50, 0.16);
	box-shadow:
		0 18px 34px rgba(0, 0, 0, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.blog:not(.home) .vt-post-card__thumbnail,
body.archive:not(.home) .vt-post-card__thumbnail,
body.category:not(.home) .vt-post-card__thumbnail,
body.tag:not(.home) .vt-post-card__thumbnail,
body.date:not(.home) .vt-post-card__thumbnail,
body.author:not(.home) .vt-post-card__thumbnail,
body.search:not(.home) .vt-post-card__thumbnail {
	display: block;
	overflow: hidden;
	margin: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.075);
	background: rgba(255, 255, 255, 0.02);
}

body.blog:not(.home) .vt-post-card__thumbnail img,
body.archive:not(.home) .vt-post-card__thumbnail img,
body.category:not(.home) .vt-post-card__thumbnail img,
body.tag:not(.home) .vt-post-card__thumbnail img,
body.date:not(.home) .vt-post-card__thumbnail img,
body.author:not(.home) .vt-post-card__thumbnail img,
body.search:not(.home) .vt-post-card__thumbnail img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

body.blog:not(.home) .vt-post-card__body,
body.archive:not(.home) .vt-post-card__body,
body.category:not(.home) .vt-post-card__body,
body.tag:not(.home) .vt-post-card__body,
body.date:not(.home) .vt-post-card__body,
body.author:not(.home) .vt-post-card__body,
body.search:not(.home) .vt-post-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 0.85rem;
	padding: clamp(1rem, 2vw, 1.35rem);
}

body.blog:not(.home) .vt-post-card__header,
body.archive:not(.home) .vt-post-card__header,
body.category:not(.home) .vt-post-card__header,
body.tag:not(.home) .vt-post-card__header,
body.date:not(.home) .vt-post-card__header,
body.author:not(.home) .vt-post-card__header,
body.search:not(.home) .vt-post-card__header {
	display: grid;
	gap: 0.6rem;
}

body.blog:not(.home) .vt-post-card__title,
body.archive:not(.home) .vt-post-card__title,
body.category:not(.home) .vt-post-card__title,
body.tag:not(.home) .vt-post-card__title,
body.date:not(.home) .vt-post-card__title,
body.author:not(.home) .vt-post-card__title,
body.search:not(.home) .vt-post-card__title {
	margin: 0;
	color: var(--soleil-color-text);
	font-family: var(--soleil-font-heading);
	font-size: clamp(1.1rem, 1.4vw, 1.35rem);
	font-weight: 500;
	line-height: 1.45;
	letter-spacing: 0;
}

body.blog:not(.home) .vt-post-card__title a,
body.archive:not(.home) .vt-post-card__title a,
body.category:not(.home) .vt-post-card__title a,
body.tag:not(.home) .vt-post-card__title a,
body.date:not(.home) .vt-post-card__title a,
body.author:not(.home) .vt-post-card__title a,
body.search:not(.home) .vt-post-card__title a {
	color: inherit;
	text-decoration: none;
}

body.blog:not(.home) .vt-post-card__meta,
body.archive:not(.home) .vt-post-card__meta,
body.category:not(.home) .vt-post-card__meta,
body.tag:not(.home) .vt-post-card__meta,
body.date:not(.home) .vt-post-card__meta,
body.author:not(.home) .vt-post-card__meta,
body.search:not(.home) .vt-post-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.7rem;
	margin: 0;
	color: var(--soleil-color-dim);
	font-size: 0.8rem;
	line-height: 1.6;
}

body.blog:not(.home) .vt-post-card__excerpt,
body.archive:not(.home) .vt-post-card__excerpt,
body.category:not(.home) .vt-post-card__excerpt,
body.tag:not(.home) .vt-post-card__excerpt,
body.date:not(.home) .vt-post-card__excerpt,
body.author:not(.home) .vt-post-card__excerpt,
body.search:not(.home) .vt-post-card__excerpt {
	color: var(--soleil-color-muted);
	font-size: 0.95rem;
	line-height: 1.8;
}

body.blog:not(.home) .vt-post-card__excerpt > :first-child,
body.archive:not(.home) .vt-post-card__excerpt > :first-child,
body.category:not(.home) .vt-post-card__excerpt > :first-child,
body.tag:not(.home) .vt-post-card__excerpt > :first-child,
body.date:not(.home) .vt-post-card__excerpt > :first-child,
body.author:not(.home) .vt-post-card__excerpt > :first-child,
body.search:not(.home) .vt-post-card__excerpt > :first-child {
	margin-top: 0;
}

body.blog:not(.home) .vt-post-card__excerpt > :last-child,
body.archive:not(.home) .vt-post-card__excerpt > :last-child,
body.category:not(.home) .vt-post-card__excerpt > :last-child,
body.tag:not(.home) .vt-post-card__excerpt > :last-child,
body.date:not(.home) .vt-post-card__excerpt > :last-child,
body.author:not(.home) .vt-post-card__excerpt > :last-child,
body.search:not(.home) .vt-post-card__excerpt > :last-child {
	margin-bottom: 0;
}

body.blog:not(.home) .vt-post-card__button,
body.archive:not(.home) .vt-post-card__button,
body.category:not(.home) .vt-post-card__button,
body.tag:not(.home) .vt-post-card__button,
body.date:not(.home) .vt-post-card__button,
body.author:not(.home) .vt-post-card__button,
body.search:not(.home) .vt-post-card__button {
	margin-top: auto;
	align-self: flex-start;
	color: var(--soleil-color-accent-bright);
}

.archive-list {
	display: grid;
	gap: clamp(1rem, 2vw, 1.4rem);
}

.service-archive-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.5rem);
}

.archive-card {
	position: relative;
	min-width: 0;
	height: 100%;
	margin: 0;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.075);
	border-radius: 18px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.012)),
		linear-gradient(135deg, rgba(7, 10, 18, 0.86), rgba(5, 7, 15, 0.94));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.035),
		0 16px 36px rgba(0, 0, 0, 0.16);
	backdrop-filter: blur(6px);
	transition:
		transform 0.22s ease,
		border-color 0.22s ease,
		box-shadow 0.22s ease;
}

.archive-card:hover,
.archive-card:focus-within {
	transform: translateY(-3px);
	border-color: rgba(201, 58, 50, 0.16);
	box-shadow:
		0 18px 34px rgba(0, 0, 0, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.archive-card__link {
	display: grid;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.archive-card--horizontal .archive-card__link {
	grid-template-columns: 220px minmax(0, 1fr);
}

.archive-card--service .archive-card__link {
	grid-template-rows: auto minmax(0, 1fr);
}

.archive-card__thumbnail {
	display: block;
	min-width: 0;
	height: 100%;
	margin: 0;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.02);
}

.archive-card--horizontal .archive-card__thumbnail {
	border-right: 1px solid rgba(255, 255, 255, 0.075);
}

.archive-card--service .archive-card__thumbnail {
	border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.archive-card__thumbnail img,
.archive-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.archive-card--horizontal .archive-card__thumbnail img,
.archive-card--horizontal .archive-card__placeholder {
	aspect-ratio: 16 / 11;
}

.archive-card--service .archive-card__thumbnail img,
.archive-card--service .archive-card__placeholder {
	aspect-ratio: 16 / 10;
}

.archive-card__placeholder {
	background:
		linear-gradient(135deg, rgba(201, 58, 50, 0.12), rgba(15, 23, 42, 0.08)),
		#e5e7eb;
}

.archive-card__body {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 0.8rem;
	padding: clamp(1rem, 2vw, 1.35rem);
}

.archive-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.7rem;
	margin: 0;
	color: var(--soleil-color-dim);
	font-size: 0.8rem;
	line-height: 1.6;
}

.archive-card__title {
	margin: 0;
	color: var(--soleil-color-text);
	font-family: var(--soleil-font-heading);
	font-size: clamp(1.1rem, 1.4vw, 1.35rem);
	font-weight: 500;
	line-height: 1.45;
	letter-spacing: 0;
}

.archive-card__excerpt {
	color: var(--soleil-color-muted);
	font-size: 0.95rem;
	line-height: 1.8;
}

.archive-card__price {
	width: fit-content;
	margin: 0;
	padding: 0.25rem 0.7rem;
	border: 1px solid rgba(201, 58, 50, 0.2);
	border-radius: 999px;
	background: rgba(201, 58, 50, 0.08);
	color: var(--soleil-color-accent-bright);
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.35;
}

.archive-card__button {
	margin-top: auto;
	align-self: flex-start;
	color: var(--soleil-color-accent-bright);
	font-size: 0.92rem;
	line-height: 1.5;
}

body.blog:not(.home) .navigation.posts-navigation,
body.blog:not(.home) .navigation.pagination,
body.archive:not(.home) .navigation.posts-navigation,
body.archive:not(.home) .navigation.pagination,
body.category:not(.home) .navigation.posts-navigation,
body.category:not(.home) .navigation.pagination,
body.tag:not(.home) .navigation.posts-navigation,
body.tag:not(.home) .navigation.pagination,
body.date:not(.home) .navigation.posts-navigation,
body.date:not(.home) .navigation.pagination,
body.author:not(.home) .navigation.posts-navigation,
body.author:not(.home) .navigation.pagination,
body.search:not(.home) .navigation.posts-navigation,
body.search:not(.home) .navigation.pagination {
	grid-column: 1 / -1;
	display: flex;
	justify-content: center;
	margin-top: clamp(1.25rem, 3vw, 2rem);
}

body.blog:not(.home) .navigation.posts-navigation .nav-links,
body.blog:not(.home) .navigation.pagination .nav-links,
body.archive:not(.home) .navigation.posts-navigation .nav-links,
body.archive:not(.home) .navigation.pagination .nav-links,
body.category:not(.home) .navigation.posts-navigation .nav-links,
body.category:not(.home) .navigation.pagination .nav-links,
body.tag:not(.home) .navigation.posts-navigation .nav-links,
body.tag:not(.home) .navigation.pagination .nav-links,
body.date:not(.home) .navigation.posts-navigation .nav-links,
body.date:not(.home) .navigation.pagination .nav-links,
body.author:not(.home) .navigation.posts-navigation .nav-links,
body.author:not(.home) .navigation.pagination .nav-links,
body.search:not(.home) .navigation.posts-navigation .nav-links,
body.search:not(.home) .navigation.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
}

body.blog:not(.home) .navigation.posts-navigation a,
body.blog:not(.home) .navigation.pagination a,
body.blog:not(.home) .navigation.pagination span,
body.archive:not(.home) .navigation.posts-navigation a,
body.archive:not(.home) .navigation.pagination a,
body.archive:not(.home) .navigation.pagination span,
body.category:not(.home) .navigation.posts-navigation a,
body.category:not(.home) .navigation.pagination a,
body.category:not(.home) .navigation.pagination span,
body.tag:not(.home) .navigation.posts-navigation a,
body.tag:not(.home) .navigation.pagination a,
body.tag:not(.home) .navigation.pagination span,
body.date:not(.home) .navigation.posts-navigation a,
body.date:not(.home) .navigation.pagination a,
body.date:not(.home) .navigation.pagination span,
body.author:not(.home) .navigation.posts-navigation a,
body.author:not(.home) .navigation.pagination a,
body.author:not(.home) .navigation.pagination span,
body.search:not(.home) .navigation.posts-navigation a,
body.search:not(.home) .navigation.pagination a,
body.search:not(.home) .navigation.pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0.55rem 0.95rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	color: var(--soleil-color-text);
	text-decoration: none;
	transition:
		transform 0.2s ease,
		border-color 0.2s ease,
		background-color 0.2s ease,
		color 0.2s ease;
}

body.blog:not(.home) .navigation.posts-navigation a:hover,
body.blog:not(.home) .navigation.posts-navigation a:focus-visible,
body.blog:not(.home) .navigation.pagination a:hover,
body.blog:not(.home) .navigation.pagination a:focus-visible,
body.archive:not(.home) .navigation.posts-navigation a:hover,
body.archive:not(.home) .navigation.posts-navigation a:focus-visible,
body.archive:not(.home) .navigation.pagination a:hover,
body.archive:not(.home) .navigation.pagination a:focus-visible,
body.category:not(.home) .navigation.posts-navigation a:hover,
body.category:not(.home) .navigation.posts-navigation a:focus-visible,
body.category:not(.home) .navigation.pagination a:hover,
body.category:not(.home) .navigation.pagination a:focus-visible,
body.tag:not(.home) .navigation.posts-navigation a:hover,
body.tag:not(.home) .navigation.posts-navigation a:focus-visible,
body.tag:not(.home) .navigation.pagination a:hover,
body.tag:not(.home) .navigation.pagination a:focus-visible,
body.date:not(.home) .navigation.posts-navigation a:hover,
body.date:not(.home) .navigation.posts-navigation a:focus-visible,
body.date:not(.home) .navigation.pagination a:hover,
body.date:not(.home) .navigation.pagination a:focus-visible,
body.author:not(.home) .navigation.posts-navigation a:hover,
body.author:not(.home) .navigation.posts-navigation a:focus-visible,
body.author:not(.home) .navigation.pagination a:hover,
body.author:not(.home) .navigation.pagination a:focus-visible,
body.search:not(.home) .navigation.posts-navigation a:hover,
body.search:not(.home) .navigation.posts-navigation a:focus-visible,
body.search:not(.home) .navigation.pagination a:hover,
body.search:not(.home) .navigation.pagination a:focus-visible {
	transform: translateY(-1px);
	border-color: rgba(201, 58, 50, 0.22);
	background: rgba(201, 58, 50, 0.1);
	color: var(--soleil-color-accent-bright);
}

:is(body.single-post, body.single-information, body.single-service) .site-main__inner {
	display: grid;
	gap: clamp(0.75rem, 2vw, 1.1rem);
}

:is(body.single-post, body.single-information, body.single-service) .vt-page-header {
	margin-bottom: 0;
}

:is(body.single-post, body.single-information, body.single-service) .vt-page-header__title {
	margin-bottom: 0;
}

:is(body.single-post, body.single-information, body.single-service) .vt-entry--single {
	width: 100%;
	max-width: none;
	margin: 0 0 56px;
	overflow: hidden;
	border: 0;
	border-radius: 0;
	background: #ffffff;
	color: #222222;
	box-shadow: none;
}

:is(body.single-post, body.single-information, body.single-service) .vt-entry--single .vt-entry__thumbnail {
	margin: 0;
	background: #f6f7f9;
}

:is(body.single-post, body.single-information, body.single-service) .vt-entry--single .vt-entry__thumbnail img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

:is(body.single-post, body.single-information, body.single-service) .vt-entry--single .vt-entry__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem 1.25rem;
	margin: 0;
	padding: 0.7rem clamp(1.35rem, 3vw, 2.15rem);
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
	background: linear-gradient(135deg, #a81f19 0%, #7f0f0a 100%);
	color: rgba(255, 255, 255, 0.96);
	font-size: 0.85rem;
	line-height: 1.35;
}

:is(body.single-post, body.single-information, body.single-service) .vt-entry--single .vt-entry__meta :where(.vt-posted-on, .vt-updated-on, .vt-post-categories, .vt-post-type) {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	white-space: nowrap;
}

:is(body.single-post, body.single-information, body.single-service) .vt-entry--single .vt-entry__meta .vt-post-categories {
	flex-wrap: wrap;
}

:is(body.single-post, body.single-information, body.single-service) .vt-entry--single .vt-entry__meta .vt-post-categories a {
	color: inherit;
	text-decoration: none;
}

:is(body.single-post, body.single-information, body.single-service) .vt-entry--single .vt-entry__meta .vt-post-categories a:hover,
:is(body.single-post, body.single-information, body.single-service) .vt-entry--single .vt-entry__meta .vt-post-categories a:focus-visible {
	color: #ffffff;
	text-decoration: underline;
	text-underline-offset: 0.16em;
}

:is(body.single-post, body.single-information, body.single-service) .vt-entry--single .vt-entry__content {
	padding: clamp(1.1rem, 2.6vw, 1.9rem) clamp(1.35rem, 3vw, 2.15rem) clamp(1.35rem, 3vw, 2.15rem);
	color: #222222;
}

:is(body.single-post, body.single-information, body.single-service) .vt-entry--single .vt-entry__content :where(p, li, td, th, dd, dt) {
	color: #222222;
	font-size: 1.04rem;
	line-height: 1.95;
}

:is(body.single-post, body.single-information, body.single-service) .vt-entry--single .vt-entry__content :where(h2, h3, h4, h5, h6) {
	color: #111111;
	font-family: var(--soleil-font-heading);
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: 0;
}

:is(body.single-post, body.single-information, body.single-service) .vt-entry--single .vt-entry__content h2 {
	margin: 2rem 0 0.85rem;
	font-size: clamp(1.55rem, 2.5vw, 2.1rem);
}

:is(body.single-post, body.single-information, body.single-service) .vt-entry--single .vt-entry__content h3 {
	margin: 1.8rem 0 0.75rem;
	font-size: clamp(1.25rem, 2vw, 1.55rem);
}

:is(body.single-post, body.single-information, body.single-service) .vt-entry--single .vt-entry__content :where(a) {
	color: var(--soleil-color-accent);
	text-decoration-color: rgba(201, 58, 50, 0.45);
	text-underline-offset: 0.16em;
}

:is(body.single-post, body.single-information, body.single-service) .vt-entry--single .vt-entry__content :where(a:hover, a:focus-visible) {
	color: var(--soleil-color-accent-bright);
}

:is(body.single-post, body.single-information, body.single-service) .vt-entry--single .vt-entry__content :where(ul, ol) {
	padding-left: 1.5rem;
}

:is(body.single-post, body.single-information, body.single-service) .vt-entry--single .vt-entry__content :where(blockquote) {
	margin: 1.5rem 0;
	padding: 1rem 1.2rem;
	border-left: 3px solid rgba(201, 58, 50, 0.35);
	background: #f8fafc;
	color: #374151;
}

:is(body.single-post, body.single-information, body.single-service) .vt-entry--single .vt-entry__content :where(figure, .wp-block-image) {
	margin: 1.5rem 0;
}

:is(body.single-post, body.single-information, body.single-service) .vt-entry--single .vt-entry__content :where(img) {
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: 16px;
}

:is(body.single-post, body.single-information, body.single-service) .vt-entry--single .vt-entry__footer {
	margin-top: 1.75rem;
	padding: 1.5rem clamp(1.35rem, 3vw, 2.15rem) clamp(1.35rem, 3vw, 2.15rem);
	border-top: 1px solid rgba(15, 23, 42, 0.08);
	display: grid;
	gap: 1.5rem;
}

:is(body.single-post, body.single-information, body.single-service) .post-navigation-card {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

:is(body.single-post, body.single-information, body.single-service) .post-navigation-card__item {
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr);
	gap: 0.9rem;
	align-items: center;
	padding: 0.9rem;
	border: 1px solid rgba(15, 23, 42, 0.08);
	background: #f8fafc;
	color: inherit;
	text-decoration: none;
	transition:
		transform 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		background-color 0.2s ease;
}

:is(body.single-post, body.single-information, body.single-service) .post-navigation-card__item:hover,
:is(body.single-post, body.single-information, body.single-service) .post-navigation-card__item:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(201, 58, 50, 0.18);
	box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
	background: #ffffff;
}

:is(body.single-post, body.single-information, body.single-service) .post-navigation-card__thumbnail {
	display: block;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: #e5e7eb;
}

:is(body.single-post, body.single-information, body.single-service) .post-navigation-card__thumbnail img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

:is(body.single-post, body.single-information, body.single-service) .post-navigation-card__placeholder,
:is(body.single-post, body.single-information, body.single-service) .related-posts__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background:
		linear-gradient(135deg, rgba(201, 58, 50, 0.12), rgba(15, 23, 42, 0.08)),
		#e5e7eb;
}

:is(body.single-post, body.single-information, body.single-service) .post-navigation-card__body {
	display: grid;
	gap: 0.35rem;
	min-width: 0;
}

:is(body.single-post, body.single-information, body.single-service) .post-navigation-card__label {
	display: inline-flex;
	width: fit-content;
	align-items: center;
	padding: 0.25rem 0.55rem;
	border: 1px solid rgba(201, 58, 50, 0.18);
	background: rgba(201, 58, 50, 0.08);
	color: var(--soleil-color-accent);
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1.2;
}

:is(body.single-post, body.single-information, body.single-service) .post-navigation-card__title {
	color: #111111;
	font-size: 0.98rem;
	font-weight: 600;
	line-height: 1.55;
	overflow-wrap: anywhere;
}

:is(body.single-post, body.single-information, body.single-service) .post-navigation-card__item--next {
	text-align: left;
}

:is(body.single-post, body.single-information, body.single-service) .related-posts {
	display: grid;
	gap: 1rem;
}

:is(body.single-post, body.single-information, body.single-service) .related-posts__heading {
	margin: 0;
	color: #111111;
	font-family: var(--soleil-font-heading);
	font-size: clamp(1.15rem, 2vw, 1.6rem);
	font-weight: 600;
	line-height: 1.3;
}

:is(body.single-post, body.single-information, body.single-service) .related-posts__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	align-items: stretch;
}

:is(body.single-post, body.single-information, body.single-service) .related-posts__item {
	margin: 0;
	display: flex;
	flex-direction: column;
	min-width: 0;
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
}

:is(body.single-post, body.single-information, body.single-service) .related-posts__link {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.6rem;
	height: 100%;
	width: 100%;
	min-width: 0;
	padding: 0.72rem;
	box-sizing: border-box;
	border: 1px solid rgba(15, 23, 42, 0.08);
	background: #f8fafc;
	color: inherit;
	text-decoration: none;
	transition:
		transform 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		background-color 0.2s ease;
}

:is(body.single-post, body.single-information, body.single-service) .related-posts__link:hover,
:is(body.single-post, body.single-information, body.single-service) .related-posts__link:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(201, 58, 50, 0.18);
	box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
	background: #ffffff;
}

:is(body.single-post, body.single-information, body.single-service) .related-posts__thumbnail {
	display: block;
	width: 100%;
	flex: 0 0 auto;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: #e5e7eb;
	float: none;
	align-self: stretch;
	margin: 0;
	line-height: 0;
}

:is(body.single-post, body.single-information, body.single-service) .related-posts__thumbnail img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	float: none;
}

:is(body.single-post, body.single-information, body.single-service) .related-posts__body,
:is(body.single-post, body.single-information, body.single-service) .related-posts__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.4rem;
	width: 100%;
	min-width: 0;
	max-width: 100%;
	flex: 1 1 auto;
	overflow: hidden;
	box-sizing: border-box;
	padding: 0.85rem 0.85rem 0.9rem;
}

:is(body.single-post, body.single-information, body.single-service) .related-posts__body > time,
:is(body.single-post, body.single-information, body.single-service) .related-posts__body > .related-posts__category,
:is(body.single-post, body.single-information, body.single-service) .related-posts__meta {
	display: block;
	width: 100%;
	min-width: 0;
	color: #6b7280;
	font-size: 0.75rem;
	line-height: 1.4;
	overflow-wrap: anywhere;
}

:is(body.single-post, body.single-information, body.single-service) .related-posts__category a {
	color: inherit;
	text-decoration: none;
	max-width: 100%;
	overflow-wrap: anywhere;
}

:is(body.single-post, body.single-information, body.single-service) .related-posts__category a:hover,
:is(body.single-post, body.single-information, body.single-service) .related-posts__category a:focus-visible {
	color: var(--soleil-color-accent-bright);
}

:is(body.single-post, body.single-information, body.single-service) .related-posts__title {
	min-height: calc(1.5em * 3);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	width: 100%;
	max-width: 100%;
	margin: 0;
	color: #111111;
	font-size: 0.94rem;
	font-weight: 600;
	line-height: 1.5;
	overflow-wrap: anywhere;
	word-break: break-word;
}

:is(body.single-post, body.single-information, body.single-service) .single-post-layout {
	display: grid;
	grid-template-columns: minmax(0, 2.35fr) minmax(280px, 1fr);
	gap: clamp(1.5rem, 3vw, 2.5rem);
	align-items: start;
}

:is(body.single-post, body.single-information, body.single-service) .single-post-main {
	min-width: 0;
}

:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar {
	position: sticky;
	top: 1.5rem;
	align-self: start;
	min-width: 0;
	padding: 1.25rem;
	border: 1px solid rgba(15, 23, 42, 0.08);
	background: #f8fafc;
	color: #222222;
}

:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar__inner {
	display: grid;
	gap: 1rem;
}

:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar .widget {
	display: grid;
	gap: 0.85rem;
	padding: 1rem;
	border: 1px solid rgba(15, 23, 42, 0.08);
	background: #ffffff;
}

:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar .widget-title {
	margin: 0;
	color: #111111;
	font-family: var(--soleil-font-heading);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.35;
}

:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar .search-form {
	display: grid;
	gap: 0.65rem;
}

:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar .search-field,
:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar input[type="search"] {
	width: 100%;
	min-height: 44px;
	padding: 0.75rem 0.9rem;
	border: 1px solid rgba(15, 23, 42, 0.12);
	background: #ffffff;
	color: #111111;
}

:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar .search-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0.7rem 0.95rem;
	border: 1px solid rgba(201, 58, 50, 0.25);
	background: rgba(201, 58, 50, 0.08);
	color: var(--soleil-color-accent);
}

:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar__list,
:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar__recent-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar__list li + li,
:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar__recent-item + .single-post-sidebar__recent-item {
	margin-top: 0.55rem;
}

:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar__list a,
:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar__recent-link,
:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar__tags-cloud a {
	color: #222222;
	text-decoration: none;
}

:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar__list a:hover,
:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar__list a:focus-visible,
:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar__recent-link:hover,
:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar__recent-link:focus-visible,
:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar__tags-cloud a:hover,
:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar__tags-cloud a:focus-visible {
	color: var(--soleil-color-accent-bright);
}

:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar__recent-link {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: 0.75rem;
	align-items: center;
	padding: 0.45rem 0;
}

:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar__recent-thumb {
	display: block;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: #e5e7eb;
}

:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar__recent-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar__recent-body {
	display: grid;
	gap: 0.2rem;
	min-width: 0;
}

:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar__recent-title {
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.5;
}

:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar__recent-date {
	color: #6b7280;
	font-size: 0.74rem;
	line-height: 1.4;
}

:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar__tags-cloud ul,
:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar__tags-cloud .tagcloud {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar__tags-cloud a {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 0.35rem 0.65rem;
	border: 1px solid rgba(201, 58, 50, 0.16);
	background: rgba(201, 58, 50, 0.06);
	font-size: 0.82rem;
	line-height: 1.3;
}

:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background:
		linear-gradient(135deg, rgba(201, 58, 50, 0.12), rgba(15, 23, 42, 0.08)),
		#e5e7eb;
}

body.blog:not(.home) .archive-layout__sidebar,
body.archive:not(.home) .archive-layout__sidebar,
body.category:not(.home) .archive-layout__sidebar,
body.tag:not(.home) .archive-layout__sidebar,
body.date:not(.home) .archive-layout__sidebar,
body.author:not(.home) .archive-layout__sidebar,
body.search:not(.home) .archive-layout__sidebar {
	position: sticky;
	top: 1.5rem;
	align-self: start;
	min-width: 0;
	padding: 1.25rem;
	border: 1px solid rgba(15, 23, 42, 0.08);
	background: #f8fafc;
	color: #222222;
}

body.blog:not(.home) .archive-layout__sidebar .single-post-sidebar__inner,
body.archive:not(.home) .archive-layout__sidebar .single-post-sidebar__inner,
body.category:not(.home) .archive-layout__sidebar .single-post-sidebar__inner,
body.tag:not(.home) .archive-layout__sidebar .single-post-sidebar__inner,
body.date:not(.home) .archive-layout__sidebar .single-post-sidebar__inner,
body.author:not(.home) .archive-layout__sidebar .single-post-sidebar__inner,
body.search:not(.home) .archive-layout__sidebar .single-post-sidebar__inner {
	display: grid;
	gap: 1rem;
}

body.blog:not(.home) .archive-layout__sidebar .widget,
body.archive:not(.home) .archive-layout__sidebar .widget,
body.category:not(.home) .archive-layout__sidebar .widget,
body.tag:not(.home) .archive-layout__sidebar .widget,
body.date:not(.home) .archive-layout__sidebar .widget,
body.author:not(.home) .archive-layout__sidebar .widget,
body.search:not(.home) .archive-layout__sidebar .widget {
	display: grid;
	gap: 0.85rem;
	margin: 0;
	padding: 1rem;
	border: 1px solid rgba(15, 23, 42, 0.08);
	background: #ffffff;
	color: #222222;
}

body.blog:not(.home) .archive-layout__sidebar .widget-title,
body.archive:not(.home) .archive-layout__sidebar .widget-title,
body.category:not(.home) .archive-layout__sidebar .widget-title,
body.tag:not(.home) .archive-layout__sidebar .widget-title,
body.date:not(.home) .archive-layout__sidebar .widget-title,
body.author:not(.home) .archive-layout__sidebar .widget-title,
body.search:not(.home) .archive-layout__sidebar .widget-title {
	margin: 0;
	color: #111111;
	font-family: var(--soleil-font-heading);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: 0;
}

body.blog:not(.home) .archive-layout__sidebar .search-form,
body.archive:not(.home) .archive-layout__sidebar .search-form,
body.category:not(.home) .archive-layout__sidebar .search-form,
body.tag:not(.home) .archive-layout__sidebar .search-form,
body.date:not(.home) .archive-layout__sidebar .search-form,
body.author:not(.home) .archive-layout__sidebar .search-form,
body.search:not(.home) .archive-layout__sidebar .search-form {
	display: grid;
	gap: 0.65rem;
}

body.blog:not(.home) .archive-layout__sidebar .search-field,
body.blog:not(.home) .archive-layout__sidebar input[type="search"],
body.archive:not(.home) .archive-layout__sidebar .search-field,
body.archive:not(.home) .archive-layout__sidebar input[type="search"],
body.category:not(.home) .archive-layout__sidebar .search-field,
body.category:not(.home) .archive-layout__sidebar input[type="search"],
body.tag:not(.home) .archive-layout__sidebar .search-field,
body.tag:not(.home) .archive-layout__sidebar input[type="search"],
body.date:not(.home) .archive-layout__sidebar .search-field,
body.date:not(.home) .archive-layout__sidebar input[type="search"],
body.author:not(.home) .archive-layout__sidebar .search-field,
body.author:not(.home) .archive-layout__sidebar input[type="search"],
body.search:not(.home) .archive-layout__sidebar .search-field,
body.search:not(.home) .archive-layout__sidebar input[type="search"] {
	width: 100%;
	min-height: 44px;
	padding: 0.75rem 0.9rem;
	border: 1px solid rgba(15, 23, 42, 0.12);
	background: #ffffff;
	color: #111111;
}

body.blog:not(.home) .archive-layout__sidebar .search-submit,
body.archive:not(.home) .archive-layout__sidebar .search-submit,
body.category:not(.home) .archive-layout__sidebar .search-submit,
body.tag:not(.home) .archive-layout__sidebar .search-submit,
body.date:not(.home) .archive-layout__sidebar .search-submit,
body.author:not(.home) .archive-layout__sidebar .search-submit,
body.search:not(.home) .archive-layout__sidebar .search-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0.7rem 0.95rem;
	border: 1px solid rgba(201, 58, 50, 0.25);
	background: rgba(201, 58, 50, 0.08);
	color: var(--soleil-color-accent);
}

body.blog:not(.home) .archive-layout__sidebar :where(ul, ol),
body.archive:not(.home) .archive-layout__sidebar :where(ul, ol),
body.category:not(.home) .archive-layout__sidebar :where(ul, ol),
body.tag:not(.home) .archive-layout__sidebar :where(ul, ol),
body.date:not(.home) .archive-layout__sidebar :where(ul, ol),
body.author:not(.home) .archive-layout__sidebar :where(ul, ol),
body.search:not(.home) .archive-layout__sidebar :where(ul, ol) {
	margin: 0;
	padding: 0;
	list-style: none;
}

body.blog:not(.home) .archive-layout__sidebar li + li,
body.archive:not(.home) .archive-layout__sidebar li + li,
body.category:not(.home) .archive-layout__sidebar li + li,
body.tag:not(.home) .archive-layout__sidebar li + li,
body.date:not(.home) .archive-layout__sidebar li + li,
body.author:not(.home) .archive-layout__sidebar li + li,
body.search:not(.home) .archive-layout__sidebar li + li {
	margin-top: 0.55rem;
}

body.blog:not(.home) .archive-layout__sidebar a,
body.archive:not(.home) .archive-layout__sidebar a,
body.category:not(.home) .archive-layout__sidebar a,
body.tag:not(.home) .archive-layout__sidebar a,
body.date:not(.home) .archive-layout__sidebar a,
body.author:not(.home) .archive-layout__sidebar a,
body.search:not(.home) .archive-layout__sidebar a {
	color: #222222;
	text-decoration: none;
}

body.blog:not(.home) .archive-layout__sidebar a:hover,
body.blog:not(.home) .archive-layout__sidebar a:focus-visible,
body.archive:not(.home) .archive-layout__sidebar a:hover,
body.archive:not(.home) .archive-layout__sidebar a:focus-visible,
body.category:not(.home) .archive-layout__sidebar a:hover,
body.category:not(.home) .archive-layout__sidebar a:focus-visible,
body.tag:not(.home) .archive-layout__sidebar a:hover,
body.tag:not(.home) .archive-layout__sidebar a:focus-visible,
body.date:not(.home) .archive-layout__sidebar a:hover,
body.date:not(.home) .archive-layout__sidebar a:focus-visible,
body.author:not(.home) .archive-layout__sidebar a:hover,
body.author:not(.home) .archive-layout__sidebar a:focus-visible,
body.search:not(.home) .archive-layout__sidebar a:hover,
body.search:not(.home) .archive-layout__sidebar a:focus-visible {
	color: var(--soleil-color-accent-bright);
}

body.blog:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-link,
body.archive:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-link,
body.category:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-link,
body.tag:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-link,
body.date:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-link,
body.author:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-link,
body.search:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-link {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: 0.75rem;
	align-items: center;
	padding: 0.45rem 0;
}

body.blog:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-thumb,
body.archive:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-thumb,
body.category:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-thumb,
body.tag:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-thumb,
body.date:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-thumb,
body.author:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-thumb,
body.search:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-thumb {
	display: block;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: #e5e7eb;
}

body.blog:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-thumb img,
body.archive:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-thumb img,
body.category:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-thumb img,
body.tag:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-thumb img,
body.date:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-thumb img,
body.author:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-thumb img,
body.search:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

body.blog:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-body,
body.archive:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-body,
body.category:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-body,
body.tag:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-body,
body.date:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-body,
body.author:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-body,
body.search:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-body {
	display: grid;
	gap: 0.2rem;
	min-width: 0;
}

body.blog:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-title,
body.archive:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-title,
body.category:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-title,
body.tag:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-title,
body.date:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-title,
body.author:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-title,
body.search:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-title {
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.5;
}

body.blog:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-date,
body.archive:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-date,
body.category:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-date,
body.tag:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-date,
body.date:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-date,
body.author:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-date,
body.search:not(.home) .archive-layout__sidebar .single-post-sidebar__recent-date {
	color: #6b7280;
	font-size: 0.74rem;
	line-height: 1.4;
}

body.blog:not(.home) .archive-layout__sidebar :where(.single-post-sidebar__tags-cloud ul, .single-post-sidebar__tags-cloud .tagcloud, .tagcloud, .wp-block-tag-cloud),
body.archive:not(.home) .archive-layout__sidebar :where(.single-post-sidebar__tags-cloud ul, .single-post-sidebar__tags-cloud .tagcloud, .tagcloud, .wp-block-tag-cloud),
body.category:not(.home) .archive-layout__sidebar :where(.single-post-sidebar__tags-cloud ul, .single-post-sidebar__tags-cloud .tagcloud, .tagcloud, .wp-block-tag-cloud),
body.tag:not(.home) .archive-layout__sidebar :where(.single-post-sidebar__tags-cloud ul, .single-post-sidebar__tags-cloud .tagcloud, .tagcloud, .wp-block-tag-cloud),
body.date:not(.home) .archive-layout__sidebar :where(.single-post-sidebar__tags-cloud ul, .single-post-sidebar__tags-cloud .tagcloud, .tagcloud, .wp-block-tag-cloud),
body.author:not(.home) .archive-layout__sidebar :where(.single-post-sidebar__tags-cloud ul, .single-post-sidebar__tags-cloud .tagcloud, .tagcloud, .wp-block-tag-cloud),
body.search:not(.home) .archive-layout__sidebar :where(.single-post-sidebar__tags-cloud ul, .single-post-sidebar__tags-cloud .tagcloud, .tagcloud, .wp-block-tag-cloud) {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

body.blog:not(.home) .archive-layout__sidebar :where(.single-post-sidebar__tags-cloud a, .tagcloud a, .wp-block-tag-cloud a),
body.archive:not(.home) .archive-layout__sidebar :where(.single-post-sidebar__tags-cloud a, .tagcloud a, .wp-block-tag-cloud a),
body.category:not(.home) .archive-layout__sidebar :where(.single-post-sidebar__tags-cloud a, .tagcloud a, .wp-block-tag-cloud a),
body.tag:not(.home) .archive-layout__sidebar :where(.single-post-sidebar__tags-cloud a, .tagcloud a, .wp-block-tag-cloud a),
body.date:not(.home) .archive-layout__sidebar :where(.single-post-sidebar__tags-cloud a, .tagcloud a, .wp-block-tag-cloud a),
body.author:not(.home) .archive-layout__sidebar :where(.single-post-sidebar__tags-cloud a, .tagcloud a, .wp-block-tag-cloud a),
body.search:not(.home) .archive-layout__sidebar :where(.single-post-sidebar__tags-cloud a, .tagcloud a, .wp-block-tag-cloud a) {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 0.35rem 0.65rem;
	border: 1px solid rgba(201, 58, 50, 0.16);
	background: rgba(201, 58, 50, 0.06);
	font-size: 0.82rem;
	line-height: 1.3;
}

body.blog:not(.home) .archive-layout__sidebar .single-post-sidebar__placeholder,
body.archive:not(.home) .archive-layout__sidebar .single-post-sidebar__placeholder,
body.category:not(.home) .archive-layout__sidebar .single-post-sidebar__placeholder,
body.tag:not(.home) .archive-layout__sidebar .single-post-sidebar__placeholder,
body.date:not(.home) .archive-layout__sidebar .single-post-sidebar__placeholder,
body.author:not(.home) .archive-layout__sidebar .single-post-sidebar__placeholder,
body.search:not(.home) .archive-layout__sidebar .single-post-sidebar__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background:
		linear-gradient(135deg, rgba(201, 58, 50, 0.12), rgba(15, 23, 42, 0.08)),
		#e5e7eb;
}

.site-main :where(.wpcf7, .wpforms-container, .variable-form, form:not(.search-form):not(.vt-search-form)) {
	width: 100%;
	max-width: 960px;
	margin-inline: auto;
	color: #222222;
}

.site-main :where(.wpcf7 form, .wpforms-form, .variable-form, form:not(.search-form):not(.vt-search-form)) {
	display: grid;
	gap: clamp(1.5rem, 3vw, 2rem);
}

.site-main :where(.wpcf7 p, .wpforms-field, .variable-form__row, form:not(.search-form):not(.vt-search-form) > p) {
	margin: 0;
}

.site-main :where(
	.wpcf7 label,
	.wpforms-field-label,
	.variable-form label,
	form:not(.search-form):not(.vt-search-form) label
) {
	display: grid;
	gap: 0.5rem;
	margin: 0 0 0.5rem;
	color: #111111;
	font-weight: 700;
	line-height: 1.5;
}

.site-main :where(
	input[type="text"],
	input[type="email"],
	input[type="tel"],
	input[type="url"],
	input[type="number"],
	input[type="date"],
	textarea,
	select
) {
	width: 100%;
	max-width: 100%;
	min-height: 56px;
	padding: 0.9rem 1rem;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	background: #ffffff;
	box-shadow: none;
	color: #222222;
	font: inherit;
	line-height: 1.5;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		background-color 0.2s ease;
}

.site-main :where(textarea) {
	min-height: 180px;
	resize: vertical;
}

.site-main :where(select) {
	appearance: auto;
}

.site-main :where(
	input[type="text"],
	input[type="email"],
	input[type="tel"],
	input[type="url"],
	input[type="number"],
	input[type="date"],
	textarea,
	select
):focus {
	border-color: #c43a3a;
	box-shadow: 0 0 0 4px rgba(196, 58, 58, 0.12);
	outline: 0;
}

.site-main :where(
	input[type="text"],
	input[type="email"],
	input[type="tel"],
	input[type="url"],
	input[type="number"],
	input[type="date"],
	textarea
)::placeholder {
	color: rgba(34, 34, 34, 0.46);
}

.site-main :where(
	.required,
	.is-required,
	.wpcf7-required,
	.wpforms-required-label,
	abbr.required
) {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	min-height: 20px;
	margin-left: 0.35rem;
	padding: 2px 8px;
	border: 0;
	border-radius: 999px;
	background: #c43a3a;
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.3;
	text-decoration: none;
	vertical-align: middle;
}

.site-main :where(
	.wpcf7 input[type="submit"],
	.wpcf7-submit,
	.wpforms-submit,
	.variable-form input[type="submit"],
	.variable-form button[type="submit"],
	form:not(.search-form):not(.vt-search-form) input[type="submit"],
	form:not(.search-form):not(.vt-search-form) button[type="submit"]
) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 56px;
	padding: 0 2rem;
	border: 0;
	border-radius: 999px;
	background: #c43a3a;
	box-shadow: none;
	color: #ffffff;
	font: inherit;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
	cursor: pointer;
	transition:
		background-color 0.2s ease,
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.site-main :where(
	.wpcf7 input[type="submit"],
	.wpcf7-submit,
	.wpforms-submit,
	.variable-form input[type="submit"],
	.variable-form button[type="submit"],
	form:not(.search-form):not(.vt-search-form) input[type="submit"],
	form:not(.search-form):not(.vt-search-form) button[type="submit"]
):hover,
.site-main :where(
	.wpcf7 input[type="submit"],
	.wpcf7-submit,
	.wpforms-submit,
	.variable-form input[type="submit"],
	.variable-form button[type="submit"],
	form:not(.search-form):not(.vt-search-form) input[type="submit"],
	form:not(.search-form):not(.vt-search-form) button[type="submit"]
):focus-visible {
	transform: translateY(-1px);
	background: #a82e2e;
	color: #ffffff;
}

.site-main :where(
	.wpcf7 input[type="submit"],
	.wpcf7-submit,
	.wpforms-submit,
	.variable-form input[type="submit"],
	.variable-form button[type="submit"],
	form:not(.search-form):not(.vt-search-form) input[type="submit"],
	form:not(.search-form):not(.vt-search-form) button[type="submit"]
):focus-visible {
	box-shadow: 0 0 0 4px rgba(196, 58, 58, 0.18);
	outline: 0;
}

.site-main :where(.wpcf7-form-control-wrap) {
	display: block;
}

.site-main :where(.wpcf7-list-item) {
	margin-left: 0;
}

.site-main :where(.wpcf7-list-item label) {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin: 0;
	font-weight: 500;
}

.site-main :where(.wpcf7-not-valid-tip, .wpforms-error, label.wpforms-error) {
	display: block;
	margin-top: 0.5rem;
	padding: 0.75rem 0.9rem;
	border-left: 4px solid #c43a3a;
	background: rgba(196, 58, 58, 0.08);
	color: #8f2424;
	font-size: 0.9rem;
	line-height: 1.6;
}

.site-main :where(
	.wpcf7 form.invalid .wpcf7-response-output,
	.wpcf7 form.unaccepted .wpcf7-response-output,
	.wpcf7 form.payment-required .wpcf7-response-output,
	.wpforms-error-container,
	.variable-form__message--error
) {
	margin: 0;
	padding: 1rem;
	border: 0;
	border-left: 4px solid #c43a3a;
	background: rgba(196, 58, 58, 0.08);
	color: #8f2424;
	line-height: 1.7;
}

.site-main :where(
	.wpcf7 form.sent .wpcf7-response-output,
	.wpforms-confirmation-container-full,
	.variable-form__message--success
) {
	margin: 0;
	padding: 1rem;
	border: 0;
	border-left: 4px solid #1e965a;
	background: rgba(30, 150, 90, 0.08);
	color: #176c43;
	line-height: 1.7;
}

.site-main :where(.wpcf7-spinner) {
	margin: 0 0 0 0.75rem;
}

@media (min-width: 768px) and (max-width: 1024px) {
	.archive-layout {
		grid-template-columns: minmax(0, 1fr) 300px;
	}

	.service-archive-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	:is(body.single-post, body.single-information, body.single-service) .vt-entry--single {
		width: 100%;
	}

	:is(body.single-post, body.single-information, body.single-service) .vt-entry--single .vt-entry__meta {
		padding-inline: 1.15rem;
		gap: 0.9rem 1rem;
	}

	:is(body.single-post, body.single-information, body.single-service) .related-posts__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	:is(body.single-post, body.single-information, body.single-service) .single-post-layout {
		grid-template-columns: minmax(0, 1fr);
	}

	:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar {
		position: static;
	}
}

@media (max-width: 767px) {
	.archive-layout {
		grid-template-columns: minmax(0, 1fr);
		gap: 1.25rem;
	}

	.archive-layout .single-post-sidebar {
		max-width: none;
	}

	.site-main :where(.wpcf7 form, .wpforms-form, .variable-form, form:not(.search-form):not(.vt-search-form)) {
		gap: 1.25rem;
	}

	.site-main :where(
		input[type="text"],
		input[type="email"],
		input[type="tel"],
		input[type="url"],
		input[type="number"],
		input[type="date"],
		textarea,
		select
	) {
		min-height: 54px;
		padding-inline: 0.9rem;
	}

	.site-main :where(textarea) {
		min-height: 170px;
	}

	body.blog:not(.home) .archive-layout__sidebar,
	body.archive:not(.home) .archive-layout__sidebar,
	body.category:not(.home) .archive-layout__sidebar,
	body.tag:not(.home) .archive-layout__sidebar,
	body.date:not(.home) .archive-layout__sidebar,
	body.author:not(.home) .archive-layout__sidebar,
	body.search:not(.home) .archive-layout__sidebar {
		position: static;
		padding: 1rem;
	}

	body.blog:not(.home) .archive-layout__sidebar .widget,
	body.archive:not(.home) .archive-layout__sidebar .widget,
	body.category:not(.home) .archive-layout__sidebar .widget,
	body.tag:not(.home) .archive-layout__sidebar .widget,
	body.date:not(.home) .archive-layout__sidebar .widget,
	body.author:not(.home) .archive-layout__sidebar .widget,
	body.search:not(.home) .archive-layout__sidebar .widget {
		padding: 0.95rem;
	}

	.service-archive-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.archive-card--horizontal .archive-card__link {
		grid-template-columns: minmax(0, 1fr);
	}

	.archive-card--horizontal .archive-card__thumbnail {
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.075);
	}

	body.blog:not(.home) .vt-post-card,
	body.archive:not(.home) .vt-post-card,
	body.category:not(.home) .vt-post-card,
	body.tag:not(.home) .vt-post-card,
	body.date:not(.home) .vt-post-card,
	body.author:not(.home) .vt-post-card,
	body.search:not(.home) .vt-post-card {
	}

	:is(body.single-post, body.single-information, body.single-service) .vt-entry--single {
		width: 100%;
		margin-top: -40px;
		margin-bottom: 40px;
		border-radius: 0;
	}

	:is(body.single-post, body.single-information, body.single-service) .vt-entry--single .vt-entry__content {
		padding: 1rem 1.15rem 1.15rem;
	}

	:is(body.single-post, body.single-information, body.single-service) .vt-entry--single .vt-entry__footer {
		padding: 1rem 1.15rem 1.15rem;
	}

	:is(body.single-post, body.single-information, body.single-service) .vt-entry--single .vt-entry__meta {
		padding: 0.65rem 1.15rem;
		gap: 0.75rem;
	}

	:is(body.single-post, body.single-information, body.single-service) .post-navigation-card,
	:is(body.single-post, body.single-information, body.single-service) .related-posts__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	:is(body.single-post, body.single-information, body.single-service) .post-navigation-card__item {
		grid-template-columns: 88px minmax(0, 1fr);
	}

	:is(body.single-post, body.single-information, body.single-service) .single-post-layout {
		grid-template-columns: minmax(0, 1fr);
		gap: 1rem;
	}

	:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar {
		position: static;
		padding: 1rem;
	}

	:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar .widget {
		padding: 0.9rem;
	}

	:is(body.single-post, body.single-information, body.single-service) .single-post-sidebar__recent-link {
		grid-template-columns: 56px minmax(0, 1fr);
	}

	:is(body.single-post, body.single-information, body.single-service) .related-posts__link {
		padding: 0.68rem;
	}

	:is(body.single-post, body.single-information, body.single-service) .related-posts__title {
		min-height: calc(1.5em * 2);
		-webkit-line-clamp: 2;
	}

	:is(body.single-post, body.single-information, body.single-service) .related-posts__body,
	:is(body.single-post, body.single-information, body.single-service) .related-posts__content {
		padding: 0.75rem 0.75rem 0.8rem;
	}
}

.site-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background:
		radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.08), transparent 22rem),
		linear-gradient(135deg, #6d0000 0%, #3a0000 48%, #240000 100%);
	color: rgba(255, 255, 255, 0.78);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: minmax(260px, 1.25fr) minmax(220px, 0.75fr);
	gap: clamp(2rem, 5vw, 4rem);
	width: min(100% - 40px, var(--soleil-content-wide));
	padding-block: clamp(3rem, 7vw, 5rem) 1.5rem;
}

.site-footer__company {
	grid-column: 1;
	grid-row: 2;
	max-width: 38rem;
	margin: 0;
}

.site-footer__logo {
	margin-bottom: 1rem;
}

.site-footer__company-name {
	margin: 0 0 0.75rem;
	color: #ffffff;
	font-family: var(--soleil-font-heading);
	font-size: 1.1rem;
	font-weight: 500;
}

.site-footer__company-list {
	display: grid;
	gap: 0.35rem;
	margin: 0;
	padding: 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.9rem;
	line-height: 1.7;
	list-style: none;
}

.site-footer__company-item + .site-footer__company-item {
	margin-top: 0;
}

.footer-contact-links,
.footer-social-links {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 1rem;
	margin-right: 10px;
	vertical-align: top;
}

.footer-social-links {
	margin-right: 0;
}

.footer-contact-links__item,
.footer-social-links__item {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease,
		transform 0.2s ease;
}

.footer-contact-links__item:hover,
.footer-contact-links__item:focus-visible,
.footer-social-links__item:hover,
.footer-social-links__item:focus-visible {
	border-color: rgba(239, 90, 79, 0.68);
	background: rgba(201, 58, 50, 0.18);
	color: #ffffff;
	transform: translateY(-2px);
}

.footer-contact-links__icon,
.footer-social-links__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.5em;
	color: inherit;
}

.footer-contact-links__icon svg,
.footer-social-links__icon svg {
	display: block;
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.footer-contact-links__label,
.footer-social-links__label {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	clip-path: inset(50%);
}

.footer-nav {
	grid-column: 1 / -1;
	grid-row: 1;
	justify-self: center;
	width: 100%;
}

.footer-menu-toggle {
	display: none;
}

.footer-nav__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem clamp(1.5rem, 3vw, 2rem);
	margin: 0;
	padding: 0;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.5;
	list-style: none;
}

.site-footer a,
.footer-nav__list a {
	color: rgba(255, 255, 255, 0.78);
	text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible,
.footer-nav__list a:hover,
.footer-nav__list a:focus-visible {
	color: #ffffff;
}

.footer-nav__list a:hover,
.footer-nav__list a:focus-visible {
	color: var(--soleil-color-accent-bright);
}

.site-footer__copyright,
.site-footer__copyright-note {
	grid-column: 1 / -1;
	margin: 0;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.82rem;
	text-align: center;
}

.site-footer__copyright-note {
	padding-top: 0;
	border-top: 0;
}

.soleil-scrolltop {
	position: fixed;
	right: 20px;
	bottom: calc(20px + env(safe-area-inset-bottom));
	z-index: 60;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	background: rgba(20, 20, 20, 0.75);
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(10px);
	color: rgba(255, 255, 255, 0.9);
	font: inherit;
	font-size: 1.2rem;
	line-height: 1;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(10px);
	transition:
		opacity 0.28s ease,
		visibility 0.28s ease,
		transform 0.28s ease,
		border-color 0.2s ease,
		background-color 0.2s ease,
		color 0.2s ease,
		box-shadow 0.2s ease;
}

.soleil-scrolltop.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.soleil-scrolltop:hover,
.soleil-scrolltop:focus-visible {
	border-color: rgba(239, 90, 79, 0.58);
	background: rgba(201, 58, 50, 0.85);
	color: #ffffff;
	box-shadow: 0 16px 34px rgba(201, 58, 50, 0.18);
}

.soleil-scrolltop:focus-visible {
	outline: 2px solid rgba(239, 90, 79, 0.38);
	outline-offset: 3px;
}

.soleil-scrolltop__icon {
	display: block;
	transform: translateY(-1px);
}

@media (max-width: 767px) {
	.site-footer__inner {
		grid-template-columns: 1fr;
		grid-auto-rows: auto;
		padding-block: 1rem 1rem;
		gap: 1rem;
	}

	.footer-menu-toggle {
		grid-column: 1 / -1;
		grid-row: 1;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		justify-self: start;
		width: 2.25rem;
		height: 2.25rem;
		margin: 0 0 0.2rem 0;
		padding: 0;
		border: 1px solid rgba(255, 255, 255, 0.18);
		border-radius: 999px;
		background: rgba(255, 255, 255, 0.08);
		color: rgba(255, 255, 255, 0.82);
		font: inherit;
		cursor: pointer;
		transition:
			border-color 0.2s ease,
			background-color 0.2s ease,
			color 0.2s ease,
			transform 0.2s ease;
	}

	.footer-menu-toggle:hover,
	.footer-menu-toggle:focus-visible,
	.footer-menu-toggle[aria-expanded="true"] {
		border-color: rgba(239, 90, 79, 0.58);
		background: rgba(201, 58, 50, 0.16);
		color: #ffffff;
	}

	.footer-menu-toggle:focus-visible {
		outline: 2px solid rgba(239, 90, 79, 0.4);
		outline-offset: 3px;
	}

	.footer-menu-toggle__icon {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		font-size: 1.05rem;
		font-weight: 700;
		line-height: 1;
		transition: transform 0.25s ease;
	}

	.footer-menu-toggle[aria-expanded="true"] .footer-menu-toggle__icon {
		transform: rotate(180deg);
	}

	.variable-thema-footer-menu-ready .footer-navigation {
		display: none;
	}

	.variable-thema-footer-menu-ready .footer-navigation.is-open {
		display: block;
	}

	.footer-navigation {
		grid-column: 1 / -1;
		grid-row: 2;
		margin-bottom: 0.15rem;
	}

	.site-footer__company {
		grid-column: 1;
		grid-row: 3;
		margin-top: 0.15rem;
	}

	.site-footer__copyright,
	.site-footer__copyright-note {
		grid-column: 1;
		grid-row: 4;
	}

	.site-footer__copyright {
		padding-top: 0.9rem;
	}

	.site-footer__copyright-note {
		grid-row: 5;
	}

	.soleil-scrolltop {
		right: 16px;
		bottom: calc(16px + env(safe-area-inset-bottom));
		width: 52px;
		height: 52px;
		font-size: 1.1rem;
	}
}

	@media (max-width: 900px) {
		.vt-cta__actions {
		grid-template-columns: 1fr;
		max-width: 420px;
	}

}

@media (max-width: 599px) {
	.site-footer__inner {
		grid-template-columns: 1fr;
		width: min(100% - 28px, var(--soleil-content-wide));
	}

	.site-footer__company {
		grid-column: 1;
	}

	.footer-nav {
		justify-self: center;
	}

	.footer-nav__list {
		justify-content: center;
	}

	a.vt-cta__button {
		min-height: 58px;
		padding-inline: 1rem;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	body.page:not(.home) .site-main__inner > .vt-entry--page {
		width: min(100% - 32px, 920px);
		padding: 44px clamp(28px, 5vw, 56px);
	}
}

@media (max-width: 767px) {
	body.page:not(.home) .site-main__inner > .vt-entry--page {
		width: min(100% - 24px, 920px);
		margin-top: 0;
		margin-bottom: 48px;
		padding: 34px 20px 42px;
		border-radius: 0;
	}

	body.page:not(.home) .site-main__inner > .vt-entry--page .vt-entry__content,
	body.page:not(.home) .site-main__inner > .vt-entry--page .entry-content {
		gap: 1rem;
	}

	body.page:not(.home) .site-main__inner > .vt-entry--page .vt-entry__content :where(h2, h3, h4, h5, h6):not(.vt-cta *),
	body.page:not(.home) .site-main__inner > .vt-entry--page .entry-content :where(h2, h3, h4, h5, h6):not(.vt-cta *) {
		margin-top: 1.35rem;
	}

	body.page:not(.home) .site-main__inner > .vt-entry--page .vt-entry__content :where(figure, .wp-block-image),
	body.page:not(.home) .site-main__inner > .vt-entry--page .entry-content :where(figure, .wp-block-image) {
		margin: 1rem 0;
	}

	body.page:not(.home) .site-main__inner > .vt-entry--page :is(.vt-entry__content, .entry-content) .vt-faq__item {
		padding: 1.2rem;
	}

	body.page:not(.home) .vt-page-header {
		min-height: clamp(280px, 68vw, 360px);
		margin-bottom: 16px;
		width: 100vw;
	}

	body.page:not(.home) .vt-page-header__inner {
		min-height: clamp(280px, 68vw, 360px);
		padding: 1rem 1.25rem;
	}

	body.page:not(.home) .vt-page-header__content {
		max-width: 36rem;
		transform: translateY(-0.18em);
	}

	body.page:not(.home) .vt-page-header__title {
		font-size: clamp(1.7rem, 8vw, 2.4rem);
		line-height: 1.2;
	}
}
