/* Úvodní stránka TapThen. Barvy jsou v proměnných, takže se dá přebarvit
   bez sahání do jednotlivých pravidel. */

.vgeh {
	--vgeh-ink: #16181d;
	--vgeh-muted: #6b7280;
	--vgeh-line: #e8e9f0;
	--vgeh-surface: #f7f7fb;
	--vgeh-violet: #7c3aed;
	--vgeh-blue: #3b82f6;
	--vgeh-cyan: #22d3ee;
	--vgeh-grad: linear-gradient(100deg, #8b5cf6 0%, #6366f1 45%, #3b82f6 100%);
	--vgeh-radius: 16px;
	--vgeh-shadow: 0 2px 4px rgba(22, 24, 29, .04), 0 12px 32px rgba(70, 60, 160, .07);

	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	color: var(--vgeh-ink);
	line-height: 1.55;
	box-sizing: border-box;
}

.vgeh *,
.vgeh *::before,
.vgeh *::after {
	box-sizing: inherit;
}

.vgeh-grad {
	background: var(--vgeh-grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.vgeh-icon {
	width: 22px;
	height: 22px;
	fill: currentColor;
	display: block;
}

/* --- tlačítka --------------------------------------------------------- */

.vgeh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 15px 28px;
	border: 1px solid transparent;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.vgeh-btn .vgeh-icon {
	width: 18px;
	height: 18px;
}

/* Téma přebarvuje <button> i odkazy stylované jako tlačítka. */
.vgeh .vgeh-btn-primary {
	background: var(--vgeh-grad) !important;
	color: #fff !important;
	box-shadow: 0 8px 20px rgba(99, 102, 241, .28);
}

.vgeh-btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 26px rgba(99, 102, 241, .34);
	color: #fff;
}

.vgeh .vgeh-btn-outline {
	background: #fff !important;
	border-color: var(--vgeh-line);
	color: var(--vgeh-ink) !important;
}

.vgeh-btn-outline:hover {
	border-color: var(--vgeh-violet);
	color: var(--vgeh-violet);
}

.vgeh .vgeh-btn-ghost {
	background: #fff !important;
	border-color: #d9d5f5;
	color: var(--vgeh-violet) !important;
	padding: 12px 22px;
}

.vgeh .vgeh-btn-ghost:hover {
	background: var(--vgeh-violet) !important;
	border-color: var(--vgeh-violet);
	color: #fff !important;
}

.vgeh .vgeh-btn-dark {
	background: #101319 !important;
	color: #fff !important;
}

.vgeh .vgeh-btn-dark:hover {
	background: #000 !important;
}

.vgeh-play {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--vgeh-grad);
	position: relative;
	flex: 0 0 auto;
}

.vgeh-play::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 52%;
	transform: translate(-50%, -50%);
	border-left: 6px solid #fff;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
}

/* --- hero ------------------------------------------------------------- */

.vgeh-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: 48px;
	align-items: center;
	padding: 24px 0 56px;
}

.vgeh-hero-title {
	margin: 0 0 20px;
	font-size: clamp(36px, 4.6vw, 58px);
	line-height: 1.08;
	letter-spacing: -.03em;
	font-weight: 800;
}

.vgeh-hero-lead {
	margin: 0 0 28px;
	max-width: 34ch;
	font-size: 17px;
	color: var(--vgeh-muted);
}

.vgeh-usps {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0;
	margin: 0 0 32px;
	padding: 0;
	list-style: none;
}

.vgeh-usps li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0 22px;
	border-left: 1px solid var(--vgeh-line);
}

.vgeh-usps li:first-child {
	padding-left: 0;
	border-left: 0;
}

.vgeh-usp-icon {
	color: var(--vgeh-violet);
	display: flex;
}

.vgeh-usp-label {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.25;
	max-width: 9ch;
}

.vgeh-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.vgeh-hero-media {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 320px;
}

