﻿/* =============================================================================
   zene.ro theme â€” main.css
   Design system tokens + komponensek. BEM-szerÅ± "z-*" prefix.
   VilÃ¡gos, piros-akcentes magazin tÃ©ma condensed caps tipogrÃ¡fiÃ¡val.
   ============================================================================= */

/* ---------- 1. Design tokens ---------- */
:root {
	/* Brand */
	--z-red:        #e11d2c;
	--z-red-dark:   #b7121f;
	--z-ink:        #0a0e1a;  /* topbar / nav / footer bg */
	--z-ink-2:      #121826;
	--z-ink-3:      #1b2232;

	/* Page */
	--z-bg:         #eef0f2;
	--z-surface:    #ffffff;
	--z-surface-2:  #f7f8fa;
	--z-border:     #e3e6ea;
	--z-border-dk:  #2a3347;

	/* Text */
	--z-text:        #1a1f2b;
	--z-text-soft:   #4a5264;
	--z-text-dim:    #8a92a1;
	--z-text-invert: #ffffff;
	--z-text-invert-soft: #b8bfce;

	/* Rating / charts */
	--z-chart-red:    #c2202c;
	--z-chart-green:  #0e6c3b;
	--z-chart-yellow: #b8860b;
	--z-chart-blue:   #1e3a8a;
	--z-rating-ok:    #2a9d4a;

	/* RÃ¡diÃ³ tile szÃ­nek â€“ preview szerint */
	--z-radio-1: #d6338a;  /* SlÃ¡ger FM â€“ magenta */
	--z-radio-2: #e63a6e;  /* RÃ¡diÃ³ 1 â€“ rose pink */
	--z-radio-3: #e58917;  /* PetÅ‘fi â€“ narancs */
	--z-radio-4: #1a1a1a;  /* Tilos â€“ fekete */

	/* Tipó */
	--z-font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
	--z-font-alt:     'DM Sans', system-ui, sans-serif;
	--z-font-sans:    'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

	--z-fs-xs: .8125rem;
	--z-fs-sm: .9375rem;
	--z-fs-md: 1.0625rem;
	--z-fs-lg: 1.1875rem;
	--z-fs-xl: 1.5rem;
	--z-fs-2xl: 1.875rem;
	--z-fs-3xl: 2.375rem;
	--z-fs-4xl: clamp(2rem, 1.2rem + 3vw, 3rem);
	--z-fs-hero: clamp(2rem, 1.1rem + 4vw, 3.75rem);

	/* Layout */
	--z-container: 1280px;
	--z-gutter: clamp(16px, 2vw, 28px);
	--z-radius-sm: 3px;
	--z-radius:    6px;
	--z-radius-lg: 10px;

	--z-shadow-sm: 0 1px 2px rgba(10,14,26,.08);
	--z-shadow:    0 6px 18px rgba(10,14,26,.08);

	--z-s-1: 4px;  --z-s-2: 8px;  --z-s-3: 12px; --z-s-4: 16px;
	--z-s-5: 24px; --z-s-6: 32px; --z-s-7: 48px; --z-s-8: 64px;

	--z-transition: 160ms ease;
	--z-topbar-h: 34px;
	--z-header-h: 110px;
	--z-nav-h: 54px;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--z-font-sans);
	font-size: var(--z-fs-md);
	line-height: 1.55;
	color: var(--z-text);
	background: var(--z-bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--z-transition); }
a:hover { color: var(--z-red); }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { padding-left: 1.1em; }
.z-footer ul, .z-nav ul, .z-topbar ul, .z-social { list-style: none; padding: 0; margin: 0; }
.screen-reader-text {
	clip: rect(1px,1px,1px,1px);
	position: absolute !important;
	height: 1px; width: 1px;
	overflow: hidden; white-space: nowrap;
}

/* ---------- 3. Layout helpers ---------- */
.z-container { width: 100%; max-width: var(--z-container); margin: 0 auto; padding: 0 var(--z-gutter); }
.z-section   { padding-block: var(--z-s-6); }
.z-section + .z-section { padding-top: 0; }
.z-adwrap    { margin-block: var(--z-s-5); }

