/**
 * VagFix Blog 2026
 * Se incarca doar pe pagina cu template-ul "VagFix Blog 2026".
 */

.vf-blog {
	/* Brand (preluat din Elementor Kit) */
	--vf-brand: #e64a30;
	--vf-brand-deep: #c03a23;
	--vf-accent: #e3a10e;

	/* Neutre */
	--vf-ink: #16181d;
	--vf-ink-soft: #3c424b;
	--vf-body: #5d646d;
	--vf-muted: #8b929b;
	--vf-line: #e5e8ec;
	--vf-line-soft: #eff1f4;
	--vf-surface: #fff;
	--vf-bg: #f6f7f9;

	/* Forma */
	--vf-radius: 18px;
	--vf-radius-lg: 26px;
	--vf-radius-pill: 999px;
	--vf-shell: 1240px;
	--vf-gutter: clamp(1.15rem, 4vw, 2.5rem);

	--vf-shadow: 0 1px 2px rgba(16, 18, 23, .04), 0 10px 26px -14px rgba(16, 18, 23, .14);
	--vf-shadow-lg: 0 2px 4px rgba(16, 18, 23, .04), 0 28px 56px -24px rgba(16, 18, 23, .28);

	--vf-ease: cubic-bezier(.22, 1, .36, 1);

	background: var(--vf-surface);
	color: var(--vf-body);
	font-family: "Helvetica", "Helvetica Neue", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}

.vf-blog *,
.vf-blog *::before,
.vf-blog *::after {
	box-sizing: border-box;
}

.vf-shell {
	width: 100%;
	max-width: var(--vf-shell);
	margin-inline: auto;
	padding-inline: var(--vf-gutter);
}

.vf-blog [hidden] {
	display: none !important;
}

.vf-blog .screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.vf-blog :focus-visible {
	outline: 2px solid var(--vf-brand);
	outline-offset: 3px;
	border-radius: 4px;
}

.vf-sep {
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: currentColor;
	opacity: .45;
	flex: none;
}

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

.vf-hero {
	position: relative;
	isolation: isolate;
	padding-block: clamp(3rem, 7vw, 6.5rem) clamp(2.25rem, 4vw, 3.5rem);
	background:
		radial-gradient(110% 85% at 12% -10%, color-mix(in srgb, var(--vf-brand) 14%, transparent), transparent 58%),
		radial-gradient(90% 75% at 92% 0%, color-mix(in srgb, var(--vf-accent) 16%, transparent), transparent 55%),
		var(--vf-bg);
	border-bottom: 1px solid var(--vf-line-soft);
}

/* Grila fina decorativa peste hero. */
.vf-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image:
		linear-gradient(to right, rgba(22, 24, 29, .05) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(22, 24, 29, .05) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(90% 70% at 50% 0%, #000 10%, transparent 75%);
	-webkit-mask-image: radial-gradient(90% 70% at 50% 0%, #000 10%, transparent 75%);
}

.vf-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	margin: 0 0 1.1rem;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--vf-brand-deep);
}

.vf-eyebrow__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--vf-brand);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--vf-brand) 18%, transparent);
}

.vf-hero__title {
	margin: 0;
	max-width: 19ch;
	font-size: clamp(2.3rem, 1.2rem + 4.2vw, 4.25rem);
	line-height: 1.03;
	letter-spacing: -.035em;
	font-weight: 700;
	color: var(--vf-ink);
	text-wrap: balance;
}

.vf-hero__lead {
	margin: 1.4rem 0 0;
	max-width: 56ch;
	font-size: clamp(1.02rem, .95rem + .35vw, 1.2rem);
	line-height: 1.65;
	color: var(--vf-body);
	text-wrap: pretty;
}

.vf-hero__stats {
	display: flex;
	flex-wrap: wrap;
	gap: .55rem 1.6rem;
	margin: 2rem 0 0;
	padding: 0;
	list-style: none;
	font-size: .9rem;
	color: var(--vf-muted);
}

.vf-hero__stats li {
	display: flex;
	align-items: baseline;
	gap: .4rem;
}

.vf-hero__stats strong {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--vf-ink);
	font-variant-numeric: tabular-nums;
}

/* ------------------------------------------------------------- Chip-uri -- */

.vf-chip {
	display: inline-flex;
	align-items: center;
	padding: .32rem .7rem;
	border-radius: var(--vf-radius-pill);
	background: color-mix(in srgb, var(--vf-ink) 6%, transparent);
	color: var(--vf-ink-soft);
	font-size: .74rem;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	line-height: 1.4;
}