.vgeh-hero-glow {
	position: absolute;
	inset: 6% 4%;
	border-radius: 50%;
	background: radial-gradient(closest-side, rgba(139, 92, 246, .28), rgba(59, 130, 246, .12) 60%, transparent 100%);
	filter: blur(6px);
}

.vgeh-hero-img {
	position: relative;
	max-width: 100%;
	height: auto;
	display: block;
}

/* --- sekce ------------------------------------------------------------ */

.vgeh-section {
	padding: 56px 0;
}

.vgeh-panel {
	padding: 56px 40px;
	margin: 8px 0;
	background: var(--vgeh-surface);
	border-radius: 24px;
}

.vgeh-h2 {
	margin: 0 0 8px;
	text-align: center;
	font-size: clamp(26px, 3vw, 34px);
	line-height: 1.2;
	letter-spacing: -.02em;
	font-weight: 800;
}

.vgeh-sub {
	margin: 0 auto 36px;
	max-width: 56ch;
	text-align: center;
	color: var(--vgeh-muted);
	font-size: 15px;
}

.vgeh-center {
	display: flex;
	justify-content: center;
	margin-top: 28px;
}

/* --- kategorie -------------------------------------------------------- */

.vgeh-cats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.vgeh-cat {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 0 28px;
	background: #fff;
	border: 1px solid var(--vgeh-line);
	border-radius: var(--vgeh-radius);
	box-shadow: var(--vgeh-shadow);
	overflow: hidden;
	transition: transform .18s ease, box-shadow .18s ease;
}

.vgeh-cat:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 8px rgba(22, 24, 29, .05), 0 18px 40px rgba(70, 60, 160, .12);
}

.vgeh-cat-media {
	width: 100%;
	aspect-ratio: 4 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(160deg, #f3f0ff 0%, #eef4ff 100%);
	margin-bottom: 22px;
}

.vgeh-cat-media img {
	max-width: 74%;
	max-height: 84%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}

.vgeh-cat .vgeh-btn-ghost {
	margin-top: auto;
}

.vgeh-cat-title {
	margin: 0 0 8px;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -.01em;
}

.vgeh-cat-text {
	margin: 0 0 18px;
	/* Tlačítka drží jednu linku i při různě dlouhých popiscích. */
	flex: 1 0 auto;
	padding: 0 24px;
	color: var(--vgeh-muted);
	font-size: 14px;
}

/* --- platformy -------------------------------------------------------- */

.vgeh-platforms {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 18px;
}

.vgeh-platform {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 22px 12px 18px;
	background: #fff;
	border: 1px solid var(--vgeh-line);
	border-radius: var(--vgeh-radius);
	box-shadow: var(--vgeh-shadow);
	text-align: center;
}

.vgeh-platform-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
}

.vgeh-platform-logo img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.vgeh-platform-initial {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--vgeh-grad);
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vgeh-platform-name {
	font-size: 14px;
	font-weight: 600;
}

.vgeh-stars {
	display: inline-flex;
	gap: 2px;
}

.vgeh-stars svg {
	width: 13px;
	height: 13px;
	fill: #f5a623;
}

/* --- pruh s přínosy --------------------------------------------------- */

.vgeh-benefits {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	margin-top: 40px;
	padding: 22px 8px;
	background: #fff;
	border: 1px solid #ddd6fe;
	border-radius: var(--vgeh-radius);
	box-shadow: var(--vgeh-shadow);
}

.vgeh-benefit {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 6px 22px;
	border-left: 1px solid var(--vgeh-line);
}

.vgeh-benefit:first-child {
	border-left: 0;
}

.vgeh-benefit-icon {
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f1edff;
	color: var(--vgeh-violet);
}

.vgeh-benefit-body {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.vgeh-benefit-body strong {
	font-size: 14px;
}

.vgeh-benefit-body span {
	color: var(--vgeh-muted);
	font-size: 12.5px;
	line-height: 1.4;
}

/* --- jak to funguje --------------------------------------------------- */

.vgeh-steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin: 8px 0 0;
	padding: 0;
	list-style: none;
	counter-reset: vgeh-step;
}