/* ---------- 4. Top bar ---------- */
.z-topbar {
	background: var(--z-ink);
	color: var(--z-text-invert-soft);
	font-size: var(--z-fs-xs);
	min-height: var(--z-topbar-h);
	border-bottom: 1px solid rgba(255,255,255,.04);
}
.z-topbar__inner {
	display: flex; align-items: center; gap: var(--z-s-4);
	min-height: var(--z-topbar-h);
	flex-wrap: wrap;
}
.z-topbar__left, .z-topbar__right { display: inline-flex; align-items: center; gap: var(--z-s-4); }
.z-topbar__right { margin-left: auto; }
.z-topbar__meta {
	display: inline-flex; align-items: center; gap: var(--z-s-2);
	color: #fff; font-weight: 600;
}
.z-topbar__day { background: var(--z-red); color: #fff; padding: 2px 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: 10px; }
.z-topbar__tag { color: var(--z-text-invert-soft); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.z-topbar a { color: inherit; }
.z-topbar a:hover { color: #fff; }
.z-topbar__live {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 3px 10px; border-radius: 2px;
	background: var(--z-red); color: #fff; font-weight: 700;
	text-transform: uppercase; letter-spacing: .08em; font-size: 10px;
}
.z-topbar__live::before {
	content: ""; width: 8px; height: 8px; border-radius: 999px; background: #fff;
	animation: z-pulse 1.2s ease-in-out infinite;
}
@keyframes z-pulse { 0%,100% { opacity: .4; } 50% { opacity: 1; } }

/* ---------- 5. Header (logo + banner + search) ---------- */
.z-header-wrap { background: var(--z-surface); border-bottom: 1px solid var(--z-border); position: sticky; top: 0; z-index: 40; transition: box-shadow var(--z-transition); }
.z-header-wrap.is-scrolled { box-shadow: 0 6px 16px rgba(10,14,26,.08); }
.z-header {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: var(--z-s-5);
	min-height: var(--z-header-h);
}
.z-logo { display: inline-flex; align-items: center; line-height: 1; }
.z-logo__img { display: block; height: auto; width: clamp(180px, 22vw, 260px); max-width: 100%; }
.z-logo--footer .z-logo__img { width: 220px; }

.z-header__banner { display: flex; justify-content: center; align-items: center; min-height: 60px; }
.z-header__banner .z-ad { max-width: 100%; }
.z-header__actions { display: inline-flex; align-items: center; gap: var(--z-s-3); }

.z-iconbtn { width: 42px; height: 42px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; color: var(--z-ink); }
.z-iconbtn:hover { color: var(--z-red); background: var(--z-surface-2); }

.z-header__toggle { display: none; width: 42px; height: 42px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.z-header__toggle-bar { width: 22px; height: 2px; background: var(--z-ink); border-radius: 2px; }

/* ---------- 6. Main nav ---------- */
.z-nav-wrap { background: var(--z-ink); border-bottom: 3px solid var(--z-red); }
.z-nav { min-height: var(--z-nav-h); }
.z-nav__list {
	display: flex; flex-wrap: wrap; align-items: stretch;
	font-family: var(--z-font-alt);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
}
.z-nav__list > li { position: relative; }
.z-nav__list > li + li::before {
	content: "";
	position: absolute;
	left: -3px; top: 50%;
	width: 5px; height: 5px;
	border-radius: 999px;
	background: var(--z-red);
	transform: translateY(-50%);
	pointer-events: none;
}
.z-nav__list > li > a {
	display: inline-flex; align-items: center;
	height: var(--z-nav-h);
	padding: 0 20px;
	color: #fff;
	position: relative;
}
.z-nav__list > li > a::after {
	content: "";
	position: absolute; left: 50%; right: 50%; bottom: 0;
	height: 3px; background: var(--z-red);
	transition: left 220ms ease, right 220ms ease;
}
.z-nav__list > li > a:hover { background: var(--z-ink-2); color: #fff; }
.z-nav__list > li > a:hover::after { left: 0; right: 0; }
.z-nav__list > li.current-menu-item > a,
.z-nav__list > li.current_page_item > a,
.z-nav__list > li.current-menu-ancestor > a {
	background: var(--z-red);
	color: #fff;
}
.z-nav__list > li.current-menu-item > a::after,
.z-nav__list > li.current_page_item > a::after,
.z-nav__list > li.current-menu-ancestor > a::after { display: none; }
.z-nav__list > li.current-menu-item + li::before,
.z-nav__list > li + li.current-menu-item::before { display: none; }

/* Submenu (desktop) */
.z-nav__list li .sub-menu {
	position: absolute; top: 100%; left: 0; min-width: 220px;
	background: var(--z-ink-2);
	list-style: none; padding: 6px 0; margin: 0;
	box-shadow: var(--z-shadow);
	opacity: 0; visibility: hidden; transform: translateY(-4px);
	transition: opacity var(--z-transition), transform var(--z-transition), visibility var(--z-transition);
	z-index: 10;
}
.z-nav__list li:hover > .sub-menu,
.z-nav__list li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.z-nav__list .sub-menu a { display: block; padding: 10px 16px; color: #fff; font-size: 14px; }
.z-nav__list .sub-menu a:hover { background: var(--z-red); color: #fff; }

/* Search bar (expandable) */
.z-searchbar { background: var(--z-ink); border-top: 1px solid rgba(255,255,255,.06); padding: var(--z-s-3) 0; }
.z-search { display: flex; gap: var(--z-s-2); }
.z-search__input {
	flex: 1; min-width: 0;
	background: #fff; color: var(--z-text);
	border: 0; border-radius: var(--z-radius-sm);
	padding: 10px 14px; font-size: var(--z-fs-md);
}
.z-search__input:focus { outline: 2px solid var(--z-red); outline-offset: 1px; }
.z-search__btn { background: var(--z-red); color: #fff; padding: 0 18px; border-radius: var(--z-radius-sm); display: inline-flex; align-items: center; justify-content: center; }
.z-search__btn:hover { background: var(--z-red-dark); }

/* ---------- 7. Ribbon section heading ---------- */
/* SÃ¶tÃ©t zÃ¡szlÃ³/ribbon alakÃº blokk, jobbra nyÃºlÃ³ hÃ¡romszÃ¶gvÃ©ggel */
.z-ribbon {
	display: flex; align-items: center; justify-content: space-between;
	gap: var(--z-s-4);
	margin-bottom: var(--z-s-4);
}
.z-ribbon__title {
	position: relative;
	display: inline-flex; align-items: center;
	height: 52px;
	padding: 0 var(--z-s-5) 0 var(--z-s-4);
	background: var(--z-ink);
	color: #fff;
	font-family: var(--z-font-alt);
	font-weight: 900;
	font-size: 24px;
	letter-spacing: .04em;
	text-transform: uppercase;
	margin: 0;
}
.z-ribbon__title::after {
	content: "";
	position: absolute;
	top: 0; right: -26px;
	width: 0; height: 0;
	border-top: 26px solid var(--z-ink);
	border-bottom: 26px solid var(--z-ink);
	border-right: 26px solid transparent;
}
.z-ribbon--red .z-ribbon__title { background: var(--z-red); }
.z-ribbon--red .z-ribbon__title::after { border-top-color: var(--z-red); border-bottom-color: var(--z-red); }

.z-ribbon__rule {
	flex: 1; height: 1px; background: var(--z-border); margin-left: 26px;
}
.z-ribbon__more {
	font-family: var(--z-font-alt);
	font-weight: 700;
	font-size: 15px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--z-text-soft);
	white-space: nowrap;
}
.z-ribbon__more::after { content: " â†’"; }
.z-ribbon__more:hover { color: var(--z-red); }

/* Sub-tabs (pl. MAGYARORSZÃG / ERDÃ‰LY / NAGYVILÃG) */
.z-subtabs { display: flex; flex-wrap: wrap; gap: 0; background: var(--z-ink); margin-bottom: var(--z-s-4); }
.z-subtabs__item {
	font-family: var(--z-font-display); font-weight: 700;
	font-size: 14px; letter-spacing: .1em; text-transform: uppercase;
	color: rgba(255,255,255,.68);
	padding: 12px 20px; position: relative;
	transition: color var(--z-transition), background var(--z-transition);
}
.z-subtabs__item.is-active { background: var(--z-red); color: #fff; }
.z-subtabs__item:hover:not(.is-active) { background: var(--z-ink-2); color: #fff; }

/* ---------- 8. Flag tag (kÃ¡rtyÃ¡kra: POP, INTERJÃš, LEMEZ, stb.) ---------- */
.z-flag {
	display: inline-block;
	background: var(--z-red);
	color: #fff;
	font-family: var(--z-font-display);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: .12em;
	text-transform: uppercase;
	padding: 6px 12px;
	line-height: 1;
}

/* ---------- 9. Hero magazin blokk ---------- */
.z-mhero { display: grid; grid-template-columns: minmax(280px, 420px) 1fr; gap: 0; background: var(--z-surface); box-shadow: var(--z-shadow-sm); }
.z-mhero__list { display: flex; flex-direction: column; padding: var(--z-s-5); gap: 0; }
.z-mhero__lead { padding-bottom: var(--z-s-4); border-bottom: 1px solid var(--z-border); margin-bottom: var(--z-s-3); }
.z-mhero__lead .z-flag { margin-bottom: var(--z-s-3); }
.z-mhero__leadTitle {
	font-family: var(--z-font-display); font-weight: 700;
	font-size: var(--z-fs-3xl); line-height: 1.05; letter-spacing: -.01em;
	text-transform: uppercase; margin: 0 0 var(--z-s-3);
}
.z-mhero__leadTitle a:hover { color: var(--z-red); }
.z-mhero__leadExcerpt { color: var(--z-text-soft); font-size: var(--z-fs-sm); margin: 0 0 var(--z-s-3); }
.z-mhero__leadMeta { font-family: var(--z-font-display); font-size: 12px; font-weight: 600; letter-spacing: .12em; color: var(--z-text-dim); text-transform: uppercase; }
.z-mhero__leadMeta span + span::before { content: "â€¢"; margin: 0 8px; color: var(--z-border); }

.z-mhero__rank { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.z-mhero__rankItem { display: grid; grid-template-columns: 44px 10px 1fr; align-items: center; padding: 12px 0; border-top: 1px solid var(--z-border); }
.z-mhero__rankItem:first-child { border-top: 0; }
.z-mhero__rankNum { font-family: var(--z-font-display); font-weight: 700; font-size: 20px; color: var(--z-text-dim); }
.z-mhero__rankBar { height: 32px; border-radius: 2px; background: var(--z-red); }
.z-mhero__rankItem:nth-child(3n+2) .z-mhero__rankBar { background: var(--z-chart-blue); }
.z-mhero__rankItem:nth-child(3n+3) .z-mhero__rankBar { background: var(--z-chart-yellow); }
.z-mhero__rankTitle { font-family: var(--z-font-display); font-weight: 600; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; padding-left: 12px; color: var(--z-text); }
.z-mhero__rankTitle:hover { color: var(--z-red); }

.z-mhero__feature { position: relative; overflow: hidden; min-height: 380px; }
.z-mhero__featureImg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.z-mhero__featureOverlay {
	position: absolute; inset: auto 0 0 0;
	padding: var(--z-s-5);
	background: linear-gradient(180deg, rgba(10,14,26,0) 0%, rgba(10,14,26,.88) 70%);
	color: #fff;
}
.z-mhero__featureTitle {
	font-family: var(--z-font-display); font-weight: 700;
	font-size: var(--z-fs-hero); line-height: 1.05;
	letter-spacing: -.01em; text-transform: uppercase;
	margin: var(--z-s-3) 0 0;
}

/* ---------- 10. Grids ---------- */
.z-grid { display: grid; gap: var(--z-s-4); }
.z-grid--2  { grid-template-columns: repeat(2, 1fr); }
.z-grid--3  { grid-template-columns: repeat(3, 1fr); }
.z-grid--4  { grid-template-columns: repeat(4, 1fr); }
.z-grid--6  { grid-template-columns: repeat(6, 1fr); }
.z-grid--auto-md  { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.z-grid--auto-lg  { grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); }

/* ---------- 11. KÃ¶zÃ¶s kÃ¡rtya (hÃ­r / koncert / Ã¡ltalÃ¡nos) ---------- */
.z-card { background: var(--z-surface); box-shadow: var(--z-shadow-sm); position: relative; overflow: hidden; display: flex; flex-direction: column; transition: transform var(--z-transition), box-shadow var(--z-transition); }
.z-card::after {
	content: "";
	position: absolute; left: 0; right: 100%; bottom: 0;
	height: 3px; background: var(--z-red);
	transition: right 260ms ease;
	z-index: 3;
}
.z-card:hover { transform: translateY(-2px); box-shadow: var(--z-shadow); }
.z-card:hover::after { right: 0; }
.z-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.z-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.z-card:hover .z-card__img { transform: scale(1.04); }
.z-card__flag { position: absolute; top: 12px; left: 12px; }
.z-card__readtime {
	position: absolute; top: 12px; right: 12px;
	background: rgba(10,14,26,.75); color: #fff;
	padding: 4px 10px;
	font-family: var(--z-font-display); font-size: 12px; font-weight: 600;
	letter-spacing: .1em; text-transform: uppercase;
}
.z-card__body { padding: var(--z-s-4) var(--z-s-5) var(--z-s-5); display: flex; flex-direction: column; gap: var(--z-s-3); }
.z-card__title {
	font-family: var(--z-font-display); font-weight: 700;
	font-size: var(--z-fs-xl); line-height: 1.2;
	letter-spacing: -.005em; text-transform: uppercase;
	margin: 0;
}
.z-card__title a:hover { color: var(--z-red); }
.z-card__excerpt { color: var(--z-text-soft); font-size: var(--z-fs-sm); margin: 0; line-height: 1.55; }
.z-card__meta { font-family: var(--z-font-alt); font-size: 13px; font-weight: 700; letter-spacing: .1em; color: var(--z-text-dim); text-transform: uppercase; margin-top: auto; }

/* ---------- 12. InterjÃº kÃ¡rtya (idÃ©zet + szerzÅ‘) ---------- */
.z-quotecard { background: var(--z-surface); box-shadow: var(--z-shadow-sm); display: flex; flex-direction: column; position: relative; overflow: hidden; transition: transform var(--z-transition), box-shadow var(--z-transition); }
.z-quotecard::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 3px; background: var(--z-red); transition: right 260ms ease; z-index: 3; }
.z-quotecard:hover { transform: translateY(-2px); box-shadow: var(--z-shadow); }
.z-quotecard:hover::after { right: 0; }
.z-quotecard__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.z-quotecard__img { width: 100%; height: 100%; object-fit: cover; }
.z-quotecard__flag { position: absolute; bottom: 12px; left: 12px; }
.z-quotecard__body { padding: var(--z-s-4); display: flex; flex-direction: column; gap: var(--z-s-2); }
.z-quotecard__title { font-family: var(--z-font-display); font-weight: 700; font-size: var(--z-fs-lg); line-height: 1.15; letter-spacing: .01em; text-transform: uppercase; margin: 0 0 var(--z-s-2); }
.z-quotecard__quote { border-left: 3px solid var(--z-red); padding: 2px 12px; color: var(--z-text-soft); font-style: italic; font-size: 14px; line-height: 1.5; margin: 0 0 var(--z-s-3); }
.z-quotecard__meta { font-family: var(--z-font-display); font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--z-text-dim); border-top: 1px solid var(--z-border); padding-top: var(--z-s-3); }
.z-quotecard__author { color: var(--z-text); }

/* ---------- 13. Lemez kÃ¡rtya (rating + sÃ¡vok) ---------- */
.z-album { background: var(--z-surface); box-shadow: var(--z-shadow-sm); display: flex; flex-direction: column; position: relative; overflow: hidden; transition: transform var(--z-transition), box-shadow var(--z-transition); }
.z-album::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 3px; background: var(--z-red); transition: right 260ms ease; z-index: 3; }
.z-album:hover { transform: translateY(-2px); box-shadow: var(--z-shadow); }
.z-album:hover::after { right: 0; }
.z-album__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; filter: grayscale(.6) contrast(1.05); }
.z-album:hover .z-album__media { filter: grayscale(0); }
.z-album__img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.z-album:hover .z-album__img { transform: scale(1.03); }
.z-album__flag { position: absolute; top: 12px; left: 12px; }
.z-album__highlight {
	position: absolute; top: 12px; left: 12px;
	background: #fff; color: var(--z-ink);
	font-family: var(--z-font-display); font-weight: 700;
	font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
	padding: 6px 12px;
}
.z-album__highlight + .z-album__flag { top: 44px; }
.z-album__rating {
	position: absolute; right: 12px; bottom: 10px;
	display: inline-flex; align-items: center; gap: 8px;
	padding: 4px 10px; background: rgba(10,14,26,.78);
	font-family: var(--z-font-display); color: #fff; font-weight: 700;
}
.z-album__ratingValue { color: var(--z-red); font-size: 18px; line-height: 1; }
.z-album__ratingMax { color: #fff; font-size: 14px; opacity: .75; }
.z-album__ratingDashes { display: inline-flex; gap: 3px; }
.z-album__ratingDashes i { display: block; width: 3px; height: 12px; background: rgba(255,255,255,.3); }
.z-album__ratingDashes i.is-on { background: var(--z-red); }
.z-album__body { padding: var(--z-s-4); }
.z-album__artist { font-family: var(--z-font-display); font-weight: 600; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--z-text-dim); }
.z-album__title { font-family: var(--z-font-display); font-weight: 700; font-size: var(--z-fs-2xl); line-height: 1.05; letter-spacing: .01em; text-transform: uppercase; margin: 4px 0 var(--z-s-2); }
.z-album__excerpt { color: var(--z-text-soft); font-size: 14px; margin: 0 0 var(--z-s-3); }
.z-album__bar {
	display: flex; gap: 3px;
	padding: 0 var(--z-s-4) var(--z-s-4);
	position: relative; z-index: 4;
}
.z-album__bar i { flex: 1; height: 6px; background: var(--z-border); }
.z-album__bar i.is-on { background: var(--z-rating-ok); }

/* ---------- 14. VideÃ³ kÃ¡rtya (YouTube play overlay) ---------- */
.z-video { background: var(--z-surface); box-shadow: var(--z-shadow-sm); display: flex; flex-direction: column; position: relative; overflow: hidden; transition: transform var(--z-transition), box-shadow var(--z-transition); }
.z-video::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 3px; background: var(--z-red); transition: right 260ms ease; z-index: 3; }
.z-video:hover { transform: translateY(-2px); box-shadow: var(--z-shadow); }
.z-video:hover::after { right: 0; }
.z-video__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #000; }
.z-video__img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.z-video:hover .z-video__img { transform: scale(1.04); }
.z-video__ytTag {
	position: absolute; top: 10px; left: 10px;
	display: inline-flex; align-items: center; gap: 6px;
	background: rgba(10,14,26,.78); color: #fff;
	padding: 4px 10px 4px 6px;
	border-radius: 4px;
	font-family: var(--z-font-sans);
	font-size: 11px; font-weight: 600; letter-spacing: .02em;
	line-height: 1;
}
.z-video__ytTag::before {
	content: "";
	display: inline-block;
	width: 16px; height: 11px;
	background: var(--z-red);
	border-radius: 3px;
	position: relative;
	flex-shrink: 0;
}
.z-video__ytTag::after {
	content: "";
	position: absolute;
	left: 11px; top: 50%;
	width: 0; height: 0;
	border-left: 5px solid #fff;
	border-top: 3px solid transparent;
	border-bottom: 3px solid transparent;
	transform: translateY(-50%);
}
.z-video__play {
	position: absolute; inset: 0; display: grid; place-items: center;
	pointer-events: none;
}
.z-video__play::before {
	content: ""; width: 64px; height: 46px;
	background: var(--z-red); border-radius: 10px;
	box-shadow: 0 6px 14px rgba(0,0,0,.4);
	transition: transform var(--z-transition);
}
.z-video__play::after {
	content: ""; position: absolute;
	border-left: 16px solid #fff;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	transform: translateX(2px);
}
.z-video:hover .z-video__play::before { transform: scale(1.08); }
.z-video__body { padding: var(--z-s-3) var(--z-s-4) var(--z-s-4); display: flex; flex-direction: column; gap: 4px; }
.z-video__artist { font-family: var(--z-font-display); font-weight: 700; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--z-red); }
.z-video__title { font-family: var(--z-font-display); font-weight: 700; font-size: var(--z-fs-md); line-height: 1.15; letter-spacing: .02em; text-transform: uppercase; margin: 0; color: var(--z-text); }

/* ---------- 15. ElÅ‘adÃ³ kÃ¡rtya (portrÃ©) ---------- */
.z-artist { position: relative; overflow: hidden; background: #000; aspect-ratio: 3/4; }
.z-artist__img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.85); transition: transform 500ms ease, filter var(--z-transition); }
.z-artist:hover .z-artist__img { transform: scale(1.05); filter: brightness(1); }
.z-artist__body {
	position: absolute; inset: auto 0 0 0;
	padding: var(--z-s-4);
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.85) 70%);
	color: #fff;
}
.z-artist__name { font-family: var(--z-font-display); font-weight: 700; font-size: var(--z-fs-xl); letter-spacing: .02em; text-transform: uppercase; margin: 0; }
.z-artist__genre { font-family: var(--z-font-display); font-weight: 700; font-size: 12px; letter-spacing: .14em; color: var(--z-red); text-transform: uppercase; margin-top: 4px; }

.z-scroller { display: flex; gap: var(--z-s-3); overflow-x: auto; padding-bottom: var(--z-s-3); scroll-snap-type: x mandatory; }
.z-scroller > * { flex: 0 0 220px; scroll-snap-align: start; }
.z-scroller::-webkit-scrollbar { height: 8px; }
.z-scroller::-webkit-scrollbar-thumb { background: var(--z-text-dim); border-radius: 4px; }

/* ---------- 16. SlÃ¡gerlista blokkok ---------- */
.z-chart { padding: var(--z-s-5); color: #fff; background: var(--z-chart-red); display: flex; flex-direction: column; gap: var(--z-s-3); }
.z-chart--green  { background: var(--z-chart-green); }
.z-chart--yellow { background: var(--z-chart-yellow); }
.z-chart--blue   { background: var(--z-chart-blue); }
.z-chart__title { font-family: var(--z-font-display); font-weight: 700; font-size: var(--z-fs-xl); text-transform: uppercase; letter-spacing: .03em; margin: 0; }
.z-chart__sub   { font-family: var(--z-font-display); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 var(--z-s-3); opacity: .9; }
.z-chart__list { list-style: none; counter-reset: zchart; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--z-s-2); border-top: 1px solid rgba(255,255,255,.25); padding-top: var(--z-s-3); }
.z-chart__item { counter-increment: zchart; display: grid; grid-template-columns: 28px 1fr; gap: var(--z-s-2); font-size: 14px; align-items: baseline; }
.z-chart__item::before { content: counter(zchart) "."; font-family: var(--z-font-display); font-weight: 700; }
.z-chart__artist { font-weight: 700; }
.z-chart__sep { margin: 0 4px; opacity: .65; }
.z-chart__more {
	align-self: flex-start; margin-top: var(--z-s-3);
	font-family: var(--z-font-display); font-weight: 700;
	font-size: 13px; letter-spacing: .2em; text-transform: uppercase;
	padding: 10px 18px; border: 2px solid rgba(255,255,255,.9); color: #fff;
}
.z-chart__more:hover { background: #fff; color: var(--z-text); }

/* ---------- 17. RÃ¡diÃ³ tile ---------- */
.z-radio { position: relative; aspect-ratio: 16 / 9; background: var(--z-radio-1); color: #fff; display: grid; place-items: center; padding: var(--z-s-4); text-align: center; overflow: hidden; }
.z-radio--2 { background: var(--z-radio-2); }
.z-radio--3 { background: var(--z-radio-3); }
.z-radio--4 { background: var(--z-radio-4); }
.z-radio__logo { max-height: 80px; max-width: 160px; margin: 0 auto var(--z-s-3); filter: brightness(1.1); }
.z-radio__name { font-family: var(--z-font-display); font-weight: 700; font-size: var(--z-fs-lg); letter-spacing: .06em; text-transform: uppercase; margin: 0; }
.z-radio__freq { font-family: var(--z-font-display); font-weight: 600; font-size: 12px; letter-spacing: .14em; opacity: .85; margin-top: 4px; text-transform: uppercase; }
.z-radio__live { position: absolute; top: 10px; right: 10px; width: 10px; height: 10px; border-radius: 999px; background: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,.3); animation: z-pulse 1.3s ease-in-out infinite; }

/* ---------- 18. FesztivÃ¡l blokk ---------- */
.z-fest { position: relative; aspect-ratio: 16 / 10; overflow: hidden; color: #fff; background: var(--z-ink); }
.z-fest__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .8; transition: transform 500ms ease, opacity var(--z-transition); }
.z-fest:hover .z-fest__img { transform: scale(1.04); opacity: 1; }
.z-fest__month { position: absolute; top: 0; left: 0; background: var(--z-red); color: #fff; font-family: var(--z-font-display); font-weight: 600; font-size: 11px; letter-spacing: .18em; padding: 6px 12px; text-transform: uppercase; }
.z-fest__body { position: absolute; inset: auto 0 0 0; padding: var(--z-s-4); background: linear-gradient(180deg, rgba(10,14,26,0) 0%, rgba(10,14,26,.88) 80%); }
.z-fest__title { font-family: var(--z-font-display); font-weight: 700; font-size: var(--z-fs-xl); letter-spacing: .02em; text-transform: uppercase; margin: 0; }

/* ---------- 19. Ad slots ---------- */
.z-ad { text-align: center; }
.z-ad--placeholder {
	border: 2px dashed var(--z-border); border-radius: var(--z-radius);
	padding: var(--z-s-4);
	color: var(--z-text-dim);
	background: var(--z-surface);
}
.z-ad__label { display: block; font-weight: 700; letter-spacing: .12em; color: var(--z-text-soft); margin-bottom: 4px; text-transform: uppercase; font-size: 12px; }
.z-ad__hint { font-size: var(--z-fs-sm); }

/* ---------- 20. Single ---------- */
.z-single__head { padding-block: var(--z-s-6); background: var(--z-surface); border-bottom: 1px solid var(--z-border); }
.z-single__meta { font-family: var(--z-font-display); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--z-text-dim); display: flex; flex-wrap: wrap; gap: var(--z-s-2); align-items: center; }
.z-single__meta .z-flag { background: var(--z-red); }
.z-single__title { font-family: var(--z-font-display); font-weight: 700; font-size: var(--z-fs-4xl); line-height: 1.05; letter-spacing: -.005em; text-transform: uppercase; margin: var(--z-s-3) 0 var(--z-s-3); }
.z-single__lead { color: var(--z-text-soft); font-size: var(--z-fs-lg); max-width: 72ch; margin: 0; }
.z-single__hero { margin: 0; }
.z-single__heroimg { width: 100%; max-height: 560px; object-fit: cover; }
.z-single__body { max-width: 800px; margin: 0 auto; background: var(--z-surface); padding: var(--z-s-7) var(--z-s-5); }

.z-prose { font-size: 1.0625rem; line-height: 1.75; color: var(--z-text); font-family: var(--z-font-sans); }
.z-prose p { margin: 0 0 1.1em; }
.z-prose a { color: var(--z-red); text-decoration: underline; text-underline-offset: 3px; }
.z-prose h2, .z-prose h3, .z-prose h4 { font-family: var(--z-font-display); font-weight: 700; line-height: 1.15; text-transform: uppercase; letter-spacing: .01em; margin-top: 1.8em; margin-bottom: .5em; }
.z-prose h2 { font-size: var(--z-fs-2xl); }
.z-prose h3 { font-size: var(--z-fs-xl); }
.z-prose blockquote { margin: 2em 0; padding: 1em 1.2em; border-left: 4px solid var(--z-red); background: var(--z-surface-2); color: var(--z-text-soft); font-style: italic; }
.z-prose img, .z-prose .wp-block-image img { border-radius: var(--z-radius); }
.z-prose figcaption { color: var(--z-text-dim); font-size: var(--z-fs-sm); text-align: center; margin-top: var(--z-s-2); }

.z-tags, .z-share { margin-top: var(--z-s-5); display: flex; flex-wrap: wrap; gap: var(--z-s-2); align-items: center; font-size: var(--z-fs-sm); color: var(--z-text-soft); }
.z-tags__label, .z-share__label { font-family: var(--z-font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--z-text-dim); margin-right: 4px; }
.z-tags a, .z-share__link { background: var(--z-surface-2); border: 1px solid var(--z-border); padding: 5px 12px; color: var(--z-text-soft); font-family: var(--z-font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.z-tags a:hover, .z-share__link:hover { color: #fff; background: var(--z-red); border-color: var(--z-red); }

.z-related { padding-block: var(--z-s-6); }

/* ---------- 21. Archive / search ---------- */
.z-archive__head { margin: var(--z-s-5) 0; }
.z-archive__title { font-family: var(--z-font-display); font-weight: 700; font-size: var(--z-fs-3xl); text-transform: uppercase; margin: var(--z-s-2) 0; }
.z-archive__desc { color: var(--z-text-soft); max-width: 72ch; }
.z-empty { color: var(--z-text-soft); padding: var(--z-s-6) 0; text-align: center; }

.navigation.pagination, .pagination { display: flex; justify-content: center; gap: var(--z-s-2); margin-top: var(--z-s-6); flex-wrap: wrap; }
.pagination .page-numbers { padding: 8px 14px; background: var(--z-surface); border: 1px solid var(--z-border); color: var(--z-text-soft); font-family: var(--z-font-display); font-weight: 600; letter-spacing: .08em; }
.pagination .page-numbers.current { background: var(--z-red); color: #fff; border-color: var(--z-red); }
.pagination .page-numbers:hover { color: var(--z-red); }
.pagination .page-numbers.current:hover { color: #fff; }

/* ---------- 22. 404 ---------- */
.z-404 { text-align: center; padding-block: var(--z-s-8); }
.z-404__code { font-family: var(--z-font-display); font-weight: 900; font-size: clamp(4rem, 10vw, 8rem); color: var(--z-red); line-height: 1; margin: 0; }
.z-404__title { font-family: var(--z-font-display); font-weight: 700; font-size: var(--z-fs-3xl); text-transform: uppercase; margin: var(--z-s-3) 0; }
.z-404__lead { color: var(--z-text-soft); max-width: 56ch; margin: 0 auto var(--z-s-5); }
.z-404__search { max-width: 520px; margin: var(--z-s-5) auto 0; }
.z-btn { display: inline-block; padding: 12px 22px; background: var(--z-red); color: #fff; font-family: var(--z-font-display); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.z-btn:hover { background: var(--z-red-dark); color: #fff; }

/* ---------- 23. Comments ---------- */
.z-comments { padding-block: var(--z-s-6); max-width: 860px; }
.z-comments__title { font-family: var(--z-font-display); font-weight: 700; font-size: var(--z-fs-2xl); text-transform: uppercase; margin: 0 0 var(--z-s-5); }
.z-comments__list { list-style: none; padding: 0; display: grid; gap: var(--z-s-4); }
.z-comments__list .comment-body { background: var(--z-surface); border: 1px solid var(--z-border); padding: var(--z-s-4); }
#respond { margin-top: var(--z-s-6); }
#respond input[type="text"], #respond input[type="email"], #respond input[type="url"], #respond textarea {
	width: 100%; padding: 10px 12px; background: var(--z-surface); color: var(--z-text); border: 1px solid var(--z-border);
}
#respond .submit { background: var(--z-red); color: #fff; padding: 10px 18px; font-family: var(--z-font-display); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; border: 0; }

/* ---------- 24. Footer ---------- */
.z-footer { background: var(--z-ink); color: var(--z-text-invert-soft); margin-top: var(--z-s-8); border-top: 3px solid var(--z-red); }
.z-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: var(--z-s-6); padding-block: var(--z-s-7); }
.z-footer__title { font-family: var(--z-font-display); font-weight: 700; font-size: 18px; color: #fff; text-transform: uppercase; letter-spacing: .1em; margin: 0 0 var(--z-s-4); }
.z-footer__title::after { content: ""; display: block; width: 40px; height: 2px; background: var(--z-red); margin-top: 6px; }
.z-footer__desc { max-width: 40ch; margin: 0 0 var(--z-s-4); color: var(--z-text-invert-soft); font-size: 14px; }
.z-footer .z-logo__row { color: #fff; font-size: 32px; }
.z-footer .z-logo__tag { color: var(--z-text-invert-soft); }
.z-footer__list li { margin-bottom: 10px; font-size: 14px; }
.z-footer__list a:hover { color: #fff; }

.z-footer__newsletter p { font-size: 14px; margin: 0 0 var(--z-s-3); color: var(--z-text-invert-soft); }
.z-footer__newsletter form { display: flex; gap: var(--z-s-2); flex-wrap: wrap; }
.z-footer__newsletter input[type="email"] { flex: 1 1 180px; padding: 10px 12px; border: 0; background: rgba(255,255,255,.08); color: #fff; min-width: 0; }
.z-footer__newsletter input[type="email"]::placeholder { color: rgba(255,255,255,.5); }
.z-footer__newsletter input[type="email"]:focus { outline: 2px solid var(--z-red); }
.z-footer__newsletter button { background: var(--z-red); color: #fff; padding: 10px 18px; font-family: var(--z-font-display); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: 13px; }
.z-footer__newsletter button:hover { background: var(--z-red-dark); }

.z-social { display: flex; flex-wrap: wrap; gap: var(--z-s-2); }
.z-social__link { display: inline-flex; align-items: center; padding: 6px 12px; border: 1px solid rgba(255,255,255,.15); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--z-text-invert-soft); font-family: var(--z-font-display); }
.z-social__link:hover { color: #fff; border-color: var(--z-red); background: var(--z-red); }

.z-footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: var(--z-s-4) 0; }
.z-footer__bar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--z-s-2); font-size: 13px; }
.z-footer__copy { margin: 0; color: var(--z-text-invert-soft); }

/* ---------- 25. Responsive ---------- */
@media (max-width: 1024px) {
	.z-mhero { grid-template-columns: 1fr; }
	.z-mhero__feature { min-height: 320px; }
	.z-footer__grid { grid-template-columns: 1fr 1fr; }
	.z-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.z-grid--6 { grid-template-columns: repeat(3, 1fr); }
	.z-header__banner { display: none; }
	.z-header { grid-template-columns: auto 1fr auto; }
}

@media (max-width: 760px) {
	.z-topbar__inner { font-size: 10px; gap: var(--z-s-2); }
	.z-topbar__tag { display: none; }
	.z-header__toggle { display: flex; }
	.z-nav-wrap { display: none; }
	.z-nav-wrap.is-open { display: block; }
	.z-nav__list { flex-direction: column; }
	.z-nav__list > li { width: 100%; border-bottom: 1px solid rgba(255,255,255,.06); }
	.z-nav__list > li > a { height: auto; padding: 14px 16px; width: 100%; }
	.z-nav__list .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; background: var(--z-ink-3); box-shadow: none; }

	.z-grid--3, .z-grid--4 { grid-template-columns: 1fr 1fr; }
	.z-grid--2, .z-grid--6 { grid-template-columns: 1fr; }
	.z-ribbon__rule { display: none; }
	.z-footer__grid { grid-template-columns: 1fr; }
	.z-single__title { font-size: var(--z-fs-3xl); }
}

@media (max-width: 480px) {
	.z-grid--3, .z-grid--4 { grid-template-columns: 1fr; }
	.z-mhero__feature { min-height: 240px; }
	.z-ribbon__title { font-size: 18px; height: 38px; padding: 0 12px; }
	.z-ribbon__title::after { top: 0; right: -19px; border-top-width: 19px; border-bottom-width: 19px; border-right-width: 19px; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { transition: none !important; animation: none !important; }
	.z-card:hover .z-card__img, .z-album:hover .z-album__img, .z-video:hover .z-video__img, .z-artist:hover .z-artist__img, .z-fest:hover .z-fest__img { transform: none; }
}


/* ---------- 26. Breadcrumb ---------- */
.z-crumbs { margin: 0 0 var(--z-s-3); }
.z-crumbs__list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; font-family: var(--z-font-display); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--z-text-dim); }
.z-crumbs__item + .z-crumbs__item::before { content: "â€º"; margin-right: 6px; color: var(--z-text-dim); }
.z-crumbs__item a { color: var(--z-text-soft); }
.z-crumbs__item a:hover { color: var(--z-red); }
.z-crumbs__item--current span { color: var(--z-text); }

/* ---------- 27. Post nav (prev/next a single aljÃ¡n) ---------- */
.z-postnav { display: grid; grid-template-columns: 1fr 1fr; gap: var(--z-s-3); margin-top: var(--z-s-6); padding-top: var(--z-s-5); border-top: 1px solid var(--z-border); }
.z-postnav__link { background: var(--z-surface-2); border: 1px solid var(--z-border); padding: var(--z-s-4); display: block; position: relative; transition: border-color var(--z-transition), background var(--z-transition); }
.z-postnav__link:hover { border-color: var(--z-red); background: var(--z-surface); }
.z-postnav__link--next { text-align: right; }
.z-postnav__label { display: block; font-family: var(--z-font-display); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--z-red); margin-bottom: 6px; }
.z-postnav__title { display: block; font-family: var(--z-font-display); font-weight: 700; font-size: var(--z-fs-md); line-height: 1.25; text-transform: uppercase; color: var(--z-text); }
.z-postnav__link:hover .z-postnav__title { color: var(--z-red); }

@media (max-width: 640px) {
	.z-postnav { grid-template-columns: 1fr; }
	.z-postnav__link--next { text-align: left; }
}

/* ---------- 28. Search suggest ---------- */
.z-suggest { position: relative; max-width: none; margin-top: var(--z-s-2); background: var(--z-surface); border: 1px solid var(--z-border); box-shadow: var(--z-shadow); z-index: 50; }
.z-suggest__item { display: grid; grid-template-columns: auto 1fr auto; gap: var(--z-s-3); align-items: center; padding: 10px 14px; border-bottom: 1px solid var(--z-border); color: var(--z-text); }
.z-suggest__item:last-child { border-bottom: 0; }
.z-suggest__item:hover { background: var(--z-surface-2); color: var(--z-red); }
.z-suggest__cat { font-family: var(--z-font-display); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--z-red); }
.z-suggest__title { font-weight: 600; }
.z-suggest__date { font-size: 12px; color: var(--z-text-dim); }
.z-suggest__empty { padding: 16px; color: var(--z-text-dim); font-style: italic; text-align: center; }

/* ---------- 29. 404 bÅ‘vÃ­tett ---------- */
.z-404__subtitle { font-family: var(--z-font-display); font-weight: 700; font-size: var(--z-fs-xl); text-transform: uppercase; letter-spacing: .02em; margin: var(--z-s-7) 0 var(--z-s-4); text-align: center; }
.z-404__catlist { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: var(--z-s-2); max-width: 800px; margin-inline: auto; }
.z-404__catlink { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: var(--z-surface); border: 1px solid var(--z-border); font-family: var(--z-font-display); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; font-size: 14px; }
.z-404__catlink:hover { border-color: var(--z-red); color: var(--z-red); }
.z-404__catcount { background: var(--z-bg); padding: 2px 8px; font-size: 11px; border-radius: 999px; color: var(--z-text-dim); }
.z-404__recent { margin-top: var(--z-s-7); text-align: left; }


/* ---------- Archivo Black font-weight fallback ----------
   Az Archivo Black csak 900-as sÃºlyt tÃ¡mogat, ezÃ©rt a font-weight
   Ã©rtÃ©k kvÃ¡zi mindegy cÃ­meknÃ©l. Inline-ban lÃ©vÅ‘ "weight" helyett a
   display fontot kb. 1.0-szor tÃ©nyleges mÃ©retben kell hangolni.
   EzÃ©rt itt csak Ãºjra deklarÃ¡lunk pÃ¡r komponenst a friss mÃ©retekhez. */

.z-mhero__leadTitle { font-size: var(--z-fs-3xl); font-weight: 400; letter-spacing: -.015em; }
.z-mhero__featureTitle { font-weight: 400; letter-spacing: -.015em; }
.z-mhero__rankTitle { font-family: var(--z-font-alt); font-weight: 800; font-size: 15px; letter-spacing: 0; }
.z-mhero__rankNum { font-family: var(--z-font-alt); font-weight: 900; font-size: 22px; }

.z-listcard__title { font-family: var(--z-font-display); font-weight: 700; font-size: var(--z-fs-lg); letter-spacing: -.005em; }
.z-quotecard__title { font-family: var(--z-font-display); font-weight: 700; font-size: var(--z-fs-lg); letter-spacing: -.005em; }
.z-album__title { font-family: var(--z-font-display); font-weight: 700; font-size: var(--z-fs-2xl); letter-spacing: -.01em; }
.z-video__title { font-family: var(--z-font-display); font-weight: 700; font-size: var(--z-fs-md); letter-spacing: 0; }
.z-fest__title { font-family: var(--z-font-display); font-weight: 700; font-size: var(--z-fs-xl); letter-spacing: -.005em; }
.z-artist__name { font-family: var(--z-font-display); font-weight: 700; font-size: var(--z-fs-xl); letter-spacing: 0; }
.z-chart__title { font-family: var(--z-font-display); font-weight: 700; font-size: var(--z-fs-xl); letter-spacing: 0; }
.z-radio__name { font-family: var(--z-font-display); font-weight: 700; font-size: var(--z-fs-lg); letter-spacing: .02em; }
.z-404__title { font-family: var(--z-font-display); font-weight: 700; letter-spacing: -.01em; }
.z-archive__title { font-family: var(--z-font-display); font-weight: 700; letter-spacing: -.005em; }
.z-single__title { font-family: var(--z-font-display); font-weight: 700; letter-spacing: -.015em; }
.z-footer__title { font-family: var(--z-font-display); font-weight: 700; font-size: 19px; letter-spacing: .02em; }
.z-postnav__title { font-family: var(--z-font-display); font-weight: 700; font-size: var(--z-fs-md); letter-spacing: 0; }

/* Kisebb meta / sub szÃ¶vegek: Archivo bold (nem black). */
.z-quotecard__meta,
.z-album__artist,
.z-video__artist,
.z-fest__month,
.z-artist__genre,
.z-chart__sub,
.z-radio__freq,
.z-subtabs__item,
.z-flag,
.z-card__readtime,
.z-album__highlight,
.z-chart__more,
.z-404__catlink,
.z-badge,
.z-crumbs__list,
.z-share__label, .z-tags__label, .z-suggest__cat,
.z-postnav__label { font-family: var(--z-font-alt); font-weight: 800; }

/* VideÃ³kÃ¡rtya artist â€“ nagyobb, erÅ‘teljesebb */
.z-video__artist { font-size: 14px; letter-spacing: .08em; }
.z-video__body { padding: var(--z-s-4); gap: 6px; }

/* Grid szÃ©lessÃ©g nÅ‘tt, a section padding is emelkedik */
.z-section { padding-block: var(--z-s-7); }

/* VideÃ³ blokk szekciÃ³t kiemeljÃ¼k sÃ¶tÃ©t hÃ¡ttÃ©rrel, mint DVD menÃ¼ */
.z-videos-wrap {
	background: var(--z-ink);
	padding-block: var(--z-s-7);
	margin-block: var(--z-s-7) 0;
	border-top: 3px solid var(--z-red);
	border-bottom: 3px solid var(--z-red);
}
.z-videos-wrap .z-ribbon__title { background: var(--z-red); }
.z-videos-wrap .z-ribbon__title::after { border-top-color: var(--z-red); border-bottom-color: var(--z-red); }
.z-videos-wrap .z-ribbon__rule { background: rgba(255,255,255,.15); }
.z-videos-wrap .z-ribbon__more { color: rgba(255,255,255,.8); }
.z-videos-wrap .z-ribbon__more:hover { color: #fff; }
.z-videos-wrap .z-video { background: var(--z-ink-2); color: #fff; }
.z-videos-wrap .z-video__artist { color: #ff5566; }
.z-videos-wrap .z-video__title { color: #fff; }
.z-videos-wrap .z-video__title a { color: #fff; }
.z-videos-wrap .z-video__title a:hover { color: var(--z-red); }
.z-videos-wrap .z-video::after { background: #fff; }



/* ---------- Space Grotesk override-ok (felülírja az Archivo-hoz hangolt súlyokat) ---------- */
.z-card__title { font-weight: 700; }
.z-mhero__leadTitle { font-weight: 700; letter-spacing: -.02em; }
.z-mhero__featureTitle { font-weight: 700; letter-spacing: -.025em; text-transform: none; }
.z-mhero__rankTitle { font-family: var(--z-font-sans); font-weight: 700; font-size: 15px; letter-spacing: 0; text-transform: none; }
.z-mhero__rankNum { font-family: var(--z-font-display); font-weight: 700; font-size: 22px; color: var(--z-text-soft); }

/* Ribbonok: ne legyen minden uppercase spaced */
.z-ribbon__title { font-family: var(--z-font-display); font-weight: 700; letter-spacing: -.01em; text-transform: none; font-size: 22px; height: 50px; }
.z-ribbon__title::after { border-top-width: 25px; border-bottom-width: 25px; border-right-width: 25px; top: 0; right: -25px; }
.z-ribbon--red .z-ribbon__title::after { border-top-color: var(--z-red); border-bottom-color: var(--z-red); }

.z-section__title { font-family: var(--z-font-display); font-weight: 700; letter-spacing: -.01em; text-transform: none; }

/* Ne legyen minden uppercase, csak az "overline" elemek (flag, meta, ribbon more) */
.z-card__title,
.z-listcard__title,
.z-quotecard__title,
.z-album__title,
.z-video__title,
.z-fest__title,
.z-artist__name,
.z-chart__title,
.z-radio__name,
.z-404__title,
.z-archive__title,
.z-single__title,
.z-postnav__title,
.z-footer__title,
.z-mhero__leadTitle { text-transform: none; letter-spacing: -.01em; }

/* Kis "overline" meta szövegek (flag, chip, kis uppercase) */
.z-flag, .z-card__readtime, .z-album__highlight, .z-fest__month,
.z-subtabs__item, .z-chart__sub, .z-album__artist, .z-video__artist,
.z-artist__genre, .z-radio__freq, .z-card__meta, .z-listcard__date,
.z-postnav__label, .z-suggest__cat, .z-share__label, .z-tags__label,
.z-topbar__day, .z-topbar__tag, .z-topbar__live, .z-footer__copy,
.z-mhero__leadMeta, .z-single__meta, .z-quotecard__meta,
.z-badge, .z-crumbs__list {
	font-family: var(--z-font-sans);
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	font-size: 12px;
}

/* Kategória flag egy picit lágyabb, kerek sarok */
.z-flag { padding: 7px 12px; border-radius: 2px; font-size: 11px; letter-spacing: .12em; }

/* Főmenü lágyabb típusa */
.z-nav__list {
	font-family: var(--z-font-sans);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .1em;
}

/* Videók szekcióban a címek kisebbet és olvashatóbbat */
.z-video__title { font-family: var(--z-font-sans); font-weight: 700; font-size: var(--z-fs-md); line-height: 1.3; text-transform: none; letter-spacing: -.005em; }

/* Subtabs barátságosabb */
.z-subtabs__item { font-size: 13px; padding: 14px 22px; letter-spacing: .08em; }


/* ===========================================================================
   KREATÍV FINOMÍTÁSOK v1.3
   =========================================================================== */

/* --- a) Vékony piros "live-ticker" csík a topbar alján -------------------- */
.z-topbar { position: relative; }
.z-topbar::after {
	content: "";
	position: absolute; left: 0; right: 0; bottom: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, var(--z-red) 20%, var(--z-red) 80%, transparent 100%);
	opacity: .6;
}

/* --- b) Magazin hero: feature kép gradient + vignette + hover arrow -------- */
.z-mhero__feature { position: relative; overflow: hidden; isolation: isolate; }
.z-mhero__feature::before {
	content: "";
	position: absolute; inset: 0;
	background: radial-gradient(ellipse at 30% 40%, transparent 40%, rgba(10,14,26,.35) 100%);
	z-index: 1;
}
.z-mhero__feature::after {
	content: "→";
	position: absolute; top: var(--z-s-4); right: var(--z-s-5);
	width: 48px; height: 48px;
	display: grid; place-items: center;
	background: var(--z-red); color: #fff;
	font-size: 22px; font-weight: 700;
	transform: translate(8px, -8px);
	opacity: 0;
	transition: opacity 300ms ease, transform 300ms ease;
	z-index: 3;
}
.z-mhero__feature:hover::after { opacity: 1; transform: translate(0, 0); }
.z-mhero__feature:hover .z-mhero__featureImg { transform: scale(1.03); }
.z-mhero__featureImg { transition: transform 600ms ease; }
.z-mhero__featureOverlay { z-index: 2; }

/* --- c) Magazin hero: a rank-bar színei változatosabbak -------------------- */
.z-mhero__rankItem:nth-child(1) .z-mhero__rankBar { background: var(--z-red); width: 100%; }
.z-mhero__rankItem:nth-child(2) .z-mhero__rankBar { background: var(--z-red); width: 88%; }
.z-mhero__rankItem:nth-child(3) .z-mhero__rankBar { background: var(--z-ink); width: 76%; }
.z-mhero__rankItem:nth-child(4) .z-mhero__rankBar { background: var(--z-ink); width: 64%; }
.z-mhero__rankItem:nth-child(5) .z-mhero__rankBar { background: var(--z-text-dim); width: 52%; }
.z-mhero__rankBar { transition: width 400ms ease; }

/* --- d) Subtle grid background az adwrap és hero hátterének vizuális sűrűsítése - */
.z-main { position: relative; }
.z-mhero {
	position: relative;
	background-image:
		linear-gradient(var(--z-surface), var(--z-surface)),
		repeating-linear-gradient(90deg, transparent 0 40px, rgba(225,29,44,.04) 40px 41px);
	background-blend-mode: normal;
}

/* --- e) Hover indikátor: a kártya képén piros "view" gomb megjelenik ------ */
.z-card__media::before,
.z-album__media::before,
.z-listcard__media::before,
.z-quotecard__media::before {
	content: "";
	position: absolute; inset: auto 12px 12px auto;
	width: 36px; height: 36px;
	background: var(--z-red);
	display: grid; place-items: center;
	opacity: 0;
	transform: translate(8px, 0);
	transition: opacity 240ms ease, transform 240ms ease;
	z-index: 3;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14'/><path d='m13 6 6 6-6 6'/></svg>");
	background-repeat: no-repeat; background-position: center; background-size: 18px 18px;
}
.z-card:hover .z-card__media::before,
.z-album:hover .z-album__media::before,
.z-listcard:hover .z-listcard__media::before,
.z-quotecard:hover .z-quotecard__media::before { opacity: 1; transform: translate(0, 0); }

/* --- f) Előadó scroller: gradient fade két szélén + 'görgesd' hint -------- */
.z-scroller-wrap { position: relative; }
.z-scroller-wrap::before,
.z-scroller-wrap::after {
	content: "";
	position: absolute; top: 0; bottom: 0; width: 80px;
	pointer-events: none;
	z-index: 2;
}
.z-scroller-wrap::before { left: 0;  background: linear-gradient(90deg, var(--z-bg), transparent); }
.z-scroller-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--z-bg), transparent); }

/* --- g) Chart blokkon "Live" ritka szám-pulzáció (új slágerlista érzés) --- */
.z-chart__title::after {
	content: "● LIVE";
	display: inline-block;
	margin-left: 12px;
	font-family: var(--z-font-sans);
	font-size: 10px; font-weight: 800; letter-spacing: .18em;
	background: rgba(255,255,255,.22); color: #fff;
	padding: 3px 8px; border-radius: 2px;
	vertical-align: middle;
	animation: z-pulse 2.4s ease-in-out infinite;
}

/* --- h) Section headline ticker dot (minden ribbon előtt) ----------------- */
.z-ribbon__title::before {
	content: "";
	display: inline-block;
	width: 8px; height: 8px;
	background: var(--z-red);
	border-radius: 999px;
	margin-right: 12px;
	animation: z-pulse 2s ease-in-out infinite;
}
.z-ribbon__title { padding-left: var(--z-s-4); }

/* --- i) Friss hír kártyákra "ma/most" badge ha 24h-nál frissebb ---------- */
.z-card--fresh .z-card__readtime::before {
	content: "● ";
	color: #1df26b;
	text-shadow: 0 0 8px rgba(29,242,107,.6);
	margin-right: 4px;
}

/* --- j) Lemez kártya decoratív sorszám a bal alsó sarokban --------------- */
.z-album { counter-increment: zalbum; }
.z-grid--albums { counter-reset: zalbum; }
.z-album__body { position: relative; }
.z-album__body::after {
	content: "#" counter(zalbum);
	position: absolute;
	top: -28px; right: 16px;
	font-family: var(--z-font-display);
	font-size: 72px; font-weight: 700;
	color: var(--z-bg);
	opacity: .9;
	letter-spacing: -.04em;
	line-height: 1;
	pointer-events: none;
	z-index: 1;
}
.z-album__title, .z-album__artist, .z-album__excerpt { position: relative; z-index: 2; }

/* --- k) Quote kártyán nagy nyitó idézőjel --------------------------------- */
.z-quotecard__body { position: relative; }
.z-quotecard__body::before {
	content: "„";
	position: absolute;
	top: -8px; left: 16px;
	font-family: 'Times New Roman', serif;
	font-size: 90px;
	line-height: 1;
	color: var(--z-red);
	opacity: .18;
	pointer-events: none;
}

/* --- l) Newsletter: sugárzó gradient -------------------------------------- */
.z-newsletter {
	position: relative; overflow: hidden;
	background: linear-gradient(135deg, var(--z-red) 0%, #8b0a1b 100%);
}
.z-newsletter::before {
	content: "";
	position: absolute; inset: 0;
	background:
		radial-gradient(circle at 20% 30%, rgba(255,255,255,.15), transparent 40%),
		radial-gradient(circle at 80% 70%, rgba(255,255,255,.1), transparent 50%);
}
.z-newsletter__inner { position: relative; z-index: 1; }

/* --- m) 'Live' topbar pill-re picit kreatívabb -------------------------- */
.z-topbar__live { transition: transform 180ms ease, box-shadow 180ms ease; }
.z-topbar__live:hover { transform: translateY(-1px); box-shadow: 0 6px 14px rgba(225,29,44,.5); }

/* --- n) Rádió csempe: hover-kor jelzés hogy "kattintható" (play ikon) ---- */
.z-radio { position: relative; }
.z-radio::before {
	content: "";
	position: absolute; left: 50%; top: 50%;
	width: 68px; height: 68px;
	border: 2px solid rgba(255,255,255,.3);
	border-radius: 999px;
	transform: translate(-50%, -50%) scale(.9);
	opacity: 0;
	transition: transform 240ms ease, opacity 240ms ease;
	pointer-events: none;
}
.z-radio::after {
	content: "";
	position: absolute; left: 50%; top: 50%;
	width: 0; height: 0;
	border-left: 14px solid #fff;
	border-top: 9px solid transparent;
	border-bottom: 9px solid transparent;
	transform: translate(-40%, -50%) scale(.6);
	opacity: 0;
	transition: transform 240ms ease 50ms, opacity 240ms ease 50ms;
	pointer-events: none;
}
.z-radio:hover::before { transform: translate(-50%, -50%) scale(1); opacity: 1; }
.z-radio:hover::after  { transform: translate(-40%, -50%) scale(1); opacity: 1; }
.z-radio:hover .z-radio__logo,
.z-radio:hover .z-radio__name,
.z-radio:hover .z-radio__freq { opacity: .35; transition: opacity 240ms ease; }

/* --- o) Fesztivál: dátum ribbon átlósan a sarokban ----------------------- */
.z-fest { isolation: isolate; }
.z-fest__month {
	top: 14px; left: -30px;
	padding: 6px 40px;
	transform: rotate(-14deg);
	box-shadow: 0 4px 12px rgba(0,0,0,.4);
	letter-spacing: .2em;
}


/* ===========================================================================
   FRAUNCES + DM SANS override (v1.4)
   Editorial serif címek + letisztult sans UI/body.
   =========================================================================== */

/* Minden display címre: sima text-transform none (serif csúnya capsben) */
.z-mhero__leadTitle,
.z-mhero__featureTitle,
.z-card__title,
.z-listcard__title,
.z-quotecard__title,
.z-album__title,
.z-video__title,
.z-fest__title,
.z-artist__name,
.z-chart__title,
.z-radio__name,
.z-404__title,
.z-404__subtitle,
.z-archive__title,
.z-single__title,
.z-postnav__title,
.z-footer__title,
.z-comments__title,
.z-section__title,
.z-ribbon__title,
.z-prose h2, .z-prose h3, .z-prose h4 {
	font-family: var(--z-font-display);
	font-weight: 600;
	font-style: normal;
	text-transform: none;
	letter-spacing: -.015em;
	line-height: 1.15;
	font-variation-settings: "opsz" 72, "wght" 600;
}

/* Hero cím tényleg nagy */
.z-mhero__featureTitle { font-weight: 500; letter-spacing: -.025em; line-height: 1.02; font-variation-settings: "opsz" 144, "wght" 500; }
.z-mhero__leadTitle    { font-weight: 600; letter-spacing: -.02em;  line-height: 1.08; font-variation-settings: "opsz" 96, "wght" 600; }
.z-single__title       { font-weight: 600; letter-spacing: -.025em; line-height: 1.05; font-variation-settings: "opsz" 144, "wght" 600; }

/* Ribbon cím: elegáns serif, NEM uppercase, tight letter-spacing */
.z-ribbon__title {
	font-family: var(--z-font-display);
	font-weight: 600;
	font-size: 24px;
	letter-spacing: -.015em;
	text-transform: none;
	height: 48px;
	padding: 0 var(--z-s-4) 0 var(--z-s-4);
}
.z-ribbon__title::after {
	border-top-width: 24px;
	border-bottom-width: 24px;
	border-right-width: 24px;
	top: 0; right: -24px;
}
/* Ribbon előtti piros dot visszaigazítva */
.z-ribbon__title::before { margin-right: 10px; }

/* Kis overline meta szövegek: DM Sans bold uppercase, a teljes design "ritmusához" */
.z-flag, .z-card__readtime, .z-album__highlight, .z-fest__month,
.z-subtabs__item, .z-chart__sub, .z-album__artist, .z-video__artist,
.z-artist__genre, .z-radio__freq, .z-card__meta, .z-listcard__date,
.z-postnav__label, .z-suggest__cat, .z-share__label, .z-tags__label,
.z-topbar__day, .z-topbar__tag, .z-topbar__live, .z-footer__copy,
.z-mhero__leadMeta, .z-single__meta, .z-quotecard__meta,
.z-badge, .z-crumbs__list, .z-chart__more, .z-btn, .z-ribbon__more,
.z-404__catlink, .pagination .page-numbers, .z-social__link,
.z-newsletter__cta, .z-footer__newsletter button,
#respond .submit, .z-tags a, .z-share__link {
	font-family: var(--z-font-sans);
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	font-size: 12px;
}

/* Nav: DM Sans, sans-serif - olvasható, nem condensed */
.z-nav__list {
	font-family: var(--z-font-sans);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
}

/* Body cikktörzs: DM Sans + nagyobb lineheight */
body { font-family: var(--z-font-sans); font-weight: 400; }
.z-prose { font-family: var(--z-font-sans); font-size: 1.0625rem; line-height: 1.8; }
.z-prose h2, .z-prose h3, .z-prose h4 { margin-top: 1.8em; margin-bottom: .5em; }

/* Kártyacímek: serif, közepes súly */
.z-card__title       { font-weight: 600; font-size: var(--z-fs-xl); }
.z-listcard__title   { font-weight: 600; font-size: var(--z-fs-lg); }
.z-quotecard__title  { font-weight: 600; font-size: var(--z-fs-lg); }
.z-album__title      { font-weight: 600; font-size: var(--z-fs-2xl); }
.z-video__title      { font-family: var(--z-font-sans); font-weight: 600; font-size: var(--z-fs-md); letter-spacing: -.005em; text-transform: none; }
.z-fest__title       { font-weight: 600; font-size: var(--z-fs-xl); }
.z-artist__name      { font-weight: 600; font-size: var(--z-fs-xl); }
.z-chart__title      { font-weight: 600; font-size: var(--z-fs-2xl); }
.z-radio__name       { font-family: var(--z-font-sans); font-weight: 700; font-size: var(--z-fs-lg); letter-spacing: .02em; text-transform: uppercase; }
.z-footer__title     { font-family: var(--z-font-sans); font-weight: 700; font-size: 15px; letter-spacing: .1em; text-transform: uppercase; }
.z-postnav__title    { font-family: var(--z-font-sans); font-weight: 600; font-size: var(--z-fs-md); text-transform: none; letter-spacing: -.005em; }

/* Idézet a blockquote-ban: dőlt serif */
.z-quotecard__quote { font-family: var(--z-font-display); font-weight: 400; font-style: italic; font-size: 15px; line-height: 1.55; }
.z-prose blockquote { font-family: var(--z-font-display); font-weight: 400; font-style: italic; font-size: 1.25rem; line-height: 1.5; }

/* 404 kód: serif, óriási */
.z-404__code { font-family: var(--z-font-display); font-weight: 700; font-variation-settings: "opsz" 144, "wght" 700; }


/* ===========================================================================
   HERO v1.4 – magazin stílusú, drámai
   =========================================================================== */

.z-mhero {
	display: grid;
	grid-template-columns: minmax(320px, 440px) 1fr;
	gap: 0;
	background: var(--z-surface);
	box-shadow: var(--z-shadow);
	border: 1px solid var(--z-border);
	position: relative;
	overflow: hidden;
}

.z-mhero::before {
	content: "";
	position: absolute; top: 0; left: 0;
	width: 4px; height: 100%;
	background: var(--z-red);
	z-index: 5;
}

.z-mhero__list {
	padding: var(--z-s-6) var(--z-s-5);
	display: flex;
	flex-direction: column;
	gap: 0;
}

.z-mhero__lead {
	padding-bottom: var(--z-s-5);
	border-bottom: 1px solid var(--z-border);
	margin-bottom: var(--z-s-4);
}
.z-mhero__lead .z-flag { margin-bottom: var(--z-s-4); }

.z-mhero__leadTitle {
	font-size: clamp(1.75rem, 2vw, 2.125rem);
	line-height: 1.1;
	margin: 0 0 var(--z-s-3);
}

.z-mhero__leadExcerpt {
	color: var(--z-text-soft);
	font-size: 15px;
	line-height: 1.55;
	margin: 0 0 var(--z-s-4);
}

.z-mhero__leadMeta {
	font-family: var(--z-font-sans) !important;
	font-weight: 700 !important;
	font-size: 11px !important;
	letter-spacing: .1em !important;
	color: var(--z-text-dim) !important;
	text-transform: uppercase !important;
}
.z-mhero__leadMeta span + span::before { content: "·"; margin: 0 6px; color: var(--z-border); }

/* Rank lista – "charts" stílus */
.z-mhero__rank { display: flex; flex-direction: column; }
.z-mhero__rankItem {
	display: grid;
	grid-template-columns: 36px 1fr auto;
	align-items: center;
	gap: var(--z-s-3);
	padding: 14px 0;
	border-top: 1px solid var(--z-border);
	position: relative;
	transition: background var(--z-transition);
}
.z-mhero__rankItem:first-child { border-top: 0; }
.z-mhero__rankItem:hover { background: var(--z-surface-2); }
.z-mhero__rankItem:hover .z-mhero__rankNum { color: var(--z-red); }

.z-mhero__rankNum {
	font-family: var(--z-font-display);
	font-weight: 600;
	font-size: 24px;
	color: var(--z-text-dim);
	letter-spacing: -.02em;
	font-variation-settings: "opsz" 96, "wght" 600;
	transition: color var(--z-transition);
}

.z-mhero__rankBar { display: none; }

.z-mhero__rankTitle {
	font-family: var(--z-font-sans);
	font-weight: 500;
	font-size: 14px;
	line-height: 1.35;
	letter-spacing: -.005em;
	color: var(--z-text);
	text-transform: none;
	padding: 0;
}
.z-mhero__rankTitle:hover { color: var(--z-red); }

/* Kis trend nyíl a rank item végén */
.z-mhero__rankItem::after {
	content: "↗";
	font-family: var(--z-font-sans);
	color: var(--z-text-dim);
	font-size: 14px;
	font-weight: 700;
	opacity: 0;
	transform: translateX(-4px);
	transition: opacity 180ms ease, transform 180ms ease;
}
.z-mhero__rankItem:hover::after { opacity: 1; transform: translateX(0); color: var(--z-red); }

/* Feature image jobb oldal */
.z-mhero__feature {
	position: relative;
	overflow: hidden;
	min-height: 480px;
}
.z-mhero__featureImg {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 600ms ease;
}
.z-mhero__feature:hover .z-mhero__featureImg { transform: scale(1.04); }

.z-mhero__feature::before {
	content: "";
	position: absolute; inset: 0;
	background:
		linear-gradient(180deg, rgba(10,14,26,0) 35%, rgba(10,14,26,.9) 100%),
		radial-gradient(ellipse at 30% 30%, rgba(10,14,26,0) 40%, rgba(10,14,26,.3) 100%);
	z-index: 1;
}

.z-mhero__featureOverlay {
	position: absolute;
	inset: auto 0 0 0;
	padding: var(--z-s-7) var(--z-s-6) var(--z-s-6);
	z-index: 2;
	color: #fff;
}

.z-mhero__featureTitle {
	font-size: clamp(1.8rem, 3.5vw, 3rem);
	line-height: 1.02;
	color: #fff;
	margin: var(--z-s-3) 0 0;
	text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.z-mhero__featureOverlay .z-flag { background: var(--z-red); }

/* CTA arrow gomb a jobb felső sarkon */
.z-mhero__feature::after {
	content: "→";
	position: absolute; top: var(--z-s-4); right: var(--z-s-4);
	width: 48px; height: 48px;
	display: grid; place-items: center;
	background: var(--z-red);
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	z-index: 3;
	transform: translate(8px, -8px);
	opacity: 0;
	transition: opacity 280ms ease, transform 280ms ease;
}
.z-mhero__feature:hover::after { opacity: 1; transform: translate(0, 0); }

@media (max-width: 1024px) {
	.z-mhero { grid-template-columns: 1fr; }
	.z-mhero__feature { min-height: 320px; }
}


/* ===========================================================================
   SZEKCIÓ ELVÁLASZTÓK v1.4 – erős vizuális ritmus a rovatok között
   =========================================================================== */

/* Section default magasabb */
.z-section { padding-block: var(--z-s-8) 0; }

/* Szekciók alternáló háttere: minden második kap halvány fehér blokkot */
.z-section:nth-of-type(even) { background: var(--z-surface); }
.z-section:nth-of-type(even) > .z-container,
.z-section:nth-of-type(even).z-container { padding-top: var(--z-s-7); padding-bottom: var(--z-s-7); }

/* Vastag animált piros vízszintes divider — ribbon alatt egy picivel  */
.z-ribbon {
	position: relative;
	margin-bottom: var(--z-s-5);
}

/* Ribbon egész szekciót elválasztó csíkot húz */
.z-ribbon::before {
	content: "";
	position: absolute;
	left: 0; right: 0;
	top: -28px;
	height: 1px;
	background: linear-gradient(90deg, var(--z-red) 0%, var(--z-red) 48px, var(--z-border) 48px, var(--z-border) 100%);
}

/* Rejtsük az első szekció tetején levő vonalat */
.z-main > section:first-of-type .z-ribbon::before,
.z-main > .z-section:first-of-type .z-ribbon::before,
.z-main > div.z-container:first-of-type + section .z-ribbon::before { display: none; }

/* Ribbon rule (a piros ribbon utáni vízszintes vonal) vastagabb és árnyalatos */
.z-ribbon__rule {
	flex: 1;
	height: 3px;
	background: linear-gradient(90deg, var(--z-ink) 0%, var(--z-border) 20%, var(--z-border) 100%);
	margin-left: 26px;
}

/* Előadó-scroller körül sötét fekete panel (teljes szélesség) */
.z-section--dark {
	background: var(--z-ink);
	padding-block: var(--z-s-8);
	margin-block: var(--z-s-7) 0;
	position: relative;
}
.z-section--dark .z-ribbon__title { background: var(--z-red); }
.z-section--dark .z-ribbon__title::after { border-top-color: var(--z-red); border-bottom-color: var(--z-red); }
.z-section--dark .z-ribbon__rule { background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.15) 20%, rgba(255,255,255,.15) 100%); }
.z-section--dark .z-ribbon__more { color: rgba(255,255,255,.8); }
.z-section--dark .z-ribbon__more:hover { color: #fff; }
.z-section--dark::before,
.z-section--dark::after {
	content: "";
	position: absolute;
	left: 0; right: 0;
	height: 12px;
	background: repeating-linear-gradient(-45deg, var(--z-red) 0, var(--z-red) 6px, transparent 6px, transparent 14px);
	opacity: .25;
}
.z-section--dark::before { top: 0; }
.z-section--dark::after  { bottom: 0; }

/* Szekció végén aláhúzó vonal (minden rovat után, finomkodó divider) */
.z-section::after {
	content: "";
	display: block;
	width: 60px;
	height: 4px;
	background: var(--z-red);
	margin: var(--z-s-6) auto 0;
}
.z-videos-wrap::after, .z-section--dark::after { display: none; }