.vf-chip--brand {
	background: var(--vf-brand);
	color: #fff;
}

.vf-chip--over {
	position: absolute;
	inset-block-start: .8rem;
	inset-inline-start: .8rem;
	z-index: 2;
	background: color-mix(in srgb, #fff 82%, transparent);
	color: var(--vf-ink);
	backdrop-filter: blur(10px) saturate(1.6);
	-webkit-backdrop-filter: blur(10px) saturate(1.6);
	box-shadow: 0 2px 10px rgba(16, 18, 23, .12);
}

/* ------------------------------------------------------------- Featured -- */

.vf-featured-wrap {
	margin-block: clamp(2rem, 4vw, 3.5rem);
}

.vf-featured {
	position: relative;
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: clamp(1.5rem, 3vw, 3rem);
	align-items: center;
	padding: clamp(1rem, 1.6vw, 1.4rem);
	border: 1px solid var(--vf-line);
	border-radius: var(--vf-radius-lg);
	background: var(--vf-surface);
	box-shadow: var(--vf-shadow);
	transition: box-shadow .5s var(--vf-ease), border-color .4s var(--vf-ease);
}

.vf-featured:hover {
	box-shadow: var(--vf-shadow-lg);
	border-color: color-mix(in srgb, var(--vf-brand) 30%, var(--vf-line));
}

.vf-featured__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	border-radius: calc(var(--vf-radius-lg) - 8px);
	background: var(--vf-bg);
}

.vf-featured__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .8s var(--vf-ease);
}

.vf-featured:hover .vf-featured__media img {
	transform: scale(1.04);
}

.vf-featured__body {
	padding-inline: clamp(.25rem, 1vw, 1rem);
	padding-block: clamp(.5rem, 1.5vw, 1rem);
}

.vf-featured__chips {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	margin-bottom: 1.1rem;
}

.vf-featured__title {
	margin: 0;
	font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.35rem);
	line-height: 1.14;
	letter-spacing: -.025em;
	font-weight: 700;
	color: var(--vf-ink);
	text-wrap: balance;
}

.vf-featured__title a {
	color: inherit;
	text-decoration: none;
	background-image: linear-gradient(var(--vf-brand), var(--vf-brand));
	background-size: 0% 2px;
	background-position: 0 100%;
	background-repeat: no-repeat;
	transition: background-size .45s var(--vf-ease), color .3s;
}

.vf-featured__title a::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	z-index: 1;
}

.vf-featured:hover .vf-featured__title a {
	background-size: 100% 2px;
	color: var(--vf-brand-deep);
}

.vf-featured__excerpt {
	margin: 1.05rem 0 0;
	font-size: 1.02rem;
	line-height: 1.68;
	color: var(--vf-body);
	text-wrap: pretty;
}

.vf-featured__meta {
	display: flex;
	align-items: center;
	gap: .7rem;
	margin-top: 1.4rem;
	font-size: .85rem;
	color: var(--vf-muted);
	font-variant-numeric: tabular-nums;
}

@media (max-width: 900px) {
	.vf-featured {
		grid-template-columns: 1fr;
	}
}

/* -------------------------------------------------------------- Toolbar -- */

/*
 * Bara sta in flux la pozitia ei naturala. Dupa ce e depasita prin scroll se
 * andocheaza jos ca pastila flotanta - sus e deja headerul sticky, iar doua
 * bare lipite de marginea de sus s-ar bate intre ele.
 */
.vf-toolbar {
	position: relative;
	z-index: 40;
	background: color-mix(in srgb, var(--vf-surface) 82%, transparent);
	backdrop-filter: blur(14px) saturate(1.6);
	-webkit-backdrop-filter: blur(14px) saturate(1.6);
	border-block: 1px solid var(--vf-line-soft);
}

.vf-toolbar.is-docked {
	position: fixed;
	left: 0;
	right: 0;
	bottom: calc(.9rem + env(safe-area-inset-bottom));
	width: min(100% - 2 * var(--vf-gutter), 980px);
	margin-inline: auto;
	border: 1px solid var(--vf-line);
	border-block-color: var(--vf-line);
	border-radius: var(--vf-radius-lg);
	background: color-mix(in srgb, var(--vf-surface) 93%, transparent);
	box-shadow: var(--vf-shadow-lg);
	animation: vf-dock-in .32s var(--vf-ease) both;
}

