/* ==========================================================================
   ВИЗИЯ РУСЕ — Templates CSS
   Добави този код в края на style.css или като отделен файл.
   
   Структура:
   1. CSS Variables (споделени)
   2. EDITORIAL — single + archive (тъмносин magazine стил)
   3. IDEAS — single + archive (карти + жълт акцент + vote)
   ========================================================================== */

/* ============ CSS VARIABLES ============ */
:root {
	/* Брандови цветове (вече дефинирани в темата — оставени за reference) */
	--vr-dark-blue: #0A1628;
	--vr-dark-blue-2: #0d1f35;
	--vr-blue-accent: #4a9eda;
	--vr-danube: #185FA5;
	--vr-red: #e74c3c;
	--vr-yellow: #F4C430;
	--vr-green: #1D9E75;

	/* Editorial palette */
	--vr-ed-bg: #fafaf7;
	--vr-ed-paper: #ffffff;
	--vr-ed-ink: #0A1628;
	--vr-ed-ink-soft: #3a4a5e;
	--vr-ed-ink-muted: #6b7a8e;
	--vr-ed-rule: #e5e2da;
	--vr-ed-accent: #185FA5;

	/* Ideas palette */
	--vr-id-bg: #f7f9fc;
	--vr-id-card: #ffffff;
	--vr-id-ink: #0A1628;
	--vr-id-ink-soft: #475569;
	--vr-id-rule: #e2e8f0;
	--vr-id-accent: #F4C430;
	--vr-id-accent-dark: #c89c1e;
	--vr-id-vote: #1D9E75;

	/* Type */
	--vr-font-display: 'Playfair Display', Georgia, serif;
	--vr-font-serif: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
	--vr-font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ==========================================================================
   1. EDITORIAL — Single (single.php)
   ========================================================================== */

.vr-editorial-single {
	background: var(--vr-ed-bg);
	color: var(--vr-ed-ink);
	font-family: var(--vr-font-serif);
	min-height: 60vh;
}

.vr-ed-hero {
	background: var(--vr-ed-paper);
	border-bottom: 1px solid var(--vr-ed-rule);
	padding: 64px 24px 48px;
}

.vr-ed-hero__inner {
	max-width: 760px;
	margin: 0 auto;
}

.vr-ed-breadcrumbs {
	font-family: var(--vr-font-sans);
	font-size: 13px;
	letter-spacing: 0.02em;
	color: var(--vr-ed-ink-muted);
	margin-bottom: 24px;
}

.vr-ed-breadcrumbs a {
	color: inherit;
	text-decoration: none;
	transition: color .15s;
}

.vr-ed-breadcrumbs a:hover {
	color: var(--vr-ed-accent);
}

.vr-ed-sep {
	margin: 0 8px;
	opacity: 0.4;
}

.vr-ed-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
	font-family: var(--vr-font-sans);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.vr-ed-kicker__label {
	background: var(--vr-ed-ink);
	color: var(--vr-ed-paper);
	padding: 4px 10px;
	border-radius: 2px;
}

.vr-ed-kicker__dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--vr-ed-accent);
}

.vr-ed-kicker__cat {
	color: var(--vr-ed-accent);
}

.vr-ed-title {
	font-family: var(--vr-font-display);
	font-size: clamp(32px, 5.2vw, 56px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.015em;
	color: var(--vr-ed-ink);
	margin: 0 0 24px;
}

.vr-ed-deck {
	font-family: var(--vr-font-serif);
	font-size: clamp(18px, 2.2vw, 22px);
	line-height: 1.55;
	color: var(--vr-ed-ink-soft);
	font-weight: 400;
	margin: 0 0 36px;
	max-width: 640px;
}

.vr-ed-meta {
	display: flex;
	align-items: center;
	gap: 20px;
	padding-top: 24px;
	border-top: 1px solid var(--vr-ed-rule);
	font-family: var(--vr-font-sans);
}

.vr-ed-meta__author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.vr-ed-avatar {
	border-radius: 50%;
	width: 48px;
	height: 48px;
	object-fit: cover;
}

.vr-ed-meta__col {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.vr-ed-meta__name {
	font-size: 14px;
	font-weight: 600;
	color: var(--vr-ed-ink);
}

.vr-ed-meta__role {
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--vr-ed-ink-muted);
}

.vr-ed-meta__divider {
	width: 1px;
	height: 32px;
	background: var(--vr-ed-rule);
}

@media (max-width: 600px) {
	.vr-ed-meta { flex-wrap: wrap; gap: 14px 20px; }
	.vr-ed-meta__divider { display: none; }
}

/* Featured image */
.vr-ed-feature {
	max-width: 1100px;
	margin: 0 auto;
	padding: 48px 24px 0;
}

.vr-ed-feature__img,
.vr-ed-feature img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
}

.vr-ed-feature__caption {
	font-family: var(--vr-font-sans);
	font-size: 13px;
	color: var(--vr-ed-ink-muted);
	margin-top: 12px;
	text-align: center;
	font-style: italic;
}

/* Article body */
.vr-ed-article {
	max-width: 760px;
	margin: 0 auto;
	padding: 56px 24px 80px;
	position: relative;
}

.vr-ed-share {
	position: absolute;
	left: -100px;
	top: 56px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
}

.vr-ed-share__label {
	font-family: var(--vr-font-sans);
	font-size: 10px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--vr-ed-ink-muted);
	writing-mode: vertical-rl;
	margin-bottom: 8px;
}

.vr-ed-share__btn {
	width: 36px;
	height: 36px;
	display: grid;
	place-items: center;
	border: 1px solid var(--vr-ed-rule);
	border-radius: 50%;
	color: var(--vr-ed-ink);
	text-decoration: none;
	font-family: var(--vr-font-sans);
	font-size: 12px;
	font-weight: 600;
	transition: all .2s;
}

.vr-ed-share__btn:hover {
	background: var(--vr-ed-ink);
	color: var(--vr-ed-paper);
	border-color: var(--vr-ed-ink);
}

@media (max-width: 1100px) {
	.vr-ed-share {
		position: static;
		flex-direction: row;
		margin-bottom: 32px;
	}
	.vr-ed-share__label {
		writing-mode: horizontal-tb;
		margin: 0 8px 0 0;
		align-self: center;
	}
}

.vr-ed-content {
	font-family: var(--vr-font-serif);
	font-size: 19px;
	line-height: 1.75;
	color: var(--vr-ed-ink);
}

.vr-ed-content p {
	margin: 0 0 1.4em;
}

.vr-ed-content p:first-of-type::first-letter {
	font-family: var(--vr-font-display);
	font-size: 4.5em;
	line-height: 0.9;
	float: left;
	padding: 8px 14px 0 0;
	color: var(--vr-ed-accent);
	font-weight: 700;
}

.vr-ed-content h2 {
	font-family: var(--vr-font-display);
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	margin: 2em 0 0.6em;
	color: var(--vr-ed-ink);
}

.vr-ed-content h3 {
	font-family: var(--vr-font-display);
	font-size: 24px;
	font-weight: 700;
	margin: 1.6em 0 0.5em;
}

.vr-ed-content blockquote {
	border-left: 3px solid var(--vr-ed-accent);
	padding: 8px 0 8px 24px;
	margin: 2em 0;
	font-family: var(--vr-font-display);
	font-size: 24px;
	font-style: italic;
	line-height: 1.4;
	color: var(--vr-ed-ink);
}

.vr-ed-content a {
	color: var(--vr-ed-accent);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.vr-ed-content img {
	max-width: 100%;
	height: auto;
	margin: 2em 0;
	border-radius: 4px;
}

/* Footer */
.vr-ed-footer {
	background: var(--vr-ed-paper);
	border-top: 1px solid var(--vr-ed-rule);
	padding: 56px 24px;
}

.vr-ed-footer__inner {
	max-width: 760px;
	margin: 0 auto;
}

.vr-ed-tags {
	font-family: var(--vr-font-sans);
	font-size: 13px;
	margin-bottom: 40px;
	color: var(--vr-ed-ink-muted);
}

.vr-ed-tags__label {
	font-weight: 600;
	margin-right: 8px;
}

.vr-ed-tags__list a {
	color: var(--vr-ed-ink);
	text-decoration: none;
	border-bottom: 1px solid var(--vr-ed-rule);
	margin-right: 12px;
	padding-bottom: 1px;
}

.vr-ed-tags__list a:hover {
	border-color: var(--vr-ed-accent);
	color: var(--vr-ed-accent);
}

.vr-ed-author-card {
	display: flex;
	gap: 20px;
	padding: 28px;
	background: var(--vr-ed-bg);
	border-radius: 4px;
	margin-bottom: 56px;
}

.vr-ed-author-card__avatar {
	border-radius: 50%;
	width: 80px;
	height: 80px;
	object-fit: cover;
	flex-shrink: 0;
}

.vr-ed-author-card__role {
	font-family: var(--vr-font-sans);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--vr-ed-ink-muted);
}

.vr-ed-author-card__name {
	font-family: var(--vr-font-display);
	font-size: 22px;
	font-weight: 700;
	margin: 4px 0 8px;
	color: var(--vr-ed-ink);
}

.vr-ed-author-card__bio {
	font-size: 15px;
	line-height: 1.55;
	color: var(--vr-ed-ink-soft);
	margin: 0;
}