.vgeh-step {
	position: relative;
	text-align: center;
	padding: 0 10px;
}

/* Tečkovaná spojnice mezi kroky – jen mezi nimi, ne za posledním. */
.vgeh-step + .vgeh-step::before {
	content: "";
	position: absolute;
	top: 42px;
	left: calc(-50% + 52px);
	width: calc(100% - 104px);
	border-top: 2px dashed #ddd6fe;
}

.vgeh-step-badge {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 84px;
	height: 84px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: linear-gradient(160deg, #f3f0ff 0%, #e9f0ff 100%);
	color: var(--vgeh-violet);
}

.vgeh-step-badge .vgeh-icon {
	width: 30px;
	height: 30px;
}

.vgeh-step-num {
	position: absolute;
	top: -4px;
	left: -4px;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--vgeh-grad);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vgeh-step-title {
	margin: 0 0 4px;
	font-size: 17px;
	font-weight: 700;
}

.vgeh-step-text {
	margin: 0;
	color: var(--vgeh-muted);
	font-size: 14px;
}

/* --- recenze ---------------------------------------------------------- */

.vgeh-reviews {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.vgeh-review {
	margin: 0;
	padding: 24px;
	background: #fff;
	border: 1px solid var(--vgeh-line);
	border-radius: var(--vgeh-radius);
	box-shadow: var(--vgeh-shadow);
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.vgeh-review .vgeh-stars svg {
	width: 15px;
	height: 15px;
	fill: var(--vgeh-violet);
}

.vgeh-review-text {
	margin: 0;
	font-size: 14.5px;
	color: #2c313a;
	quotes: "„" "“";
}

.vgeh-review-text::before { content: open-quote; }
.vgeh-review-text::after { content: close-quote; }

.vgeh-review-author {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid var(--vgeh-line);
}

.vgeh-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	flex: 0 0 auto;
}

.vgeh-avatar-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--vgeh-grad);
	color: #fff;
	font-weight: 700;
}

.vgeh-review-author strong {
	display: block;
	font-size: 14px;
}

.vgeh-review-role {
	display: block;
	color: var(--vgeh-muted);
	font-size: 13px;
}

/* --- závěrečná výzva --------------------------------------------------- */

.vgeh-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	flex-wrap: wrap;
	padding: 28px 34px;
	margin: 24px 0 8px;
	border-radius: 20px;
	background: linear-gradient(100deg, #8b5cf6 0%, #6366f1 40%, #22b8e6 100%);
	color: #fff;
}

.vgeh-cta-body {
	display: flex;
	align-items: center;
	gap: 18px;
}

.vgeh-cta-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: rgba(255, 255, 255, .18);
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.vgeh-cta-icon .vgeh-icon {
	width: 26px;
	height: 26px;
}

.vgeh-cta-title {
	display: block;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -.01em;
}

.vgeh-cta-text {
	display: block;
	font-size: 14.5px;
	opacity: .92;
}

/* --- responzivita ------------------------------------------------------ */