.vf-toolbar.is-docked .vf-toolbar__inner {
	padding-inline: .7rem;
	padding-block: .55rem;
}

@keyframes vf-dock-in {
	from {
		opacity: 0;
		transform: translateY(14px);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.vf-toolbar__inner {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding-block: .85rem;
}

.vf-filters {
	display: flex;
	gap: .5rem;
	flex: 1 1 auto;
	min-width: 0;
	overflow-x: auto;
	scrollbar-width: none;
	scroll-snap-type: x proximity;
	padding-block: 2px;
	mask-image: linear-gradient(to right, transparent 0, #000 12px, #000 calc(100% - 16px), transparent 100%);
	-webkit-mask-image: linear-gradient(to right, transparent 0, #000 12px, #000 calc(100% - 16px), transparent 100%);
}

.vf-filters::-webkit-scrollbar {
	display: none;
}

.vf-blog .vf-pill {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	flex: none;
	scroll-snap-align: start;
	padding: .52rem .95rem;
	border: 1px solid var(--vf-line);
	border-radius: var(--vf-radius-pill);
	background: var(--vf-surface);
	color: var(--vf-ink-soft);
	font: inherit;
	font-size: .875rem;
	font-weight: 600;
	line-height: 1.3;
	cursor: pointer;
	white-space: nowrap;
	transition: background-color .3s var(--vf-ease), color .3s var(--vf-ease), border-color .3s var(--vf-ease), transform .3s var(--vf-ease);
}

.vf-blog .vf-pill:hover,
.vf-blog .vf-pill:focus {
	background: var(--vf-surface);
	border-color: color-mix(in srgb, var(--vf-ink) 25%, var(--vf-line));
	color: var(--vf-ink);
}

.vf-pill:active {
	transform: scale(.97);
}

.vf-blog .vf-pill[aria-pressed="true"],
.vf-blog .vf-pill[aria-pressed="true"]:hover,
.vf-blog .vf-pill[aria-pressed="true"]:focus {
	background: var(--vf-ink);
	border-color: var(--vf-ink);
	color: #fff;
}

.vf-pill__count {
	padding: .05rem .38rem;
	border-radius: var(--vf-radius-pill);
	background: color-mix(in srgb, var(--vf-ink) 8%, transparent);
	font-size: .72rem;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	color: var(--vf-muted);
	transition: background-color .3s, color .3s;
}

.vf-pill[aria-pressed="true"] .vf-pill__count {
	background: color-mix(in srgb, var(--vf-brand) 90%, #fff);
	color: #fff;
}

/*
 * Caseta de cautare e un flex row: lupa, campul si butonul de stergere sunt
 * elemente surori. Nimic nu e pozitionat absolut peste text, deci nu se pot
 * suprapune indiferent ce padding impun stilurile globale Elementor pe input.
 * Bordura si focus-ul stau pe container, nu pe input.
 */
.vf-search {
	display: flex;
	align-items: center;
	gap: .55rem;
	flex: 0 0 auto;
	width: min(300px, 34vw);
	padding: .5rem .75rem;
	border: 1px solid var(--vf-line);
	border-radius: var(--vf-radius-pill);
	background: var(--vf-surface);
	transition: border-color .3s, box-shadow .3s;
}

.vf-search:focus-within {
	border-color: color-mix(in srgb, var(--vf-brand) 55%, var(--vf-line));
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--vf-brand) 12%, transparent);
}

.vf-search__icon {
	flex: none;
	color: var(--vf-muted);
	pointer-events: none;
}

/* input.<clasa> bate selectorii de tip ai temei/Elementor pe input[type="search"]. */
.vf-blog input.vf-search__input {
	flex: 1 1 auto;
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	font: inherit;
	font-size: .875rem;
	line-height: 1.5;
	color: var(--vf-ink);
	-webkit-appearance: none;
	appearance: none;
}

.vf-blog input.vf-search__input:focus,
.vf-blog input.vf-search__input:focus-visible {
	outline: none;
	border: 0;
	box-shadow: none;
}

.vf-search__input::-webkit-search-cancel-button {
	display: none;
}

.vf-search__input::placeholder {
	color: var(--vf-muted);
	opacity: 1;
}

.vf-blog .vf-search__clear {
	display: grid;
	place-items: center;
	flex: none;
	width: 22px;
	height: 22px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: color-mix(in srgb, var(--vf-ink) 8%, transparent);
	color: var(--vf-ink-soft);
	cursor: pointer;
	transition: background-color .25s;
}

.vf-blog .vf-search__clear:hover,
.vf-blog .vf-search__clear:focus {
	background: color-mix(in srgb, var(--vf-ink) 16%, transparent);
	color: var(--vf-ink-soft);
}

@media (max-width: 780px) {
	.vf-toolbar__inner {
		flex-direction: column;
		align-items: stretch;
		gap: .75rem;
	}

	.vf-search {
		width: 100%;
		order: -1;
	}

	/* Andocata, bara ramane pe un rand cu categoriile; cautarea sta in bara din flux. */
	.vf-toolbar.is-docked .vf-toolbar__inner {
		flex-direction: row;
		gap: 0;
	}

	.vf-toolbar.is-docked .vf-search {
		display: none;
	}
}

/* ------------------------------------------------------------- Rezultate -- */

.vf-results {
	padding-block: clamp(1.75rem, 3.5vw, 3rem) clamp(2.5rem, 5vw, 4.5rem);
}

.vf-results__count {
	margin: 0 0 1.5rem;
	font-size: .85rem;
	font-weight: 600;
	letter-spacing: .02em;
	color: var(--vf-muted);
	font-variant-numeric: tabular-nums;
}

.vf-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
	gap: clamp(1.1rem, 2vw, 1.75rem);
	align-items: stretch;
	view-transition-name: vf-grid;
}

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

.vf-card {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--vf-line);
	border-radius: var(--vf-radius);
	background: var(--vf-surface);
	container-type: inline-size;
	transition: transform .5s var(--vf-ease), box-shadow .5s var(--vf-ease), border-color .4s var(--vf-ease);
}

.vf-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--vf-shadow-lg);
	border-color: color-mix(in srgb, var(--vf-brand) 32%, var(--vf-line));
}