.vr-ed-related__title {
	font-family: var(--vr-font-display);
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 24px;
	padding-bottom: 16px;
	border-bottom: 2px solid var(--vr-ed-ink);
}

.vr-ed-related__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
}

.vr-ed-related__card {
	text-decoration: none;
	color: inherit;
	display: block;
	transition: transform .2s;
}

.vr-ed-related__card:hover {
	transform: translateY(-3px);
}

.vr-ed-related__img {
	margin-bottom: 14px;
	overflow: hidden;
	border-radius: 4px;
	aspect-ratio: 4/3;
}

.vr-ed-related__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vr-ed-related__cat {
	font-family: var(--vr-font-sans);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--vr-ed-accent);
}

.vr-ed-related__head {
	font-family: var(--vr-font-display);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.25;
	margin: 6px 0 8px;
	color: var(--vr-ed-ink);
}

.vr-ed-related__date {
	font-family: var(--vr-font-sans);
	font-size: 12px;
	color: var(--vr-ed-ink-muted);
}

/* ==========================================================================
   2. EDITORIAL — Archive (home.php)
   ========================================================================== */

.vr-editorial-archive {
	background: var(--vr-ed-bg);
	color: var(--vr-ed-ink);
	font-family: var(--vr-font-serif);
	min-height: 60vh;
}

.vr-edarc-hero {
	background: var(--vr-ed-paper);
	border-bottom: 1px solid var(--vr-ed-rule);
	padding: 56px 24px 40px;
}

.vr-edarc-hero__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.vr-edarc-hero__kicker {
	font-family: var(--vr-font-sans);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--vr-ed-paper);
	background: var(--vr-ed-ink);
	padding: 4px 10px;
	border-radius: 2px;
	display: inline-block;
	margin-bottom: 16px;
}

.vr-edarc-hero__title {
	font-family: var(--vr-font-display);
	font-size: clamp(36px, 6vw, 64px);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.015em;
	margin: 0 0 16px;
}

.vr-edarc-hero__deck {
	font-family: var(--vr-font-serif);
	font-size: 19px;
	line-height: 1.55;
	color: var(--vr-ed-ink-soft);
	max-width: 640px;
	margin: 0;
}

/* Lead */
.vr-edarc-lead {
	max-width: 1200px;
	margin: 56px auto 0;
	padding: 0 24px;
}

.vr-edarc-lead__link {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 40px;
	text-decoration: none;
	color: inherit;
	background: var(--vr-ed-paper);
	padding: 32px;
	border-radius: 6px;
	transition: transform .2s;
}

.vr-edarc-lead__link:hover {
	transform: translateY(-2px);
}

.vr-edarc-lead__img {
	overflow: hidden;
	border-radius: 4px;
	aspect-ratio: 16/10;
}

.vr-edarc-lead__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vr-edarc-lead__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.vr-edarc-lead__cat {
	font-family: var(--vr-font-sans);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--vr-ed-accent);
	margin-bottom: 14px;
}

.vr-edarc-lead__title {
	font-family: var(--vr-font-display);
	font-size: clamp(28px, 3.5vw, 40px);
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 16px;
}

.vr-edarc-lead__deck {
	font-family: var(--vr-font-serif);
	font-size: 17px;
	line-height: 1.55;
	color: var(--vr-ed-ink-soft);
	margin: 0 0 20px;
}

.vr-edarc-lead__meta {
	font-family: var(--vr-font-sans);
	font-size: 13px;
	color: var(--vr-ed-ink-muted);
}

.vr-edarc-lead__author {
	font-weight: 600;
	color: var(--vr-ed-ink);
}

.vr-edarc-lead__sep {
	margin: 0 8px;
	opacity: 0.5;
}

@media (max-width: 800px) {
	.vr-edarc-lead__link {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 20px;
	}
}

/* Secondary grid */
.vr-edarc-grid {
	max-width: 1200px;
	margin: 56px auto 0;
	padding: 0 24px;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 40px;
}

.vr-edarc-card__link {
	text-decoration: none;
	color: inherit;
	display: block;
	transition: transform .2s;
}

.vr-edarc-card__link:hover {
	transform: translateY(-3px);
}

.vr-edarc-card__link:hover .vr-edarc-card__title {
	color: var(--vr-ed-accent);
}

.vr-edarc-card__img {
	overflow: hidden;
	border-radius: 4px;
	aspect-ratio: 4/3;
	margin-bottom: 16px;
}

.vr-edarc-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s;
}

.vr-edarc-card__link:hover .vr-edarc-card__img img {
	transform: scale(1.04);
}

.vr-edarc-card__cat {
	font-family: var(--vr-font-sans);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--vr-ed-accent);
}

.vr-edarc-card__title {
	font-family: var(--vr-font-display);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
	margin: 8px 0 10px;
	color: var(--vr-ed-ink);
	transition: color .2s;
}

.vr-edarc-card__excerpt {
	font-family: var(--vr-font-serif);
	font-size: 15px;
	line-height: 1.55;
	color: var(--vr-ed-ink-soft);
	margin: 0 0 12px;
}

.vr-edarc-card__meta {
	font-family: var(--vr-font-sans);
	font-size: 12px;
	color: var(--vr-ed-ink-muted);
}

.vr-edarc-card__sep {
	margin: 0 6px;
	opacity: 0.5;
}

/* Pagination */
.vr-edarc-pagination,
.vr-idarc-pagination {
	max-width: 1200px;
	margin: 56px auto;
	padding: 0 24px;
	text-align: center;
}

.vr-edarc-pagination .nav-links,
.vr-idarc-pagination .nav-links {
	display: inline-flex;
	gap: 6px;
	flex-wrap: wrap;
	justify-content: center;
	font-family: var(--vr-font-sans);
}

.vr-edarc-pagination .page-numbers,
.vr-idarc-pagination .page-numbers {
	padding: 10px 14px;
	border: 1px solid var(--vr-ed-rule);
	color: var(--vr-ed-ink);
	text-decoration: none;
	font-size: 14px;
	border-radius: 3px;
	transition: all .15s;
}

.vr-edarc-pagination .page-numbers:hover,
.vr-edarc-pagination .page-numbers.current,
.vr-idarc-pagination .page-numbers:hover,
.vr-idarc-pagination .page-numbers.current {
	background: var(--vr-ed-ink);
	color: var(--vr-ed-paper);
	border-color: var(--vr-ed-ink);
}

/* ==========================================================================
   3. IDEAS — Single (single-idea.php)
   ========================================================================== */

.vr-idea-single {
	background: var(--vr-id-bg);
	color: var(--vr-id-ink);
	font-family: var(--vr-font-sans);
	min-height: 60vh;
}

.vr-idea-hero {
	background: linear-gradient(180deg, #ffffff 0%, var(--vr-id-bg) 100%);
	border-bottom: 1px solid var(--vr-id-rule);
	padding: 48px 24px 40px;
	position: relative;
}

.vr-idea-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--vr-id-accent) 0%, var(--vr-id-accent) 60%, var(--vr-id-vote) 60%, var(--vr-id-vote) 100%);
}

.vr-idea-hero__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.vr-idea-breadcrumbs {
	font-size: 13px;
	color: var(--vr-id-ink-soft);
	margin-bottom: 18px;
}

.vr-idea-breadcrumbs a {
	color: inherit;
	text-decoration: none;
}

.vr-idea-breadcrumbs a:hover {
	color: var(--vr-id-accent-dark);
}

.vr-idea-sep {
	margin: 0 8px;
	opacity: 0.4;
}

.vr-idea-tags-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.vr-idea-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.vr-idea-badge--type {
	background: var(--vr-id-accent);
	color: #5a4400;
}

.vr-idea-badge--district {
	background: rgba(74, 158, 218, 0.12);
	color: var(--vr-danube);
}

.vr-idea-badge--cat {
	background: var(--vr-id-rule);
	color: var(--vr-id-ink-soft);
}