@media (max-width: 1000px) {
	.vgeh-hero {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.vgeh-platforms {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.vgeh-benefits {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 18px;
	}

	.vgeh-benefit:nth-child(odd) {
		border-left: 0;
	}

	.vgeh-steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 32px;
	}

	.vgeh-step + .vgeh-step::before {
		display: none;
	}

	.vgeh-cats,
	.vgeh-reviews {
		grid-template-columns: 1fr;
	}

	.vgeh-panel {
		padding: 40px 20px;
	}
}

@media (max-width: 620px) {
	.vgeh-platforms {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vgeh-benefits {
		grid-template-columns: 1fr;
	}

	.vgeh-benefit {
		border-left: 0;
	}

	.vgeh-steps {
		grid-template-columns: 1fr;
	}

	.vgeh-usps li {
		padding: 0 14px;
	}

	.vgeh-cta {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vgeh-btn,
	.vgeh-cat {
		transition: none;
	}
}

/* ======================================================================
   Výpis produktů (archiv kategorie, platformy i celého e-shopu).
   Dědí barvy a tvarosloví z .vgeh, aby výpis navazoval na úvodní stránku.
   ====================================================================== */

.vge-archive {
	padding: 8px 0 48px;
	/* Užší sloupec drží dlaždice v rozumné velikosti i na širokém tématu. */
	max-width: 1040px;
	margin: 0 auto;
}

.vge-archive-head {
	text-align: center;
	margin-bottom: 28px;
}

/* Vyšší specifičnost – téma typicky přebíjí velikost nadpisů v obsahu. */
.vgeh .vge-archive-head .vge-archive-title {
	margin: 0 0 8px;
	font-size: 28px !important;
	line-height: 1.2 !important;
	font-weight: 800;
	letter-spacing: -.02em;
	text-transform: none;
}

.vge-archive-desc {
	margin: 0 auto;
	max-width: 62ch;
	color: var(--vgeh-muted);
	font-size: 15px;
}

/* --- filtry ------------------------------------------------------------ */

.vge-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 16px;
	padding: 18px 22px;
	margin-bottom: 24px;
	background: var(--vgeh-surface);
	border: 1px solid var(--vgeh-line);
	border-radius: var(--vgeh-radius);
}

.vge-filter {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 0;
	min-width: 0;
}

.vge-filter label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--vgeh-muted);
}

.vge-filter select,
.vge-filter input[type="number"] {
	height: 44px;
	padding: 0 12px;
	border: 1px solid var(--vgeh-line);
	border-radius: 10px;
	background: #fff;
	font-family: inherit;
	font-size: 14.5px;
	color: var(--vgeh-ink);
	min-width: 165px;
}

.vge-filter select:focus,
.vge-filter input:focus {
	outline: none;
	border-color: var(--vgeh-violet);
}

.vge-price-inputs {
	display: flex;
	align-items: center;
	gap: 8px;
}

/* --- posuvník ceny ----------------------------------------------------- */

.vge-filter-price {
	min-width: 240px;
}

/* Bez JavaScriptu zůstanou vidět číselná pole, s ním posuvník. */
.vge-filter-price .vge-range,
.vge-filter-price .vge-range-readout {
	display: none;
}

.vge-filter-price.vge-has-slider .vge-range,
.vge-filter-price.vge-has-slider .vge-range-readout {
	display: block;
}

.vge-filter-price.vge-has-slider .vge-price-inputs {
	display: none;
}

.vge-range {
	position: relative;
	height: 26px;
	margin-top: 12px;
}

.vge-range-track {
	position: absolute;
	top: 11px;
	left: 0;
	right: 0;
	height: 4px;
	border-radius: 2px;
	background: #e2e0f0;
}

.vge-range-fill {
	position: absolute;
	top: 0;
	height: 100%;
	border-radius: 2px;
	background: var(--vgeh-grad);
}

/* Dva inputy leží přes sebe; kliky propouštíme jen na samotná táhla. */
.vge-range-input {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 26px;
	margin: 0;
	padding: 0;
	background: none;
	border: 0;
	appearance: none;
	-webkit-appearance: none;
	pointer-events: none;
}

.vge-range-input:focus {
	outline: none;
}

.vge-range-input::-webkit-slider-thumb {
	appearance: none;
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--vgeh-violet);
	box-shadow: 0 2px 6px rgba(70, 60, 160, .25);
	cursor: grab;
	pointer-events: auto;
}

.vge-range-input::-moz-range-thumb {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--vgeh-violet);
	box-shadow: 0 2px 6px rgba(70, 60, 160, .25);
	cursor: grab;
	pointer-events: auto;
}

.vge-range-input::-webkit-slider-thumb:active,
.vge-range-input::-moz-range-thumb:active {
	cursor: grabbing;
	border-color: var(--vgeh-blue);
}

.vge-range-input::-moz-range-track {
	background: none;
	border: 0;
}

.vge-range-readout {
	margin-top: 2px;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
}

.vge-range-readout .vge-dash {
	margin: 0 4px;
	font-weight: 400;
}