.vf-card:focus-within {
	border-color: color-mix(in srgb, var(--vf-brand) 45%, var(--vf-line));
}

.vf-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--vf-bg);
	flex: none;
}

.vf-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .7s var(--vf-ease);
}

.vf-card:hover .vf-card__media img {
	transform: scale(1.06);
}

.vf-media__fallback {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	font-size: 3rem;
	font-weight: 700;
	color: color-mix(in srgb, var(--vf-brand) 45%, var(--vf-line));
	background: linear-gradient(135deg, var(--vf-bg), #fff);
}

.vf-card__body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: clamp(1.05rem, 3cqi, 1.5rem);
	gap: .6rem;
}

.vf-card__title {
	margin: 0;
	font-size: clamp(1.02rem, 4cqi, 1.2rem);
	line-height: 1.3;
	letter-spacing: -.015em;
	font-weight: 700;
	color: var(--vf-ink);
	text-wrap: balance;
}

.vf-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color .3s;
}

.vf-card__title a::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
}

.vf-card:hover .vf-card__title a {
	color: var(--vf-brand-deep);
}

.vf-card__excerpt {
	margin: 0;
	font-size: .92rem;
	line-height: 1.6;
	color: var(--vf-body);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-wrap: pretty;
}

.vf-card__meta {
	display: flex;
	align-items: center;
	gap: .55rem;
	margin-top: auto;
	padding-top: .9rem;
	border-top: 1px solid var(--vf-line-soft);
	font-size: .8rem;
	color: var(--vf-muted);
	font-variant-numeric: tabular-nums;
}

.vf-card__arrow {
	display: grid;
	place-items: center;
	margin-inline-start: auto;
	color: var(--vf-brand);
	opacity: 0;
	transform: translateX(-6px);
	transition: opacity .4s var(--vf-ease), transform .4s var(--vf-ease);
}

.vf-card:hover .vf-card__arrow,
.vf-card:focus-within .vf-card__arrow {
	opacity: 1;
	transform: translateX(0);
}

/* Aparitie la scroll, fara JS, doar unde e suportata. */
@supports (animation-timeline: view()) {
	@media (prefers-reduced-motion: no-preference) {
		.vf-card {
			animation: vf-rise linear both;
			animation-timeline: view();
			animation-range: entry 0% entry 42%;
		}
	}
}