.vr-idea-status.is-new        { background: #e8f4fd; color: #1565c0; }
.vr-idea-status.is-progress   { background: #fff8e1; color: #b8780b; }
.vr-idea-status.is-done       { background: #e3f7ed; color: #1d7a4a; }
.vr-idea-status.is-rejected   { background: #ffeaea; color: #b8362a; }

.vr-idea-title {
	font-family: var(--vr-font-display);
	font-size: clamp(28px, 4.5vw, 44px);
	font-weight: 700;
	line-height: 1.15;
	margin: 0 0 16px;
	color: var(--vr-id-ink);
}

.vr-idea-submeta {
	font-size: 14px;
	color: var(--vr-id-ink-soft);
}

.vr-idea-submeta strong {
	color: var(--vr-id-ink);
	font-weight: 600;
}

.vr-idea-submeta__sep {
	margin: 0 8px;
	opacity: 0.5;
}

/* Grid: content + sidebar */
.vr-idea-grid {
	max-width: 1200px;
	margin: 40px auto 0;
	padding: 0 24px 80px;
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 48px;
	align-items: start;
}

@media (max-width: 900px) {
	.vr-idea-grid { grid-template-columns: 1fr; gap: 32px; }
}

.vr-idea-content {
	background: var(--vr-id-card);
	border-radius: 8px;
	padding: 36px;
	box-shadow: 0 1px 3px rgba(10, 22, 40, 0.05);
}

@media (max-width: 600px) {
	.vr-idea-content { padding: 24px 20px; }
}

.vr-idea-feature {
	margin: -36px -36px 32px;
	overflow: hidden;
	border-radius: 8px 8px 0 0;
	aspect-ratio: 16/9;
}

.vr-idea-feature img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 600px) {
	.vr-idea-feature { margin: -24px -20px 24px; }
}

.vr-idea-body {
	font-family: var(--vr-font-serif);
	font-size: 17px;
	line-height: 1.65;
	color: var(--vr-id-ink);
}

.vr-idea-body p {
	margin: 0 0 1.2em;
}

.vr-idea-body h2,
.vr-idea-body h3 {
	font-family: var(--vr-font-display);
	font-weight: 700;
	margin: 1.6em 0 0.5em;
	color: var(--vr-id-ink);
}

.vr-idea-body h2 { font-size: 24px; }
.vr-idea-body h3 { font-size: 20px; }

/* Map */
.vr-idea-map-section {
	margin-top: 40px;
	padding-top: 32px;
	border-top: 1px solid var(--vr-id-rule);
}

.vr-idea-section-title {
	font-family: var(--vr-font-display);
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 16px;
	color: var(--vr-id-ink);
}

.vr-idea-map {
	height: 320px;
	border-radius: 6px;
	overflow: hidden;
	border: 1px solid var(--vr-id-rule);
}

.vr-idea-map__address {
	font-size: 14px;
	color: var(--vr-id-ink-soft);
	margin: 12px 0 0;
}

.vr-idea-marker__pin {
	width: 24px;
	height: 24px;
	background: var(--vr-id-accent);
	border: 3px solid var(--vr-id-ink);
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
	margin-left: 4px;
	margin-top: 4px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Comments */
.vr-idea-comments {
	margin-top: 40px;
	padding-top: 32px;
	border-top: 1px solid var(--vr-id-rule);
}

.vr-idea-comments--soon .vr-idea-comments__notice {
	padding: 24px;
	background: var(--vr-id-bg);
	border-radius: 6px;
	color: var(--vr-id-ink-soft);
	font-size: 15px;
	font-style: italic;
	text-align: center;
	margin: 0;
}

/* Sidebar */
.vr-idea-side {
	position: sticky;
	top: 100px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

@media (max-width: 900px) {
	.vr-idea-side { position: static; }
}

.vr-idea-vote {
	background: var(--vr-id-card);
	border: 2px solid var(--vr-id-ink);
	border-radius: 8px;
	padding: 28px 24px;
	text-align: center;
	box-shadow: 6px 6px 0 var(--vr-id-accent);
}

.vr-idea-vote__count {
	margin-bottom: 20px;
}

.vr-idea-vote__num {
	font-family: var(--vr-font-display);
	font-size: 56px;
	font-weight: 700;
	line-height: 1;
	color: var(--vr-id-ink);
	display: block;
}

.vr-idea-vote__label {
	font-size: 13px;
	color: var(--vr-id-ink-soft);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-top: 4px;
	display: block;
}

.vr-idea-vote__btn {
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 20px;
	background: var(--vr-id-vote);
	color: white;
	border: none;
	border-radius: 6px;
	font-family: var(--vr-font-sans);
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all .15s;
}

.vr-idea-vote__btn:hover:not(:disabled) {
	background: #178860;
	transform: translateY(-1px);
}

.vr-idea-vote__btn:disabled {
	cursor: not-allowed;
	opacity: 0.85;
}

.vr-idea-vote__btn.is-voted {
	background: var(--vr-id-ink);
}

.vr-idea-vote__btn.is-loading {
	opacity: 0.6;
}

.vr-idea-vote__note {
	font-size: 12px;
	color: var(--vr-id-ink-soft);
	margin: 12px 0 0;
}

/* Nearby + CTA */
.vr-idea-nearby,
.vr-idea-cta {
	background: var(--vr-id-card);
	border: 1px solid var(--vr-id-rule);
	border-radius: 8px;
	padding: 24px;
}

.vr-idea-nearby__title,
.vr-idea-cta__title {
	font-family: var(--vr-font-display);
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 14px;
	color: var(--vr-id-ink);
}

.vr-idea-nearby__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.vr-idea-nearby__item {
	border-bottom: 1px solid var(--vr-id-rule);
}

.vr-idea-nearby__item:last-child {
	border-bottom: none;
}

.vr-idea-nearby__item a {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 0;
	text-decoration: none;
	color: var(--vr-id-ink);
	font-size: 14px;
	line-height: 1.35;
	transition: color .15s;
}

.vr-idea-nearby__item a:hover {
	color: var(--vr-id-accent-dark);
}

.vr-idea-nearby__head {
	flex: 1;
}

.vr-idea-nearby__votes {
	font-weight: 600;
	color: var(--vr-id-vote);
	white-space: nowrap;
	font-size: 13px;
}

.vr-idea-nearby__more {
	display: block;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--vr-id-rule);
	font-size: 13px;
	color: var(--vr-id-accent-dark);
	text-decoration: none;
	font-weight: 600;
}

.vr-idea-cta {
	background: var(--vr-id-ink);
	color: #fff;
	border-color: var(--vr-id-ink);
}

.vr-idea-cta__title {
	color: var(--vr-id-accent);
}

.vr-idea-cta__text {
	font-size: 14px;
	margin: 0 0 16px;
	color: rgba(255,255,255,0.85);
}

.vr-idea-cta__btn {
	display: inline-block;
	width: 100%;
	text-align: center;
	padding: 12px 20px;
	background: var(--vr-id-accent);
	color: var(--vr-id-ink);
	text-decoration: none;
	border-radius: 6px;
	font-weight: 700;
	transition: transform .15s;
}

.vr-idea-cta__btn:hover {
	transform: translateY(-1px);
}

/* ==========================================================================
   4. IDEAS — Archive (archive-idea.php)
   ========================================================================== */

.vr-idea-archive {
	background: var(--vr-id-bg);
	color: var(--vr-id-ink);
	font-family: var(--vr-font-sans);
	min-height: 60vh;
}

.vr-idarc-hero {
	background: var(--vr-id-card);
	border-bottom: 1px solid var(--vr-id-rule);
	padding: 56px 24px 40px;
	position: relative;
}

.vr-idarc-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--vr-id-accent);
}

.vr-idarc-hero__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.vr-idarc-hero__kicker {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #5a4400;
	background: var(--vr-id-accent);
	padding: 5px 12px;
	border-radius: 999px;
	margin-bottom: 16px;
}

.vr-idarc-hero__title {
	font-family: var(--vr-font-display);
	font-size: clamp(34px, 5.5vw, 56px);
	font-weight: 700;
	line-height: 1.05;
	margin: 0 0 14px;
	color: var(--vr-id-ink);
}

.vr-idarc-hero__deck {
	font-size: 17px;
	line-height: 1.55;
	color: var(--vr-id-ink-soft);
	max-width: 640px;
	margin: 0 0 24px;
}

.vr-idarc-hero__actions {
	display: flex;
	gap: 16px;
	align-items: center;
	flex-wrap: wrap;
}

.vr-idarc-hero__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 12px 20px;
	background: var(--vr-id-ink);
	color: var(--vr-id-accent);
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
	font-size: 14px;
	transition: transform .15s;
}

.vr-idarc-hero__cta:hover {
	transform: translateY(-1px);
	color: var(--vr-id-accent);
}

.vr-idarc-hero__stat {
	font-size: 14px;
	color: var(--vr-id-ink-soft);
}

/* Filters */
.vr-idarc-filters {
	background: var(--vr-id-card);
	border-bottom: 1px solid var(--vr-id-rule);
	padding: 16px 24px;
	position: sticky;
	top: 0;
	z-index: 10;
}

.vr-idarc-filters__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

.vr-idarc-filters__group {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
	min-width: 0;
}

.vr-idarc-filters__label {
	font-size: 13px;
	color: var(--vr-id-ink-soft);
	font-weight: 600;
	white-space: nowrap;
}

.vr-idarc-filters__chips {
	display: flex;
	gap: 6px;
	overflow-x: auto;
	scrollbar-width: thin;
	flex: 1;
	min-width: 0;
	padding-bottom: 4px;
}

.vr-idarc-chip {
	display: inline-block;
	padding: 6px 12px;
	background: var(--vr-id-bg);
	color: var(--vr-id-ink-soft);
	text-decoration: none;
	border-radius: 999px;
	font-size: 13px;
	white-space: nowrap;
	transition: all .15s;
	border: 1px solid transparent;
}

.vr-idarc-chip:hover {
	background: var(--vr-id-rule);
	color: var(--vr-id-ink);
}

.vr-idarc-chip.is-active {
	background: var(--vr-id-ink);
	color: var(--vr-id-accent);
	border-color: var(--vr-id-ink);
}

.vr-idarc-filters__sort label {
	font-size: 13px;
	color: var(--vr-id-ink-soft);
	margin-right: 8px;
}

.vr-idarc-filters__sort select {
	padding: 6px 10px;
	border: 1px solid var(--vr-id-rule);
	border-radius: 6px;
	background: var(--vr-id-card);
	font-family: inherit;
	font-size: 13px;
	color: var(--vr-id-ink);
	cursor: pointer;
}

/* Grid */
.vr-idarc-grid {
	max-width: 1200px;
	margin: 32px auto 0;
	padding: 0 24px;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 20px;
}

.vr-idarc-card {
	background: var(--vr-id-card);
	border: 1px solid var(--vr-id-rule);
	border-radius: 8px;
	overflow: hidden;
	display: grid;
	grid-template-columns: 64px 1fr;
	transition: all .2s;
}

.vr-idarc-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(10, 22, 40, 0.08);
	border-color: var(--vr-id-ink);
}