.vge-price-inputs input {
	min-width: 0;
	width: 94px;
}

.vge-dash {
	color: var(--vgeh-muted);
}

.vge-filter-actions {
	flex-direction: row;
	align-items: center;
	gap: 14px;
	margin-left: auto;
}

.vge-filter-actions .vgeh-btn {
	height: 44px;
	padding: 0 26px;
}

.vge-filter-reset {
	font-size: 14px;
	color: var(--vgeh-muted);
	text-decoration: underline;
}

.vge-filter-reset:hover {
	color: var(--vgeh-violet);
}

.vge-archive-count {
	margin: 0 0 16px;
	color: var(--vgeh-muted);
	font-size: 14px;
}

/* --- dlaždice ---------------------------------------------------------- */

.vge-tiles {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	align-items: stretch;
}

.vge-tile {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--vgeh-line);
	border-radius: var(--vgeh-radius);
	box-shadow: var(--vgeh-shadow);
	overflow: hidden;
	transition: transform .18s ease, box-shadow .18s ease;
}

.vge-tile:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 8px rgba(22, 24, 29, .05), 0 18px 40px rgba(70, 60, 160, .12);
}

.vge-tile-media {
	display: block;
	aspect-ratio: 4 / 3;
	background: linear-gradient(160deg, #f3f0ff 0%, #eef4ff 100%);
	overflow: hidden;
}

/* Fotky produktů vyplní plochu, průhledné PNG se do ní vejdou celé. */
.vge-tile-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.vge-tile-body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 13px 15px 16px;
	flex: 1;
}

.vgeh .vge-tile .vge-tile-type {
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--vgeh-violet);
}

/* Název dlaždice je h2 – bez vyšší specifičnosti ho téma nafoukne. */
/* Text nadpisu je uvnitř odkazu, takže velikost musí dostat i to <a> –
   jinak se prosadí velikost odkazů z tématu. */
.vgeh .vge-tile .vge-tile-title,
.vgeh .vge-tile .vge-tile-title a {
	margin: 0;
	padding: 0;
	font-size: 17px !important;
	font-weight: 700;
	line-height: 1.3 !important;
	letter-spacing: -.01em;
	text-transform: none;
}

.vgeh .vge-tile .vge-tile-title a {
	color: inherit;
	text-decoration: none;
	display: block;
}

.vge-tile-title a:hover {
	color: var(--vgeh-violet);
}

.vge-tile-platforms {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin: 0;
	min-height: 19px;
}

.vge-chip {
	padding: 2px 8px;
	border-radius: 999px;
	background: #f1edff;
	color: #5b3fc4;
	font-size: 11.5px;
	font-weight: 600;
}

.vgeh .vge-tile .vge-tile-price {
	margin: auto 0 0;
	padding-top: 6px;
	font-size: 16px;
	font-weight: 700;
}

.vge-tile-from {
	display: block;
	font-size: 11.5px;
	font-weight: 600;
	color: var(--vgeh-muted);
}

/* --- stránkování a prázdný výsledek ------------------------------------ */

.vge-pagination {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 36px;
}

.vge-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid var(--vgeh-line);
	border-radius: 10px;
	background: #fff;
	color: var(--vgeh-ink);
	font-weight: 600;
	text-decoration: none;
}

.vge-pagination .page-numbers:hover {
	border-color: var(--vgeh-violet);
	color: var(--vgeh-violet);
}

.vge-pagination .page-numbers.current {
	background: var(--vgeh-grad);
	border-color: transparent;
	color: #fff;
}

.vge-archive-empty {
	padding: 56px 0;
	text-align: center;
	color: var(--vgeh-muted);
}

.vge-archive-empty p {
	margin-bottom: 18px;
}

@media (max-width: 860px) {
	.vge-tiles {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vge-filter-actions {
		margin-left: 0;
	}
}

@media (max-width: 620px) {
	.vge-tiles {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	.vge-filters {
		padding: 16px;
	}

	.vge-filter,
	.vge-filter select {
		width: 100%;
		min-width: 0;
	}
}