@keyframes vf-rise {
	from {
		opacity: 0;
		transform: translateY(22px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* --------------------------------------------------------- Empty / more -- */

.vf-empty {
	margin: 0;
	padding: clamp(2.5rem, 6vw, 4.5rem) 1.5rem;
	border: 1px dashed var(--vf-line);
	border-radius: var(--vf-radius);
	text-align: center;
	color: var(--vf-body);
	background: var(--vf-bg);
}

.vf-empty strong {
	display: block;
	margin-bottom: .35rem;
	font-size: 1.05rem;
	color: var(--vf-ink);
}

.vf-more {
	display: flex;
	justify-content: center;
	margin-top: clamp(1.75rem, 3vw, 2.75rem);
}

/* -------------------------------------------------------------- Butoane -- */

.vf-blog .vf-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	padding: .8rem 1.6rem;
	border: 1px solid transparent;
	border-radius: var(--vf-radius-pill);
	font: inherit;
	font-size: .95rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: background-color .3s var(--vf-ease), color .3s var(--vf-ease), border-color .3s var(--vf-ease), transform .3s var(--vf-ease), box-shadow .3s var(--vf-ease);
}

.vf-btn:active {
	transform: scale(.98);
}

.vf-blog .vf-btn--ghost {
	border-color: var(--vf-line);
	background: var(--vf-surface);
	color: var(--vf-ink);
}

.vf-blog .vf-btn--ghost:hover,
.vf-blog .vf-btn--ghost:focus {
	border-color: var(--vf-ink);
	background: var(--vf-ink);
	color: #fff;
}

.vf-blog .vf-btn--primary {
	background: var(--vf-brand);
	color: #fff;
	box-shadow: 0 12px 28px -14px color-mix(in srgb, var(--vf-brand) 85%, transparent);
}

.vf-btn--primary:hover {
	background: var(--vf-brand-deep);
	color: #fff;
}

.vf-blog .vf-btn--outline {
	border-color: color-mix(in srgb, #fff 35%, transparent);
	color: #fff;
	background: transparent;
}

.vf-btn--outline:hover {
	border-color: #fff;
	background: color-mix(in srgb, #fff 12%, transparent);
	color: #fff;
}

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

.vf-cta {
	padding-bottom: clamp(3rem, 6vw, 5rem);
}

.vf-cta__panel {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: clamp(2rem, 4vw, 4rem);
	padding: clamp(2rem, 4.5vw, 3.75rem);
	border-radius: var(--vf-radius-lg);
	background: linear-gradient(140deg, #191c22 0%, #23272f 55%, #1b1f26 100%);
	color: color-mix(in srgb, #fff 78%, transparent);
}

.vf-cta__panel::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(60% 90% at 100% 0%, color-mix(in srgb, var(--vf-brand) 42%, transparent), transparent 62%),
		radial-gradient(45% 70% at 0% 100%, color-mix(in srgb, var(--vf-accent) 24%, transparent), transparent 60%);
}

.vf-cta__title {
	margin: 0;
	font-size: clamp(1.6rem, 1.1rem + 1.8vw, 2.5rem);
	line-height: 1.12;
	letter-spacing: -.028em;
	font-weight: 700;
	color: #fff;
	text-wrap: balance;
}

.vf-cta__lead {
	margin: 1.1rem 0 0;
	max-width: 48ch;
	font-size: 1rem;
	line-height: 1.68;
	text-wrap: pretty;
}

.vf-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
	margin-top: 1.9rem;
}

.vf-cta__linksTitle {
	margin: 0 0 1rem;
	font-size: .74rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: color-mix(in srgb, #fff 55%, transparent);
}

.vf-cta__links ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 1px;
	border-radius: 14px;
	overflow: hidden;
	background: color-mix(in srgb, #fff 10%, transparent);
}

.vf-cta__links a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: .8rem 1.05rem;
	background: color-mix(in srgb, #fff 5%, transparent);
	color: color-mix(in srgb, #fff 88%, transparent);
	font-size: .92rem;
	font-weight: 600;
	text-decoration: none;
	transition: background-color .3s var(--vf-ease), color .3s var(--vf-ease), padding-inline-start .3s var(--vf-ease);
}

.vf-cta__links a svg {
	flex: none;
	opacity: 0;
	transform: translateX(-6px);
	transition: opacity .3s var(--vf-ease), transform .3s var(--vf-ease);
}

.vf-cta__links a:hover {
	background: color-mix(in srgb, var(--vf-brand) 88%, transparent);
	color: #fff;
	padding-inline-start: 1.3rem;
}

.vf-cta__links a:hover svg {
	opacity: 1;
	transform: translateX(0);
}

@media (max-width: 900px) {
	.vf-cta__panel {
		grid-template-columns: 1fr;
	}
}

/* ------------------------------------------------------------- Tranzitii -- */

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

::view-transition-group(vf-grid) {
	animation-duration: .32s;
}