.vr-idarc-card__vote {
	background: var(--vr-id-bg);
	border-right: 1px solid var(--vr-id-rule);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 8px;
	text-align: center;
}

.vr-idarc-card__vote-num {
	font-family: var(--vr-font-display);
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	color: var(--vr-id-ink);
}

.vr-idarc-card__vote-label {
	font-size: 14px;
	color: var(--vr-id-vote);
	margin-top: 2px;
	font-weight: 700;
}

.vr-idarc-card__main {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
}

.vr-idarc-card__img {
	aspect-ratio: 16/9;
	overflow: hidden;
	background: var(--vr-id-bg);
}

.vr-idarc-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s;
}

.vr-idarc-card:hover .vr-idarc-card__img img {
	transform: scale(1.04);
}

.vr-idarc-card__body {
	padding: 16px 18px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.vr-idarc-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 10px;
}

.vr-idarc-card__tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	padding: 3px 8px;
	border-radius: 999px;
	background: var(--vr-id-bg);
	color: var(--vr-id-ink-soft);
}

.vr-idarc-card__tag--district {
	background: rgba(74, 158, 218, 0.12);
	color: var(--vr-danube);
}

.vr-idarc-card__tag--status.is-new        { background: #e8f4fd; color: #1565c0; }
.vr-idarc-card__tag--status.is-progress   { background: #fff8e1; color: #b8780b; }
.vr-idarc-card__tag--status.is-done       { background: #e3f7ed; color: #1d7a4a; }
.vr-idarc-card__tag--status.is-rejected   { background: #ffeaea; color: #b8362a; }

.vr-idarc-card__title {
	font-family: var(--vr-font-display);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.25;
	margin: 0 0 8px;
	color: var(--vr-id-ink);
}

.vr-idarc-card__excerpt {
	font-family: var(--vr-font-serif);
	font-size: 14px;
	line-height: 1.5;
	color: var(--vr-id-ink-soft);
	margin: 0 0 12px;
	flex: 1;
}

.vr-idarc-card__meta {
	font-size: 12px;
	color: var(--vr-id-ink-soft);
	margin-top: auto;
}

.vr-idarc-card__sep {
	margin: 0 6px;
	opacity: 0.5;
}

.vr-idarc-empty {
	max-width: 600px;
	margin: 80px auto;
	text-align: center;
	padding: 0 24px;
}

.vr-idarc-empty h2 {
	font-family: var(--vr-font-display);
	font-size: 28px;
	margin: 0 0 12px;
}

.vr-idarc-empty p {
	color: var(--vr-id-ink-soft);
	margin-bottom: 24px;
}

.vr-idarc-empty__cta {
	display: inline-block;
	padding: 14px 28px;
	background: var(--vr-id-ink);
	color: var(--vr-id-accent);
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
}
/* ==========================================================================
   PATCH 01 — Тъмносин hero за идеи
   Добави този код в КРАЯ на templates.css (или style.css)
   Решава: Менюто е невидимо на бял фон зад hero-то
   ========================================================================== */

/* ===== IDEA SINGLE — тъмен hero ===== */
.vr-idea-hero {
	background: linear-gradient(180deg, #0A1628 0%, #0d1f35 100%);
	border-bottom: none;
	padding: 88px 24px 48px; /* повече top padding да не се лепи менюто */
	color: #fff;
}

.vr-idea-hero::before {
	/* запазваме акцентната линия, но я слагаме отдолу */
	top: auto;
	bottom: 0;
}

/* Breadcrumbs — светли */
.vr-idea-hero .vr-idea-breadcrumbs {
	color: rgba(255, 255, 255, 0.6);
}

.vr-idea-hero .vr-idea-breadcrumbs a {
	color: rgba(255, 255, 255, 0.85);
}

.vr-idea-hero .vr-idea-breadcrumbs a:hover {
	color: var(--vr-id-accent); /* жълто на hover */
}

/* Заглавие — бяло */
.vr-idea-hero .vr-idea-title {
	color: #fff;
}

/* Submeta — светло сиво */
.vr-idea-hero .vr-idea-submeta {
	color: rgba(255, 255, 255, 0.7);
}

.vr-idea-hero .vr-idea-submeta strong {
	color: #fff;
}

/* Badge-овете на тъмен фон — леко настройваме контраста */
.vr-idea-hero .vr-idea-badge--district {
	background: rgba(74, 158, 218, 0.25);
	color: #9ec9ec;
}

.vr-idea-hero .vr-idea-badge--cat {
	background: rgba(255, 255, 255, 0.15);
	color: rgba(255, 255, 255, 0.9);
}

/* Status badges на тъмен фон — по-наситени */
.vr-idea-hero .vr-idea-status.is-new        { background: rgba(74, 158, 218, 0.25); color: #9ec9ec; }
.vr-idea-hero .vr-idea-status.is-progress   { background: rgba(244, 196, 48, 0.25); color: #f4c430; }
.vr-idea-hero .vr-idea-status.is-done       { background: rgba(29, 158, 117, 0.3); color: #5dd9a8; }
.vr-idea-hero .vr-idea-status.is-rejected   { background: rgba(231, 76, 60, 0.25); color: #ec8377; }


/* ===== IDEA ARCHIVE — тъмен hero ===== */
.vr-idarc-hero {
	background: linear-gradient(180deg, #0A1628 0%, #0d1f35 100%);
	border-bottom: none;
	padding: 88px 24px 48px;
	color: #fff;
}

.vr-idarc-hero::before {
	top: auto;
	bottom: 0;
}

/* Заглавие — бяло */
.vr-idarc-hero .vr-idarc-hero__title {
	color: #fff;
}

/* Deck — светло сиво */
.vr-idarc-hero .vr-idarc-hero__deck {
	color: rgba(255, 255, 255, 0.75);
}

/* CTA бутон — обърнат: жълт фон, тъмен текст (по-видим на тъмно) */
.vr-idarc-hero .vr-idarc-hero__cta {
	background: var(--vr-id-accent);
	color: var(--vr-id-ink);
}

.vr-idarc-hero .vr-idarc-hero__cta:hover {
	background: #fff;
	color: var(--vr-id-ink);
}

/* Stat броячът — светъл */
.vr-idarc-hero .vr-idarc-hero__stat {
	color: rgba(255, 255, 255, 0.6);
}

/* Kicker badge — остава жълт (вече изпъква още повече на тъмно) */
/* без промени */
/* ==========================================================================
   PATCH 02 — Hero започва от върха (под прозрачен header)
   Темата има прозрачен .site-header (~76px), очакващ тъмен фон отдолу.
   Този patch гарантира че тъмният hero започва от самия топ.
   ========================================================================== */

/* Премахваме всякакъв top margin/padding от main за idea темплейтите */
.vr-idea-single,
.vr-idea-archive {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

/* Hero започва от 0, но има вътрешен padding-top за разстояние от header-а */
/* Header-ът е ~76px fixed, добавяме 30px breathing room */
.vr-idea-hero {
	margin-top: 0;
	padding-top: 110px; /* 76px header + 34px breathing space */
}

.vr-idarc-hero {
	margin-top: 0;
	padding-top: 110px;
}

/* На mobile може header-ът да е по-малък */
@media (max-width: 768px) {
	.vr-idea-hero,
	.vr-idarc-hero {
		padding-top: 90px;
	}
}

/* Ако body или site-content имат padding/margin над тях — занулява ги за idea страниците */
body.single-idea .vr-idea-single,
body.post-type-archive-idea .vr-idea-archive,
body.tax-idea_district .vr-idea-archive,
body.tax-idea_category .vr-idea-archive {
	margin-top: 0;
}
/* ==========================================================================
   PATCH 03 — Стилове за page-viziyata.php
   Тъмен hero като idea страниците + viziyata-specific детайли
   ========================================================================== */

/* Viziyata page наследява vr-editorial-archive стиловете
   Но има тъмен hero (като idea страниците) и empty state */

.vr-viziyata {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

/* ===== ТЪМЕН HERO ===== */
.vr-viziyata-hero {
	background: linear-gradient(180deg, #0A1628 0%, #0d1f35 100%);
	border-bottom: none;
	padding: 110px 24px 56px;
	color: #fff;
	position: relative;
	margin-top: 0;
}

.vr-viziyata-hero::before {
	/* акцент линия отдолу */
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--vr-ed-accent) 0%, var(--vr-ed-accent) 100%);
}

@media (max-width: 768px) {
	.vr-viziyata-hero {
		padding-top: 90px;
	}
}

/* Kicker - на тъмен фон */
.vr-viziyata-hero .vr-edarc-hero__kicker {
	background: var(--vr-ed-accent); /* Danube blue */
	color: #fff;
}

/* Заглавие - бяло */
.vr-viziyata-hero__title {
	color: #fff !important;
}

/* Deck - светло */
.vr-viziyata-hero__deck {
	color: rgba(255, 255, 255, 0.75) !important;
	max-width: 720px;
}

/* Stats badge */
.vr-viziyata-hero__stats {
	display: flex;
	gap: 24px;
	margin-top: 24px;
}

.vr-viziyata-stat {
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
}

.vr-viziyata-stat strong {
	font-family: var(--vr-font-display);
	font-size: 28px;
	color: var(--vr-ed-accent);
	font-weight: 700;
	line-height: 1;
}

/* ===== EMPTY STATE ===== */
.vr-viziyata-empty {
	max-width: 560px;
	margin: 80px auto;
	text-align: center;
	padding: 48px 32px;
	background: var(--vr-ed-paper);
	border-radius: 8px;
	border: 1px solid var(--vr-ed-rule);
}

.vr-viziyata-empty h2 {
	font-family: var(--vr-font-display);
	font-size: 28px;
	color: var(--vr-ed-ink);
	margin: 0 0 12px;
}

.vr-viziyata-empty p {
	font-size: 16px;
	line-height: 1.55;
	color: var(--vr-ed-ink-soft);
	margin: 0;
}

.vr-viziyata-empty strong {
	color: var(--vr-ed-ink);
	background: var(--vr-ed-bg);
	padding: 2px 8px;
	border-radius: 3px;
	font-weight: 600;
}
/* ==========================================================================
   PATCH 04 — "Случва се" стилове
   Червен/тъмен акцент, news layout, pulse animation за актуалност
   ========================================================================== */

/* ===== HAPPENING SECTION (за главна + квартали) ===== */

.vr-happening-section {
	max-width: 1200px;
	margin: 56px auto;
	padding: 0 24px;
}

.vr-happening-section__header {
	display: flex;
	align-items: baseline;
	gap: 16px;
	margin-bottom: 28px;
	padding-bottom: 16px;
	border-bottom: 2px solid var(--vr-red, #e74c3c);
}

.vr-happening-section__kicker {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--vr-font-sans);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.15em;
	color: var(--vr-red, #e74c3c);
}

.vr-happening-section__pulse {
	width: 8px;
	height: 8px;
	background: var(--vr-red, #e74c3c);
	border-radius: 50%;
	animation: vr-pulse 1.5s ease-in-out infinite;
}

@keyframes vr-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(1.3); }
}

.vr-happening-section__title {
	font-family: var(--vr-font-display);
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 700;
	margin: 0;
	color: var(--vr-ed-ink, #0A1628);
}

.vr-happening-section__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 20px;
}

/* Cards */
.vr-happening-card {
	background: #fff;
	border: 1px solid var(--vr-id-rule, #e2e8f0);
	border-radius: 8px;
	overflow: hidden;
	transition: all .2s;
	border-left: 3px solid var(--vr-red, #e74c3c);
}

.vr-happening-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(10, 22, 40, 0.08);
}

.vr-happening-card__link {
	text-decoration: none;
	color: inherit;
	display: block;
	height: 100%;
}

.vr-happening-card__img {
	aspect-ratio: 16/9;
	overflow: hidden;
	background: var(--vr-id-bg, #f7f9fc);
}

.vr-happening-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s;
}

.vr-happening-card:hover .vr-happening-card__img img {
	transform: scale(1.04);
}

.vr-happening-card__body {
	padding: 16px 18px;
}

.vr-happening-card__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--vr-font-sans);
	font-size: 12px;
	color: var(--vr-id-ink-soft, #475569);
	margin-bottom: 10px;
}

.vr-happening-card__date {
	color: var(--vr-red, #e74c3c);
	font-weight: 600;
}

.vr-happening-card__sep {
	opacity: 0.5;
}

.vr-happening-card__district {
	color: var(--vr-id-ink-soft, #475569);
}

.vr-happening-card__title {
	font-family: var(--vr-font-display);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.25;
	margin: 0 0 8px;
	color: var(--vr-ed-ink, #0A1628);
}

.vr-happening-card__excerpt {
	font-family: var(--vr-font-serif);
	font-size: 14px;
	line-height: 1.5;
	color: var(--vr-id-ink-soft, #475569);
	margin: 0 0 10px;
}

.vr-happening-card__source {
	display: block;
	font-family: var(--vr-font-sans);
	font-size: 11px;
	color: var(--vr-ed-ink-muted, #6b7a8e);
	font-style: italic;
}

.vr-happening-card__source strong {
	color: var(--vr-ed-ink, #0A1628);
	font-style: normal;
}


/* ===== HAPPENING SINGLE PAGE ===== */

.vr-happening-single {
	background: var(--vr-ed-bg, #fafaf7);
	font-family: var(--vr-font-sans);
	min-height: 60vh;
	margin-top: 0 !important;
	padding-top: 0 !important;
}

.vr-happ-hero {
	background: linear-gradient(180deg, #0A1628 0%, #0d1f35 100%);
	color: #fff;
	padding: 110px 24px 48px;
	position: relative;
}

.vr-happ-hero::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--vr-red, #e74c3c);
}

@media (max-width: 768px) {
	.vr-happ-hero { padding-top: 90px; }
}

.vr-happ-hero__inner {
	max-width: 760px;
	margin: 0 auto;
}

.vr-happ-breadcrumbs {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 20px;
}

.vr-happ-breadcrumbs a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
}

.vr-happ-breadcrumbs a:hover {
	color: var(--vr-red, #e74c3c);
}

.vr-happ-sep {
	margin: 0 8px;
	opacity: 0.4;
}

.vr-happ-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--vr-red, #e74c3c);
	margin-bottom: 18px;
}

.vr-happ-kicker__sep {
	opacity: 0.6;
	color: rgba(255, 255, 255, 0.5);
}

.vr-happ-district {
	color: rgba(255, 255, 255, 0.85);
	font-weight: 600;
	letter-spacing: 0.04em;
}

.vr-happ-pulse {
	width: 8px;
	height: 8px;
	background: var(--vr-red, #e74c3c);
	border-radius: 50%;
	animation: vr-pulse 1.5s ease-in-out infinite;
}

.vr-happ-title {
	font-family: var(--vr-font-display);
	font-size: clamp(28px, 4.5vw, 44px);
	font-weight: 700;
	line-height: 1.15;
	color: #fff;
	margin: 0 0 20px;
}

.vr-happ-meta {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 20px;
}

.vr-happ-meta__date {
	color: rgba(255, 255, 255, 0.95);
	font-weight: 500;
}

.vr-happ-meta__time {
	color: rgba(255, 255, 255, 0.6);
}

.vr-happ-meta__sep {
	margin: 0 8px;
	opacity: 0.4;
}

.vr-happ-source {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 6px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.75);
}

.vr-happ-source__label {
	font-style: italic;
}

.vr-happ-source__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #fff;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
	padding-bottom: 1px;
	transition: border-color .15s;
}

.vr-happ-source__link:hover {
	color: #fff;
	border-color: var(--vr-red, #e74c3c);
}

/* Featured */
.vr-happ-feature {
	max-width: 1100px;
	margin: -24px auto 0;
	padding: 0 24px;
}

.vr-happ-feature img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 6px;
	box-shadow: 0 10px 40px rgba(10, 22, 40, 0.15);
}

/* Body */
.vr-happ-body {
	max-width: 760px;
	margin: 48px auto 0;
	padding: 0 24px 80px;
}

.vr-happ-content {
	font-family: var(--vr-font-serif);
	font-size: 18px;
	line-height: 1.7;
	color: var(--vr-ed-ink, #0A1628);
}

.vr-happ-content p { margin: 0 0 1.2em; }

.vr-happ-content h2 {
	font-family: var(--vr-font-display);
	font-size: 26px;
	font-weight: 700;
	margin: 1.8em 0 0.5em;
}

.vr-happ-content h3 {
	font-family: var(--vr-font-display);
	font-size: 21px;
	font-weight: 700;
	margin: 1.5em 0 0.5em;
}

.vr-happ-content blockquote {
	border-left: 3px solid var(--vr-red, #e74c3c);
	padding: 4px 0 4px 20px;
	margin: 1.5em 0;
	font-style: italic;
	color: var(--vr-ed-ink-soft, #3a4a5e);
}

.vr-happ-content a {
	color: var(--vr-ed-accent, #185FA5);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.vr-happ-source-bottom {
	margin-top: 40px;
	padding-top: 32px;
	border-top: 1px solid var(--vr-ed-rule, #e5e2da);
}

.vr-happ-source-bottom__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	background: var(--vr-ed-paper, #fff);
	border: 1px solid var(--vr-ed-rule, #e5e2da);
	border-radius: 6px;
	color: var(--vr-ed-ink, #0A1628);
	text-decoration: none;
	font-family: var(--vr-font-sans);
	font-size: 14px;
	font-weight: 600;
	transition: all .15s;
}

.vr-happ-source-bottom__link:hover {
	border-color: var(--vr-red, #e74c3c);
	color: var(--vr-red, #e74c3c);
}

/* Related */
.vr-happ-related {
	background: var(--vr-ed-paper, #fff);
	border-top: 1px solid var(--vr-ed-rule, #e5e2da);
	padding: 56px 24px;
}

.vr-happ-related__inner {
	max-width: 1100px;
	margin: 0 auto;
}

.vr-happ-related__title {
	font-family: var(--vr-font-display);
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 24px;
	padding-bottom: 16px;
	border-bottom: 2px solid var(--vr-red, #e74c3c);
}

.vr-happ-related__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
}

.vr-happ-related__card {
	display: block;
	padding: 20px;
	background: var(--vr-ed-bg, #fafaf7);
	border-radius: 6px;
	text-decoration: none;
	color: inherit;
	border-left: 3px solid var(--vr-red, #e74c3c);
	transition: transform .15s;
}

.vr-happ-related__card:hover {
	transform: translateY(-2px);
}

.vr-happ-related__date {
	font-family: var(--vr-font-sans);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--vr-red, #e74c3c);
	margin-bottom: 6px;
	display: block;
}

.vr-happ-related__head {
	font-family: var(--vr-font-display);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
	margin: 0;
	color: var(--vr-ed-ink, #0A1628);
}
/* ==========================================================================
   PATCH 05 — Поправки на front-page.php секциите
   - Визията на редакцията: компактен grid вместо разпънати rows
   - Бял текст за заглавията (форсиран приоритет)
   ========================================================================== */

/* ===== ВИЗИЯТА НА РЕДАКЦИЯТА — компактен grid ===== */

/* Скриваме оригиналните inline-styled rows и правим grid container */
.vr-front-editorial {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

@media (max-width: 900px) {
	.vr-front-editorial {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.vr-front-editorial {
		grid-template-columns: 1fr;
	}
}

.vr-front-editorial__card {
	display: flex !important;
	flex-direction: column !important;
	width: auto !important;
	background: #1a1a18;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	text-decoration: none;
	color: inherit;
	transition: transform .2s, border-color .2s;
}

.vr-front-editorial__card:hover {
	transform: translateY(-3px);
	border-color: rgba(29, 158, 117, 0.4);
}

.vr-front-editorial__img {
	width: 100% !important;
	min-height: 0 !important;
	aspect-ratio: 16/10;
	flex-shrink: 0;
	position: relative;
	background-size: cover;
	background-position: center;
}

.vr-front-editorial__badge {
	position: absolute;
	top: 16px;
	left: 16px;
	font-family: 'DM Mono', monospace;
	font-size: 9px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	background: #1D9E75;
	color: #fff;
	padding: 4px 10px;
	border-radius: 2px;
	z-index: 2;
}

.vr-front-editorial__body {
	flex: 1;
	padding: 24px 22px 20px !important;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* Бяло заглавие — с !important за да override-не темата */
.vr-front-editorial__title,
.vr-front-editorial__card h3,
.vr-front-editorial__card h3.vr-front-editorial__title {
	font-family: 'Bebas Neue', sans-serif !important;
	font-size: 22px !important;
	color: #ffffff !important;
	margin: 0 !important;
	line-height: 1.15 !important;
	letter-spacing: 0.02em !important;
	font-weight: 500 !important;
}

.vr-front-editorial__excerpt {
	font-size: 13px;
	color: rgba(245, 243, 238, 0.65);
	line-height: 1.6;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.vr-front-editorial__meta {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	align-items: center;
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-family: 'DM Mono', monospace;
	font-size: 11px;
}

.vr-front-editorial__meta-author {
	color: #1D9E75;
	font-weight: 600;
}

.vr-front-editorial__meta-date {
	color: rgba(245, 243, 238, 0.4);
}

.vr-front-editorial__meta-cta {
	margin-left: auto;
	color: #fff;
	font-size: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	padding-bottom: 1px;
}
/* ==========================================================================
   PATCH 06 — Адаптивен editorial layout (override на patch 05)
   1 статия → hero (голяма, 2 колони)
   2 статии → duo (2 еднакви карти)
   3+ статии → grid (3 колони)
   ========================================================================== */

/* ===== БАЗОВ CARD STYLE — обща за трите варианта ===== */
.vr-front-editorial__card {
	background: #1a1a18;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	text-decoration: none;
	color: inherit;
	transition: transform .2s, border-color .2s;
}

.vr-front-editorial__card:hover {
	transform: translateY(-3px);
	border-color: rgba(29, 158, 117, 0.4);
}

.vr-front-editorial__img {
	position: relative;
	background-size: cover;
	background-position: center;
}

.vr-front-editorial__badge {
	position: absolute;
	top: 16px;
	left: 16px;
	font-family: 'DM Mono', monospace;
	font-size: 9px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	background: #1D9E75;
	color: #fff;
	padding: 4px 10px;
	border-radius: 2px;
	z-index: 2;
}

.vr-front-editorial__body {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.vr-front-editorial__title,
.vr-front-editorial__card h3,
.vr-front-editorial__card h3.vr-front-editorial__title {
	font-family: 'Bebas Neue', sans-serif !important;
	color: #ffffff !important;
	margin: 0 !important;
	line-height: 1.15 !important;
	letter-spacing: 0.02em !important;
	font-weight: 500 !important;
}

.vr-front-editorial__excerpt {
	color: rgba(245, 243, 238, 0.7);
	line-height: 1.6;
	margin: 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.vr-front-editorial__meta {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	align-items: center;
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-family: 'DM Mono', monospace;
	font-size: 11px;
}

.vr-front-editorial__meta-author { color: #1D9E75; font-weight: 600; }
.vr-front-editorial__meta-date { color: rgba(245, 243, 238, 0.4); }
.vr-front-editorial__meta-cta {
	margin-left: auto;
	color: #fff;
	font-size: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	padding-bottom: 1px;
}


/* =================================================================
   ВАРИАНТ 1: HERO — 1 статия (голям 2-колонен layout)
   ================================================================= */

.vr-front-editorial--hero {
	display: block;
}

.vr-front-editorial--hero .vr-front-editorial__card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 380px;
}

.vr-front-editorial--hero .vr-front-editorial__img {
	min-height: 380px;
	height: 100%;
}

.vr-front-editorial--hero .vr-front-editorial__body {
	padding: 48px 48px 40px;
	justify-content: center;
}

.vr-front-editorial--hero .vr-front-editorial__title {
	font-size: 38px !important;
}

.vr-front-editorial--hero .vr-front-editorial__excerpt {
	font-size: 16px;
	-webkit-line-clamp: 4;
}

@media (max-width: 800px) {
	.vr-front-editorial--hero .vr-front-editorial__card {
		grid-template-columns: 1fr;
	}
	.vr-front-editorial--hero .vr-front-editorial__img {
		min-height: 240px;
		aspect-ratio: 16/9;
	}
	.vr-front-editorial--hero .vr-front-editorial__body {
		padding: 28px 24px 24px;
	}
	.vr-front-editorial--hero .vr-front-editorial__title {
		font-size: 28px !important;
	}
}


/* =================================================================
   ВАРИАНТ 2: DUO — 2 статии (две средни карти една до друга)
   ================================================================= */

.vr-front-editorial--duo {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.vr-front-editorial--duo .vr-front-editorial__card {
	display: flex;
	flex-direction: column;
}

.vr-front-editorial--duo .vr-front-editorial__img {
	aspect-ratio: 16/9;
}

.vr-front-editorial--duo .vr-front-editorial__body {
	padding: 28px 28px 24px;
	flex: 1;
}

.vr-front-editorial--duo .vr-front-editorial__title {
	font-size: 26px !important;
}

.vr-front-editorial--duo .vr-front-editorial__excerpt {
	font-size: 14px;
	-webkit-line-clamp: 3;
}

@media (max-width: 700px) {
	.vr-front-editorial--duo {
		grid-template-columns: 1fr;
	}
}


/* =================================================================
   ВАРИАНТ 3: GRID — 3+ статии (3 колони, компактно)
   ================================================================= */

.vr-front-editorial--grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.vr-front-editorial--grid .vr-front-editorial__card {
	display: flex;
	flex-direction: column;
}

.vr-front-editorial--grid .vr-front-editorial__img {
	aspect-ratio: 16/10;
}

.vr-front-editorial--grid .vr-front-editorial__body {
	padding: 24px 22px 20px;
	flex: 1;
}

.vr-front-editorial--grid .vr-front-editorial__title {
	font-size: 22px !important;
}

.vr-front-editorial--grid .vr-front-editorial__excerpt {
	font-size: 13px;
	-webkit-line-clamp: 3;
}

@media (max-width: 900px) {
	.vr-front-editorial--grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.vr-front-editorial--grid {
		grid-template-columns: 1fr;
	}
}
/* ==========================================================================
   PATCH 07 — Агресивен fix за hero layout
   Темата override-ва моите стилове - тук слагам !important на всичко
   ========================================================================== */

/* ===== HERO CARD - 2 колони, форсиран grid ===== */

.vr-front-editorial--hero {
	display: block !important;
	max-width: 1100px;
	margin: 0 auto;
}

.vr-front-editorial--hero .vr-front-editorial__card {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	grid-template-rows: 1fr !important;
	min-height: 420px !important;
	background: #1a1a18 !important;
	border-radius: 12px !important;
	overflow: hidden !important;
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	text-decoration: none !important;
	color: inherit !important;
}

/* Изображението - лявата колона */
.vr-front-editorial--hero .vr-front-editorial__img {
	min-height: 100% !important;
	height: auto !important;
	width: 100% !important;
	background-size: cover !important;
	background-position: center !important;
	position: relative !important;
	display: block !important;
	grid-column: 1 !important;
	grid-row: 1 !important;
}

/* Body - дясната колона */
.vr-front-editorial--hero .vr-front-editorial__body {
	padding: 48px 48px 40px !important;
	display: flex !important;
	flex-direction: column !important;
	justify-content: center !important;
	gap: 16px !important;
	background: #1a1a18 !important;
	grid-column: 2 !important;
	grid-row: 1 !important;
	position: relative !important;
	z-index: 2 !important;
}

/* ЗАГЛАВИЕ - голямо, бяло, видимо */
.vr-front-editorial--hero .vr-front-editorial__title,
.vr-front-editorial--hero h3.vr-front-editorial__title,
.vr-front-editorial--hero .vr-front-editorial__card h3 {
	font-family: 'Bebas Neue', sans-serif !important;
	font-size: 36px !important;
	color: #ffffff !important;
	margin: 0 !important;
	padding: 0 !important;
	line-height: 1.1 !important;
	letter-spacing: 0.02em !important;
	font-weight: 500 !important;
	text-shadow: none !important;
	background: transparent !important;
	display: block !important;
}

/* EXCERPT - читаемо размер, светло сив */
.vr-front-editorial--hero .vr-front-editorial__excerpt {
	font-size: 16px !important;
	line-height: 1.6 !important;
	color: rgba(245, 243, 238, 0.85) !important;
	margin: 0 !important;
	padding: 0 !important;
	display: -webkit-box !important;
	-webkit-box-orient: vertical !important;
	-webkit-line-clamp: 4 !important;
	overflow: hidden !important;
	background: transparent !important;
}

/* META - source line */
.vr-front-editorial--hero .vr-front-editorial__meta {
	display: flex !important;
	gap: 8px !important;
	flex-wrap: wrap !important;
	align-items: center !important;
	margin-top: 8px !important;
	padding-top: 16px !important;
	border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
	font-family: 'DM Mono', monospace !important;
	font-size: 12px !important;
}

.vr-front-editorial--hero .vr-front-editorial__meta-author {
	color: #1D9E75 !important;
	font-weight: 600 !important;
}

.vr-front-editorial--hero .vr-front-editorial__meta-date {
	color: rgba(245, 243, 238, 0.5) !important;
}

.vr-front-editorial--hero .vr-front-editorial__meta-cta {
	margin-left: auto !important;
	color: #ffffff !important;
	font-size: 13px !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.4) !important;
	padding-bottom: 1px !important;
}

/* BADGE остава на изображението */
.vr-front-editorial--hero .vr-front-editorial__badge {
	position: absolute !important;
	top: 20px !important;
	left: 20px !important;
	z-index: 3 !important;
	background: #1D9E75 !important;
	color: #ffffff !important;
	padding: 5px 12px !important;
	border-radius: 3px !important;
	font-family: 'DM Mono', monospace !important;
	font-size: 10px !important;
	letter-spacing: 0.1em !important;
	text-transform: uppercase !important;
	font-weight: 600 !important;
}

/* HOVER */
.vr-front-editorial--hero .vr-front-editorial__card:hover {
	transform: translateY(-3px);
	border-color: rgba(29, 158, 117, 0.5) !important;
	transition: all .25s !important;
}


/* ===== MOBILE - стак отгоре надолу ===== */

@media (max-width: 800px) {
	.vr-front-editorial--hero .vr-front-editorial__card {
		grid-template-columns: 1fr !important;
		grid-template-rows: auto auto !important;
		min-height: 0 !important;
	}

	.vr-front-editorial--hero .vr-front-editorial__img {
		grid-column: 1 !important;
		grid-row: 1 !important;
		aspect-ratio: 16/9 !important;
		min-height: 220px !important;
	}

	.vr-front-editorial--hero .vr-front-editorial__body {
		grid-column: 1 !important;
		grid-row: 2 !important;
		padding: 28px 24px 24px !important;
	}

	.vr-front-editorial--hero .vr-front-editorial__title,
	.vr-front-editorial--hero h3.vr-front-editorial__title {
		font-size: 26px !important;
	}

	.vr-front-editorial--hero .vr-front-editorial__excerpt {
		font-size: 15px !important;
	}
}
/* ==========================================================================
   PATCH 08 — Максимална специфичност за бял текст
   Темата над-override-ва дори !important - тук използваме много специфични
   селектори + inline-like specificity tricks
   ========================================================================== */

/* Тройна специфичност с body селектор + class chain */
body .vr-front-editorial--hero .vr-front-editorial__card .vr-front-editorial__body .vr-front-editorial__title,
body .vr-front-editorial--hero .vr-front-editorial__card .vr-front-editorial__body h3.vr-front-editorial__title,
html body .vr-front-editorial--hero h3,
html body .vr-front-editorial--hero a.vr-front-editorial__card h3 {
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important; /* за Safari/iOS override */
	font-family: 'Bebas Neue', sans-serif !important;
	font-size: 36px !important;
	line-height: 1.1 !important;
	letter-spacing: 0.02em !important;
	font-weight: 500 !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	text-shadow: none !important;
}

/* Excerpt текст */
body .vr-front-editorial--hero .vr-front-editorial__card .vr-front-editorial__body .vr-front-editorial__excerpt,
body .vr-front-editorial--hero .vr-front-editorial__card .vr-front-editorial__body p.vr-front-editorial__excerpt,
html body .vr-front-editorial--hero p {
	color: rgba(245, 243, 238, 0.85) !important;
	-webkit-text-fill-color: rgba(245, 243, 238, 0.85) !important;
	font-size: 16px !important;
	line-height: 1.6 !important;
	background: transparent !important;
}

/* Meta */
body .vr-front-editorial--hero .vr-front-editorial__meta,
body .vr-front-editorial--hero .vr-front-editorial__meta * {
	color: inherit;
	-webkit-text-fill-color: inherit;
}

body .vr-front-editorial--hero .vr-front-editorial__meta-author {
	color: #1D9E75 !important;
	-webkit-text-fill-color: #1D9E75 !important;
	font-weight: 600 !important;
}

body .vr-front-editorial--hero .vr-front-editorial__meta-date {
	color: rgba(245, 243, 238, 0.55) !important;
	-webkit-text-fill-color: rgba(245, 243, 238, 0.55) !important;
}

body .vr-front-editorial--hero .vr-front-editorial__meta-cta {
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
	font-size: 13px !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5) !important;
	padding-bottom: 1px !important;
	margin-left: auto !important;
}

/* Защита от темата за hover/visited на линкове */
body a.vr-front-editorial__card,
body a.vr-front-editorial__card:hover,
body a.vr-front-editorial__card:visited,
body a.vr-front-editorial__card:focus {
	color: inherit !important;
	-webkit-text-fill-color: inherit !important;
	text-decoration: none !important;
}

body a.vr-front-editorial__card h3,
body a.vr-front-editorial__card:hover h3,
body a.vr-front-editorial__card:visited h3 {
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
}
/* ==========================================================================
   PATCH 09 — Mobile fixes + тъмен hero за single.php (редакция)
   ========================================================================== */


/* ============================================================
   1. SINGLE.PHP (редакция) — тъмен hero, за да се вижда менюто
   ============================================================ */

.vr-editorial-single,
.vr-editorial-archive {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

.vr-ed-hero {
	background: linear-gradient(180deg, #0A1628 0%, #0d1f35 100%) !important;
	border-bottom: none !important;
	padding-top: 110px !important;
	padding-bottom: 56px !important;
	color: #fff !important;
}

.vr-ed-hero::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--vr-ed-accent, #185FA5);
}

.vr-ed-hero {
	position: relative;
}

@media (max-width: 768px) {
	.vr-ed-hero {
		padding-top: 90px !important;
	}
}

/* Breadcrumbs - светли */
.vr-ed-hero .vr-ed-breadcrumbs,
body .vr-ed-hero .vr-ed-breadcrumbs {
	color: rgba(255, 255, 255, 0.6) !important;
}

.vr-ed-hero .vr-ed-breadcrumbs a,
body .vr-ed-hero .vr-ed-breadcrumbs a {
	color: rgba(255, 255, 255, 0.85) !important;
	-webkit-text-fill-color: rgba(255, 255, 255, 0.85) !important;
}

/* Kicker - на тъмен фон */
.vr-ed-hero .vr-ed-kicker__label {
	background: var(--vr-ed-accent, #185FA5) !important;
	color: #fff !important;
}

.vr-ed-hero .vr-ed-kicker__cat {
	color: var(--vr-ed-accent, #185FA5) !important;
}

/* Заглавие - бяло */
body .vr-ed-hero .vr-ed-title,
body .vr-ed-hero h1.vr-ed-title,
html body .vr-ed-hero h1 {
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
}

/* Deck (subtitle) - светло */
body .vr-ed-hero .vr-ed-deck,
body .vr-ed-hero p.vr-ed-deck {
	color: rgba(255, 255, 255, 0.78) !important;
	-webkit-text-fill-color: rgba(255, 255, 255, 0.78) !important;
}

/* Meta - светло */
body .vr-ed-hero .vr-ed-meta,
body .vr-ed-hero .vr-ed-meta * {
	border-color: rgba(255, 255, 255, 0.15) !important;
}

body .vr-ed-hero .vr-ed-meta__name {
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
}

body .vr-ed-hero .vr-ed-meta__role {
	color: rgba(255, 255, 255, 0.55) !important;
	-webkit-text-fill-color: rgba(255, 255, 255, 0.55) !important;
}

body .vr-ed-hero .vr-ed-meta__divider {
	background: rgba(255, 255, 255, 0.15) !important;
}


/* ============================================================
   2. MOBILE — секциите на главната
   ============================================================ */

@media (max-width: 768px) {

	/* Editorial section - намали padding-а */
	body section[style*="background:#111110"] {
		padding: 48px 20px !important;
	}

	body section[style*="background:#F5F3EE"] {
		padding: 48px 20px !important;
	}

	/* Заглавия на секциите - по-малки на мобилен */
	body section[style*="background:#111110"] h2,
	body section[style*="background:#F5F3EE"] h2 {
		font-size: 28px !important;
		line-height: 1 !important;
		word-break: keep-all !important;
		hyphens: none !important;
	}

	/* Header row - стак на мобилен */
	body section[style*="background:#111110"] > div > div:first-child,
	body section[style*="background:#F5F3EE"] > div > div:first-child {
		flex-wrap: wrap !important;
		gap: 12px !important;
	}

	/* "Виж всички" линк - по-малък */
	body section[style*="background:#111110"] a[href="/viziyata/"],
	body section[style*="background:#F5F3EE"] a[href="/predlozhi-ideya/"] {
		font-size: 12px !important;
	}

	/* Hero card на мобилен - layout, цветове, padding */
	.vr-front-editorial--hero .vr-front-editorial__card {
		grid-template-columns: 1fr !important;
		grid-template-rows: auto auto !important;
		min-height: 0 !important;
	}

	.vr-front-editorial--hero .vr-front-editorial__img {
		grid-column: 1 !important;
		grid-row: 1 !important;
		aspect-ratio: 16/9 !important;
		min-height: 200px !important;
		max-height: 240px !important;
	}

	.vr-front-editorial--hero .vr-front-editorial__body {
		grid-column: 1 !important;
		grid-row: 2 !important;
		padding: 24px 20px 20px !important;
	}

	body .vr-front-editorial--hero .vr-front-editorial__title,
	body .vr-front-editorial--hero h3 {
		font-size: 24px !important;
		line-height: 1.15 !important;
	}

	body .vr-front-editorial--hero .vr-front-editorial__excerpt,
	body .vr-front-editorial--hero p {
		font-size: 14px !important;
		-webkit-line-clamp: 3 !important;
	}

	/* Стиловете на текста - не да са underline links */
	body .vr-front-editorial__card,
	body .vr-front-editorial__card * {
		text-decoration: none !important;
	}
}


/* ============================================================
   3. ОВЕРРАЙД ЗА UNDERLINE НА ТЕКСТА В CARDS
   ============================================================ */

body .vr-front-editorial__card,
body .vr-front-editorial__card:hover,
body .vr-front-editorial__card:visited,
body a.vr-front-editorial__card,
body a.vr-front-editorial__card:hover,
body a.vr-front-editorial__card:visited {
	text-decoration: none !important;
}

body .vr-front-editorial__card *,
body .vr-front-editorial__card h3,
body .vr-front-editorial__card p,
body .vr-front-editorial__card span {
	text-decoration: none !important;
}

/* Запазваме само на мета-cta */
body .vr-front-editorial__meta-cta {
	border-bottom: 1px solid rgba(255, 255, 255, 0.4) !important;
	text-decoration: none !important;
}
/* ==========================================================================
   PATCH 10 — Mobile fixes за КАТЕГОРИИ + КАК РАБОТИ
   ========================================================================== */


/* ============================================================
   1. КАТЕГОРИИ — оправяме отрязването на текста и overlap с икони
   ============================================================ */

/* На всички размери — иконата по-дискретна */
.cat-block .cat-block__deco-icon {
	font-size: 56px !important;
	opacity: 0.18 !important;
	top: 8px !important;
	left: 8px !important;
}

/* Името да не се отрязва */
.cat-block .cat-block__name {
	font-size: 18px !important;
	line-height: 1.05 !important;
	word-break: keep-all !important;
	hyphens: none !important;
	white-space: normal !important;
	overflow: visible !important;
	text-overflow: clip !important;
	display: block !important;
	max-width: 100% !important;
}

.cat-block .cat-block__count {
	font-size: 12px !important;
	opacity: 0.85 !important;
	margin-top: 4px !important;
	display: block !important;
}

.cat-block .cat-block__content {
	padding: 16px !important;
	z-index: 2 !important;
	position: relative !important;
}

/* Минимална височина за да изглеждат равни */
.cat-block {
	min-height: 130px !important;
	display: flex !important;
	align-items: flex-end !important;
	position: relative !important;
}

/* На мобилен: 2 колони само (по-добре от опит за 3) */
@media (max-width: 768px) {
	.cat-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 12px !important;
	}

	.cat-block {
		min-height: 110px !important;
	}

	.cat-block .cat-block__name {
		font-size: 17px !important;
	}

	.cat-block .cat-block__deco-icon {
		font-size: 48px !important;
	}

	.cat-block .cat-block__content {
		padding: 14px 12px !important;
	}

	.cat-block .cat-block__count {
		font-size: 11px !important;
	}
}

/* На много малки екрани (под 380px) - още по-малко */
@media (max-width: 380px) {
	.cat-block .cat-block__name {
		font-size: 15px !important;
	}
}


/* ============================================================
   2. КАК РАБОТИ — center на стъпките на мобилен
   ============================================================ */

/* Базов layout - стъпките се центрират */
.steps-row {
	display: flex !important;
	align-items: stretch !important;
	gap: 24px !important;
}

.step-item {
	flex: 1 !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	text-align: center !important;
	padding: 20px !important;
}

.step-item .step-number {
	font-size: 56px !important;
	font-family: 'Bebas Neue', sans-serif !important;
	line-height: 1 !important;
	margin-bottom: 12px !important;
	display: block !important;
}

.step-item .step-icon {
	font-size: 28px !important;
	display: block !important;
	margin-bottom: 16px !important;
	line-height: 1 !important;
}

.step-item .step-title {
	font-size: 16px !important;
	font-family: 'Bebas Neue', sans-serif !important;
	letter-spacing: 0.04em !important;
	margin: 0 0 12px !important;
	text-align: center !important;
	width: 100% !important;
}

.step-item .step-desc {
	font-size: 14px !important;
	line-height: 1.5 !important;
	text-align: center !important;
	max-width: 280px !important;
	margin: 0 auto !important;
	opacity: 0.75 !important;
}

.step-divider {
	width: 1px !important;
	background: rgba(0, 0, 0, 0.1) !important;
	min-height: 100px !important;
	flex-shrink: 0 !important;
	align-self: center !important;
}


/* На мобилен — стъпките са вертикално */
@media (max-width: 768px) {
	.steps-row {
		flex-direction: column !important;
		gap: 32px !important;
		max-width: 400px !important;
		margin: 0 auto !important;
	}

	.step-item {
		padding: 0 20px !important;
		align-items: center !important;
		text-align: center !important;
	}

	.step-item .step-number {
		font-size: 48px !important;
		text-align: center !important;
	}

	.step-item .step-icon {
		text-align: center !important;
	}

	.step-item .step-title {
		font-size: 18px !important;
		text-align: center !important;
	}

	.step-item .step-desc {
		text-align: center !important;
		font-size: 14px !important;
	}

	/* Divider - хоризонтален на мобилен */
	.step-divider {
		width: 60px !important;
		height: 1px !important;
		min-height: 1px !important;
		margin: 8px auto !important;
	}
}

/* Допълнителна центрирана защита */
body .how-it-works .section-header,
body .how-it-works .section-title {
	text-align: center !important;
}

body .how-it-works .section-title {
	font-size: 32px !important;
	margin: 0 0 32px !important;
}

@media (max-width: 768px) {
	body .how-it-works .section-title {
		font-size: 26px !important;
	}
}
/* ==========================================================================
   PATCH 11 — Центриране на текста в категориите
   ========================================================================== */

.cat-block {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	text-align: center !important;
	position: relative !important;
	min-height: 130px !important;
	padding: 16px !important;
}

.cat-block .cat-block__content {
	padding: 0 !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
	text-align: center !important;
	width: 100% !important;
	z-index: 2 !important;
	position: relative !important;
}

.cat-block .cat-block__name {
	font-size: 18px !important;
	line-height: 1.05 !important;
	text-align: center !important;
	width: 100% !important;
	display: block !important;
	font-weight: 500 !important;
	letter-spacing: 0.02em !important;
}

.cat-block .cat-block__count {
	font-size: 12px !important;
	text-align: center !important;
	width: 100% !important;
	margin-top: 6px !important;
	opacity: 0.85 !important;
	display: block !important;
}

/* Декоративната икона - още по-фина и центрирана */
.cat-block .cat-block__deco-icon {
	font-size: 60px !important;
	opacity: 0.15 !important;
	position: absolute !important;
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
	z-index: 1 !important;
	pointer-events: none !important;
}

/* Стрелката - по-дискретна и в долния десен ъгъл */
.cat-block .cat-block__arrow {
	position: absolute !important;
	bottom: 8px !important;
	right: 12px !important;
	font-size: 14px !important;
	opacity: 0.5 !important;
	z-index: 2 !important;
}

/* На мобилен - по-малка decorative икона */
@media (max-width: 768px) {
	.cat-block .cat-block__deco-icon {
		font-size: 50px !important;
		opacity: 0.18 !important;
	}

	.cat-block .cat-block__name {
		font-size: 17px !important;
	}

	.cat-block {
		min-height: 110px !important;
	}
}

@media (max-width: 380px) {
	.cat-block .cat-block__name {
		font-size: 15px !important;
	}

	.cat-block .cat-block__deco-icon {
		font-size: 42px !important;
	}
}
