/*
 * ZiarMedical — editorial.css v5.0
 * Editorial magazine homepage layout
 * Inspirat din: NYT, The Guardian, Pitchfork, Apple News
 */

/* ══════════════════════════════════════════════════════
   EDITORIAL HERO — asymmetric magazine layout
   ══════════════════════════════════════════════════════ */

.zm-ed-hero {
  background: #FFFFFF;
  padding: 32px 0 56px;
  position: relative;
  border-bottom: 1px solid var(--zm-bd);
}

.zm-ed-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Eyebrow row — date + edition number */
.zm-ed-eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 1.5px solid var(--zm-t1);
  font-family: var(--zm-font-b);
}

.zm-ed-date,
.zm-ed-issue-num {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--zm-t2);
  text-transform: capitalize;
}

.zm-ed-eyebrow-title {
  font-family: var(--zm-font-h);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--zm-ac);
}

/* Hero grid: 65/35 split */
.zm-ed-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 900px) {
  .zm-ed-hero-grid {
    grid-template-columns: 1.65fr 1fr;
    gap: 48px;
  }
}

@media (min-width: 1200px) {
  .zm-ed-hero-grid { gap: 64px; }
}

/* LEAD STORY */
.zm-ed-lead { position: relative; }

.zm-ed-lead-img-link {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 16/10;
  background: var(--zm-bg3);
  margin-bottom: 24px;
}

.zm-ed-lead-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .7s cubic-bezier(.25, .46, .45, .94);
}

.zm-ed-lead:hover .zm-ed-lead-img { transform: scale(1.03); }

.zm-ed-lead-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,12,10,.4) 0%, transparent 50%);
  pointer-events: none;
}

.zm-ed-lead-badge {
  position: absolute;
  top: 14px; left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  font-family: var(--zm-font-b);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--zm-ac);
}

.zm-ed-lead-badge svg { animation: zm-pulse 2s ease-in-out infinite; }

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

.zm-ed-lead-body { padding: 0; }

.zm-ed-lead-cat {
  display: inline-block;
  font-family: var(--zm-font-b);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--zm-ac);
  text-decoration: none;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 4px;
}
.zm-ed-lead-cat::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--zm-ac);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.zm-ed-lead-cat:hover { text-decoration: none; }
.zm-ed-lead-cat:hover::after { transform: scaleX(1); }

.zm-ed-lead-title {
  font-family: var(--zm-font-h) !important;
  font-size: clamp(32px, 5.5vw, 64px) !important;
  font-weight: 700 !important;
  line-height: 1.05 !important;
  letter-spacing: -1px !important;
  color: var(--zm-t1) !important;
  margin: 0 0 18px !important;
  text-wrap: balance;
}

.zm-ed-lead-title a {
  color: var(--zm-t1);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size .4s cubic-bezier(.4, 0, .2, 1);
}
.zm-ed-lead-title a:hover {
  background-size: 100% 2px;
  color: var(--zm-t1);
}

.zm-ed-lead-excerpt {
  font-family: var(--zm-font-b);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.6;
  color: var(--zm-t2);
  margin: 0 0 22px;
  max-width: 620px;
  text-wrap: pretty;
}

.zm-ed-lead-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.zm-ed-lead-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--zm-t1);
  color: #fff;
  border-radius: 999px;
  font-family: var(--zm-font-b);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  min-height: 46px;
  transition: all .2s;
}
.zm-ed-lead-cta:hover {
  background: var(--zm-ac);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(76,34,173,.3);
}
.zm-ed-lead-cta svg { transition: transform .2s; }
.zm-ed-lead-cta:hover svg { transform: translateX(3px); }

.zm-ed-lead-rt {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--zm-t3);
  font-weight: 500;
}

/* SIDE STORIES */
.zm-ed-side { position: relative; padding-top: 8px; }

@media (min-width: 900px) {
  .zm-ed-side {
    border-left: 1px solid var(--zm-bd);
    padding-left: 32px;
  }
}

.zm-ed-side-hd {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  font-family: var(--zm-font-h) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  color: var(--zm-t1) !important;
}

.zm-ed-side-line {
  flex: 1;
  height: 1.5px;
  background: var(--zm-t1);
}

.zm-ed-side-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.zm-ed-side-item {
  border-top: 1px solid var(--zm-bd);
}
.zm-ed-side-item:last-child { border-bottom: 1px solid var(--zm-bd); }

.zm-ed-side-link {
  display: grid;
  grid-template-columns: 36px 1fr 84px;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  text-decoration: none;
  transition: padding-left .2s;
}
.zm-ed-side-link:hover {
  text-decoration: none;
  padding-left: 8px;
}

.zm-ed-side-num {
  font-family: var(--zm-font-h);
  font-size: 28px;
  font-weight: 700;
  color: var(--zm-ac);
  line-height: 1;
}

.zm-ed-side-content { min-width: 0; }

.zm-ed-side-cat {
  display: block;
  font-family: var(--zm-font-b);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--zm-ac);
  margin-bottom: 5px;
}

.zm-ed-side-title {
  font-family: var(--zm-font-h) !important;
  font-size: clamp(15px, 1.5vw, 17px) !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  color: var(--zm-t1) !important;
  margin: 0 !important;
  letter-spacing: -.15px !important;
}

.zm-ed-side-link:hover .zm-ed-side-title { color: var(--zm-ac) !important; }

.zm-ed-side-thumb {
  display: block;
  width: 84px;
  height: 64px;
  border-radius: 3px;
  overflow: hidden;
  background: var(--zm-bg3);
}
.zm-ed-side-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

@media (max-width: 639px) {
  .zm-ed-hero { padding: 20px 0 36px; }
  .zm-ed-hero-inner { padding: 0 16px; }
  .zm-ed-eyebrow-row { padding-bottom: 16px; margin-bottom: 20px; }
  .zm-ed-eyebrow-title { font-size: 12px; letter-spacing: 1.5px; }
  .zm-ed-issue-num { display: none; }
  .zm-ed-hero-grid { gap: 32px; }
  .zm-ed-lead-img-link { aspect-ratio: 16/9; margin-bottom: 18px; }
  .zm-ed-lead-title { font-size: 30px !important; letter-spacing: -.6px !important; }
  .zm-ed-lead-excerpt { font-size: 16px; }
  .zm-ed-side { border-left: none !important; padding-left: 0 !important; padding-top: 0; }
  .zm-ed-side-link { grid-template-columns: 32px 1fr 64px; gap: 11px; padding: 14px 0; }
  .zm-ed-side-num { font-size: 22px; }
  .zm-ed-side-thumb { width: 64px; height: 48px; }
}

/* ══════════════════════════════════════════════════════
   MARQUEE — știri în continuă rotație
   ══════════════════════════════════════════════════════ */

.zm-marquee {
  background: var(--zm-t1);
  color: #fff;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  height: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.zm-marquee-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  height: 100%;
  background: var(--zm-ac);
  color: #fff;
  font-family: var(--zm-font-b);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  flex-shrink: 0;
  z-index: 2;
  white-space: nowrap;
}

.zm-marquee-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: zm-pulse 1.5s ease-in-out infinite;
}

.zm-marquee-track {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  animation: zm-marquee-scroll 60s linear infinite;
  will-change: transform;
}

.zm-marquee:hover .zm-marquee-track { animation-play-state: paused; }

@keyframes zm-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.zm-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  font-size: 14px;
  color: rgba(255,255,255,.88);
  text-decoration: none;
  white-space: nowrap;
  transition: color .15s;
  flex-shrink: 0;
}
.zm-marquee-item:hover { color: #fff; text-decoration: none; }

.zm-marquee-cat {
  font-family: var(--zm-font-b);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--zm-orange);
}

.zm-marquee-title {
  font-weight: 500;
}

.zm-marquee-dot {
  color: rgba(255,255,255,.3);
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 639px) {
  .zm-marquee { height: 48px; }
  .zm-marquee-label { padding: 0 14px; font-size: 10.5px; }
  .zm-marquee-item { font-size: 13px; padding: 0 12px; }
}

/* ══════════════════════════════════════════════════════
   SECTION HEAD — universal
   ══════════════════════════════════════════════════════ */

.zm-sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--zm-t1);
  flex-wrap: wrap;
}

.zm-sec-head-inline {
  border-bottom: 1.5px solid var(--zm-t1);
  padding-bottom: 12px;
  margin-bottom: 24px;
}

.zm-sec-kicker {
  display: block;
  font-family: var(--zm-font-b);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--zm-ac);
  margin: 0 0 6px;
}

.zm-sec-kicker-orange { color: var(--zm-orange); }

.zm-sec-h {
  font-family: var(--zm-font-h) !important;
  font-size: clamp(26px, 3.4vw, 36px) !important;
  font-weight: 700 !important;
  line-height: 1.12 !important;
  letter-spacing: -.4px !important;
  color: var(--zm-t1) !important;
  margin: 0 !important;
}

.zm-sec-sub {
  font-size: 14px;
  color: var(--zm-t3);
  margin: 6px 0 0;
}

.zm-sec-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--zm-font-b);
  font-size: 13px;
  font-weight: 700;
  color: var(--zm-t1);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1.5px solid transparent;
  transition: border-color .2s;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.zm-sec-more:hover {
  border-color: var(--zm-ac);
  color: var(--zm-ac);
  text-decoration: none;
}

@media (max-width: 479px) {
  .zm-sec-head { margin-bottom: 24px; padding-bottom: 12px; }
  .zm-sec-h { font-size: 22px !important; }
}

/* ══════════════════════════════════════════════════════
   CATEGORY MOSAIC — visual tiles
   ══════════════════════════════════════════════════════ */

.zm-cat-mosaic {
  padding: 64px 0 16px;
  background: var(--zm-bg);
}

.zm-cat-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 480px) { .zm-cat-tiles { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (min-width: 768px) { .zm-cat-tiles { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px){ .zm-cat-tiles { grid-template-columns: repeat(6, 1fr); } }

.zm-cat-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--zm-bg2);
  border: 1.5px solid var(--zm-bd);
  border-radius: 14px;
  text-decoration: none;
  transition: all .2s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
  --cat-clr: var(--zm-ac);
}
.zm-cat-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cat-clr);
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}
.zm-cat-tile:hover {
  text-decoration: none;
  border-color: var(--cat-clr);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}
.zm-cat-tile:hover::before { opacity: .04; }

.zm-cat-icon {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--cat-clr) 12%, transparent);
  color: var(--cat-clr);
  flex-shrink: 0;
  transition: transform .2s;
}
.zm-cat-tile:hover .zm-cat-icon { transform: scale(1.08) rotate(-5deg); }

.zm-cat-content {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column;
  gap: 2px;
}

.zm-cat-name {
  font-family: var(--zm-font-h);
  font-size: 15px;
  font-weight: 600;
  color: var(--zm-t1);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zm-cat-count {
  font-size: 11px;
  color: var(--zm-t4);
  font-weight: 500;
}

.zm-cat-arr {
  color: var(--cat-clr);
  opacity: 0;
  transform: translateX(-6px);
  transition: all .2s;
  flex-shrink: 0;
}
.zm-cat-tile:hover .zm-cat-arr {
  opacity: 1;
  transform: translateX(0);
}

/* ══════════════════════════════════════════════════════
   MAGAZINE GRID — featured + smaller cards
   ══════════════════════════════════════════════════════ */

.zm-mag-grid { padding: 56px 0; }

.zm-mag-grid-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) { .zm-mag-grid-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .zm-mag-grid-list { grid-template-columns: repeat(3, 1fr); gap: 32px 28px; } }

.zm-mag-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
}

/* Featured card (first in list) — spans 2 columns on desktop */
@media (min-width: 1024px) {
  .zm-mag-card-feat {
    grid-column: span 2;
    grid-row: span 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.zm-mag-card-img-wrap {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 16/10;
  background: var(--zm-bg3);
  position: relative;
}

.zm-mag-card-feat .zm-mag-card-img-wrap {
  aspect-ratio: 16/9;
}

.zm-mag-card-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.25, .46, .45, .94);
}
.zm-mag-card:hover .zm-mag-card-img { transform: scale(1.04); }

.zm-mag-card .zm-card-bookmark {
  top: 12px; right: 12px;
}

.zm-mag-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.zm-mag-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.zm-mag-card-feat .zm-card-title {
  font-size: clamp(22px, 2.6vw, 30px) !important;
}

/* ══════════════════════════════════════════════════════
   EDITORIAL FEATURE — Pull quote + parallax
   ══════════════════════════════════════════════════════ */

.zm-feature {
  position: relative;
  background: var(--zm-t1);
  color: #fff;
  padding: 96px 24px;
  overflow: hidden;
  margin: 56px 0;
}

.zm-feature-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.zm-feature-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.32) saturate(1.1) blur(1px);
  transform: scale(1.05);
}

.zm-feature-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(13,12,10,.4) 0%, rgba(13,12,10,.85) 100%);
}

.zm-feature-inner {
  position: relative; z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.zm-feature-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
  font-family: var(--zm-font-b);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--zm-orange);
}

.zm-feature-kicker-line {
  display: block;
  width: 32px; height: 1.5px;
  background: var(--zm-orange);
}

.zm-feature-quote {
  margin: 0 0 36px;
  position: relative;
}

.zm-feature-quote-mark {
  display: block;
  margin: 0 auto 20px;
  color: rgba(255,255,255,.15);
}

.zm-feature-quote-text {
  font-family: var(--zm-font-h);
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.4px;
  color: #fff;
  margin: 0;
  text-wrap: balance;
}

.zm-feature-meta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.zm-feature-cat {
  font-family: var(--zm-font-b);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  padding-right: 16px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.zm-feature-cat:hover { color: #fff; text-decoration: none; }

.zm-feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border: 1.5px solid #fff;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-family: var(--zm-font-b);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .8px;
  transition: all .2s;
  min-height: 44px;
}
.zm-feature-cta:hover {
  background: #fff;
  color: var(--zm-t1);
  text-decoration: none;
}
.zm-feature-cta svg { transition: transform .2s; }
.zm-feature-cta:hover svg { transform: translateX(3px); }

@media (max-width: 639px) {
  .zm-feature { padding: 56px 20px; margin: 36px 0; }
  .zm-feature-kicker { margin-bottom: 24px; letter-spacing: 2px; }
  .zm-feature-kicker-line { width: 20px; }
  .zm-feature-quote-text { font-size: 22px; }
}

/* ══════════════════════════════════════════════════════
   DUAL COLUMNS — Interviuri (numbered) + Sănătate (cards)
   ══════════════════════════════════════════════════════ */

.zm-dual { padding: 56px 0; }

.zm-dual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

@media (min-width: 900px) {
  .zm-dual-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.zm-dual-col { min-width: 0; }

/* Numbered list */
.zm-num-list {
  list-style: none;
  padding: 0; margin: 0;
}

.zm-num-item {
  border-top: 1px solid var(--zm-bd);
}
.zm-num-item:last-child { border-bottom: 1px solid var(--zm-bd); }

.zm-num-link {
  display: grid;
  grid-template-columns: 48px 1fr 72px;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  text-decoration: none;
  transition: background .2s;
}
.zm-num-link:hover { text-decoration: none; background: var(--zm-bg3); }

.zm-num-no {
  font-family: var(--zm-font-h);
  font-size: 32px;
  font-weight: 700;
  color: var(--zm-ac);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -1px;
}

.zm-num-content { min-width: 0; }

.zm-num-title {
  font-family: var(--zm-font-h);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--zm-t1);
  margin: 0 0 4px;
}
.zm-num-link:hover .zm-num-title { color: var(--zm-ac); }

.zm-num-meta {
  font-size: 11px;
  color: var(--zm-t4);
  text-transform: uppercase;
  letter-spacing: .8px;
  font-weight: 600;
}

.zm-num-thumb {
  display: block;
  width: 72px; height: 56px;
  border-radius: 3px;
  overflow: hidden;
  background: var(--zm-bg3);
}
.zm-num-thumb-img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Mini cards (Sănătate) */
.zm-mini-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.zm-mini-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: center;
  border-radius: 10px;
  transition: background .2s;
  padding: 8px;
  margin: -8px;
}
.zm-mini-card:hover { background: var(--zm-bg3); }

.zm-mini-img-wrap {
  display: block;
  width: 110px; height: 84px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--zm-bg3);
}
.zm-mini-img { width: 100%; height: 100%; object-fit: cover; }

.zm-mini-body {
  display: flex; flex-direction: column;
  gap: 6px; min-width: 0;
}

.zm-mini-cat {
  display: inline-block;
  width: fit-content;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--zm-ac-light);
  color: var(--zm-ac);
  font-family: var(--zm-font-b);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
}
.zm-mini-cat-orange {
  background: rgba(255,82,0,.12);
  color: var(--zm-orange);
}

.zm-mini-title {
  font-family: var(--zm-font-h);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}
.zm-mini-title a {
  color: var(--zm-t1);
  text-decoration: none;
}
.zm-mini-card:hover .zm-mini-title a { color: var(--zm-ac); }

@media (max-width: 479px) {
  .zm-num-link { grid-template-columns: 38px 1fr 56px; gap: 11px; padding: 14px 0; }
  .zm-num-no { font-size: 24px; }
  .zm-num-thumb { width: 56px; height: 42px; }
  .zm-mini-card { grid-template-columns: 90px 1fr; gap: 12px; }
  .zm-mini-img-wrap { width: 90px; height: 68px; }
}

/* ══════════════════════════════════════════════════════
   EVENTS — Horizontal rail with calendar style
   ══════════════════════════════════════════════════════ */

.zm-events-mod { padding: 56px 0; background: var(--zm-bg2); position: relative; overflow: hidden; }

.zm-events-mod::before {
  content: '';
  position: absolute;
  top: 0; right: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,82,0,.06) 0%, transparent 70%);
  pointer-events: none;
}

.zm-events-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

@media (max-width: 639px) {
  .zm-events-rail {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.zm-event-card {
  display: grid;
  grid-template-columns: 76px 1fr 18px;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: #fff;
  border: 1.5px solid var(--zm-bd);
  border-radius: 14px;
  text-decoration: none;
  transition: all .22s cubic-bezier(.34, 1.3, .64, 1);
}
.zm-event-card:hover {
  text-decoration: none;
  border-color: var(--zm-orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(255,82,0,.18);
}

.zm-event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--zm-orange);
  color: #fff;
  border-radius: 10px;
  padding: 10px 4px;
  width: 76px;
  text-align: center;
  position: relative;
}
.zm-event-date::before, .zm-event-date::after {
  content: '';
  position: absolute;
  top: -4px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--zm-orange);
}
.zm-event-date::before { left: 14px; }
.zm-event-date::after  { right: 14px; }

.zm-event-day {
  font-family: var(--zm-font-h);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.zm-event-mon {
  font-family: var(--zm-font-b);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
  opacity: .85;
}

.zm-event-body { min-width: 0; }

.zm-event-title {
  font-family: var(--zm-font-h);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--zm-t1);
  margin: 0 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.zm-event-loc {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--zm-t3);
}

.zm-event-arr {
  color: var(--zm-t4);
  transition: transform .2s, color .2s;
}
.zm-event-card:hover .zm-event-arr {
  color: var(--zm-orange);
  transform: translateX(3px);
}

/* ══════════════════════════════════════════════════════
   VIDEO SHOWCASE — Cinema feel
   ══════════════════════════════════════════════════════ */

.zm-video-mod { padding: 56px 0 72px; }

.zm-video-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 900px) {
  .zm-video-layout {
    grid-template-columns: 1.8fr 1fr;
    gap: 28px;
  }
}

.zm-video-hero {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.zm-video-hero-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s, filter .3s;
}
.zm-video-hero:hover .zm-video-hero-thumb {
  transform: scale(1.03);
  filter: brightness(.7);
}

.zm-video-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 50%);
  pointer-events: none;
}

.zm-video-hero-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  color: var(--zm-orange);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1);
}
.zm-video-hero-play svg { margin-left: 3px; }
.zm-video-hero:hover .zm-video-hero-play { transform: translate(-50%, -50%) scale(1.12); }

.zm-video-hero-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  z-index: 1;
}

.zm-video-hero-badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--zm-orange);
  color: #fff;
  font-family: var(--zm-font-b);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.zm-video-hero-title {
  font-family: var(--zm-font-h);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
  text-wrap: balance;
}

.zm-video-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zm-video-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s;
  margin: -10px;
}
.zm-video-row:hover { background: var(--zm-bg3); }

.zm-video-row-thumb {
  position: relative;
  width: 120px; height: 70px;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
}
.zm-video-row-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.zm-video-row-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(0,0,0,.7);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.zm-video-row-play svg { margin-left: 1px; }

.zm-video-row-title {
  font-family: var(--zm-font-h);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--zm-t1);
  margin: 0;
}
.zm-video-row:hover .zm-video-row-title { color: var(--zm-ac); }

@media (max-width: 479px) {
  .zm-video-row { grid-template-columns: 100px 1fr; gap: 11px; }
  .zm-video-row-thumb { width: 100px; height: 60px; }
  .zm-video-hero-play { width: 56px; height: 56px; }
  .zm-video-hero-play svg { width: 20px; height: 20px; }
  .zm-video-hero-info { padding: 18px; }
}

/* ══════════════════════════════════════════════════════
   STATEMENT — Bold typography numbers section
   ══════════════════════════════════════════════════════ */

.zm-statement {
  background: var(--zm-bg2);
  padding: 96px 24px 100px;
  border-top: 1px solid var(--zm-bd);
}

.zm-statement-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.zm-statement-kicker {
  display: inline-block;
  font-family: var(--zm-font-b);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--zm-ac);
  margin-bottom: 20px;
  padding: 6px 14px;
  background: var(--zm-ac-light);
  border-radius: 999px;
}

.zm-statement-title {
  font-family: var(--zm-font-h);
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.2px;
  color: var(--zm-t1);
  margin: 0 0 64px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.zm-statement-title span {
  display: block;
}

.zm-statement-accent {
  font-style: italic;
  color: var(--zm-ac);
  font-weight: 500;
}

.zm-statement-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 24px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .zm-statement-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.zm-stat-num {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.zm-stat-n {
  font-family: var(--zm-font-h);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1;
  color: var(--zm-t1);
  letter-spacing: -1.2px;
  font-variant-numeric: tabular-nums;
}

.zm-stat-plus {
  color: var(--zm-orange);
  font-weight: 600;
  font-size: .65em;
  vertical-align: super;
  margin-left: 2px;
}

.zm-stat-l {
  font-family: var(--zm-font-b);
  font-size: 13px;
  font-weight: 600;
  color: var(--zm-t3);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

@media (max-width: 479px) {
  .zm-statement { padding: 56px 16px 64px; }
  .zm-statement-title { margin-bottom: 40px; }
  .zm-statement-stats { gap: 28px 16px; }
}

/* ══════════════════════════════════════════════════════
   PAGE WRAP (universal)
   ══════════════════════════════════════════════════════ */

.zm-page-wrap {
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
}

@media (max-width: 639px) {
  .zm-page-wrap { padding: 0 16px !important; }
}

/* ══════════════════════════════════════════════════════
   v5.0.1 — SPACING AUDIT FIX
   ──────────────────────────────────────────────────────
   Eliminăm padding-ul dublu între secțiunile consecutive.
   Sistem nou: fiecare secțiune are doar padding-top 64px,
   padding-bottom = 0 (next section provides own top spacing).
   Dividerele SVG primesc margin negativ ca să "lege" sectiunile.
   ══════════════════════════════════════════════════════ */

/* Reset toate secțiunile homepage la padding consistent */
body .zm-ed-hero { padding-bottom: 40px !important; }

body .zm-cat-mosaic {
  padding-top: 56px !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

body .zm-mag-grid {
  padding-top: 56px !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
}

body .zm-feature {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
  margin: 56px 0 0 !important;
}

body .zm-dual {
  padding-top: 56px !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
}

body .zm-events-mod {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
  margin-top: 56px !important;
}

body .zm-video-mod {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
  margin-top: 0 !important;
}

body .zm-statement {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
  margin-top: 0 !important;
}

/* Dividere SVG: înghesuie-le în secțiunile vecine, nu floating */
body .zm-sdiv-wrap {
  margin: 24px 0 !important;
  padding: 0 !important;
  line-height: 0 !important;
  /* Reduce SVG height */
}

body .zm-sdiv {
  max-height: 56px !important;
}

body .zm-sdiv-ekg { max-height: 64px !important; }
body .zm-sdiv-arc { max-height: 52px !important; }

/* Mobile: spacing redus */
@media (max-width: 639px) {
  body .zm-cat-mosaic,
  body .zm-mag-grid,
  body .zm-dual,
  body .zm-video-mod { padding-top: 40px !important; }

  body .zm-events-mod {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    margin-top: 40px !important;
  }

  body .zm-feature {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
    margin: 40px 0 0 !important;
  }

  body .zm-statement {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  body .zm-sdiv-wrap { margin: 16px 0 !important; }
}


/* ══════════════════════════════════════════════════════
   v5.1.0 — HEADER EDITORIAL
   ══════════════════════════════════════════════════════ */

.zm-hdr {
  background: #fff;
  border-bottom: 1px solid var(--zm-bd);
  position: sticky;
  top: 0;
  z-index: 50;
  /* Override prev sticky behavior */
}

/* Top bar — date + tagline + edition */
.zm-hdr-top {
  background: var(--zm-t1);
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.zm-hdr-top-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 7px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--zm-font-b);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .4px;
}

.zm-hdr-date-line,
.zm-hdr-edition {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.6);
  text-transform: capitalize;
}

.zm-hdr-tagline {
  font-family: var(--zm-font-h);
  font-size: 12px;
  font-style: italic;
  color: rgba(255,255,255,.75);
  letter-spacing: 0;
  text-align: center;
  flex: 1;
}

@media (max-width: 760px) {
  .zm-hdr-top { display: none; }
}

/* Main bar — logo center, search left, menu right */
.zm-hdr-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.zm-hdr-search-l {
  justify-self: start;
}

.zm-hdr-logo {
  justify-self: center;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.zm-hdr-logo img {
  height: 44px !important;
  width: auto !important;
  max-width: none;
  display: block;
}

.zm-hdr-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.zm-hdr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--zm-bd);
  background: transparent;
  color: var(--zm-t2);
  cursor: pointer;
  text-decoration: none;
  transition: all .15s;
}
.zm-hdr-btn:hover {
  background: var(--zm-ac-light);
  border-color: rgba(76,34,173,.25);
  color: var(--zm-ac);
  text-decoration: none;
}

.zm-hdr-btn-label {
  font-family: var(--zm-font-h);
  font-weight: 700;
  margin-left: 2px;
  font-size: 13px;
}

.zm-font-ctrl {
  display: flex;
  gap: 4px;
  padding: 2px;
  border-radius: 999px;
  background: var(--zm-bg3);
}
.zm-font-ctrl .zm-hdr-btn { border: none; width: 32px; height: 32px; }
.zm-font-ctrl .zm-hdr-btn svg { width: 11px; height: 11px; }
.zm-font-ctrl .zm-hdr-btn .zm-hdr-btn-label { font-size: 11px; }

/* Hamburger only mobile */
.zm-hdr-burger { display: none; }

@media (max-width: 900px) {
  .zm-hdr-burger { display: inline-flex; }
}

/* Nav editorial sub logo, centrat */
.zm-hdr-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 24px 14px;
  border-top: 1px solid var(--zm-bd);
  padding-top: 12px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.zm-hdr-nav a {
  font-family: var(--zm-font-b);
  font-size: 13px;
  font-weight: 600;
  color: var(--zm-t2);
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 999px;
  transition: all .15s;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.zm-hdr-nav a:hover {
  color: var(--zm-ac);
  background: var(--zm-ac-light);
  text-decoration: none;
}

.zm-hdr-nav .zm-nav-active {
  color: var(--zm-ac);
  background: var(--zm-ac-light);
}

@media (max-width: 900px) {
  .zm-hdr-nav { display: none; }
  .zm-hdr-inner { padding: 12px 16px; }
  .zm-hdr-logo img { height: 38px !important; }
  .zm-hdr-search-l { display: none; }
  .zm-hdr-inner { grid-template-columns: 1fr auto; }
  .zm-hdr-logo { justify-self: start; }
}

/* Mobile menu search button */
.zm-mobile-search {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: var(--zm-ac-light);
  color: var(--zm-ac) !important;
  margin-top: 12px;
  border-radius: 8px;
}

/* ══════════════════════════════════════════════════════
   v5.1.0 — FOOTER EDITORIAL
   ══════════════════════════════════════════════════════ */

.zm-footer {
  background: var(--zm-t1);
  color: rgba(255,255,255,.85);
  position: relative;
  z-index: 2;
  margin-top: 0;
  overflow: hidden;
}

/* Top statement */
.zm-footer-statement {
  padding: 80px 24px 64px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
}

.zm-footer-statement::before {
  content: '';
  position: absolute;
  top: 0; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76,34,173,.18) 0%, transparent 70%);
  pointer-events: none;
}

.zm-footer-statement-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.zm-footer-tagline {
  font-family: var(--zm-font-h);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin: 0;
  letter-spacing: -.5px;
  flex: 1;
  min-width: 280px;
}

.zm-footer-tagline em {
  font-style: italic;
  font-weight: 500;
  color: var(--zm-orange);
}

.zm-footer-mark {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.06);
  padding: 14px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  flex-shrink: 0;
}

.zm-footer-mark .zm-footer-logo {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  display: block;
}

/* Columns */
.zm-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

@media (min-width: 600px) {
  .zm-footer-inner { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (min-width: 1024px) {
  .zm-footer-inner {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
  }
}

.zm-footer-col-title {
  font-family: var(--zm-font-h);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--zm-orange);
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.zm-footer-desc {
  font-family: var(--zm-font-b);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,.7);
  margin: 0 0 16px;
}

.zm-footer-loc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  letter-spacing: .3px;
  margin: 0;
}

.zm-footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zm-footer-col nav a {
  font-family: var(--zm-font-b);
  font-size: 14px;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .15s, padding-left .2s;
  padding: 2px 0;
  display: inline-flex;
  align-items: center;
  width: fit-content;
}
.zm-footer-col nav a:hover {
  color: #fff;
  padding-left: 4px;
  text-decoration: none;
}

/* Social bar */
.zm-footer-social-bar {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px;
}

.zm-footer-social-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.zm-footer-social-label {
  font-family: var(--zm-font-b);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,.6);
}

.zm-footer-social {
  display: flex;
  gap: 8px;
}

.zm-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.8);
  text-decoration: none;
  transition: all .15s;
}
.zm-social-link:hover {
  background: var(--zm-ac);
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}

/* Bottom */
.zm-footer-bottom {
  background: rgba(0,0,0,.25);
  padding: 18px 24px;
}

.zm-footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,.45);
}

.zm-footer-copy,
.zm-footer-disclaimer {
  margin: 0;
}

@media (max-width: 639px) {
  .zm-footer-statement { padding: 48px 16px 36px; }
  .zm-footer-statement-inner { gap: 24px; }
  .zm-footer-mark { padding: 10px 18px; }
  .zm-footer-mark .zm-footer-logo { height: 36px; }
  .zm-footer-inner { padding: 36px 16px 24px; gap: 28px; }
  .zm-footer-bottom-inner { font-size: 11px; }
}

/* ══════════════════════════════════════════════════════
   v5.1.0 — STATEMENT REFRESH
   ══════════════════════════════════════════════════════ */

body .zm-statement-title {
  font-family: var(--zm-font-h) !important;
  font-size: clamp(32px, 5vw, 64px) !important;
  font-weight: 700 !important;
  line-height: 1.12 !important;
  letter-spacing: -.8px !important;
  color: var(--zm-t1) !important;
  margin: 0 0 28px !important;
  display: block !important;
  text-wrap: balance;
}

body .zm-statement-title em {
  font-style: italic;
  color: var(--zm-ac);
  font-weight: 500;
}

.zm-statement-lead {
  font-family: var(--zm-font-b);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.7;
  color: var(--zm-t2);
  margin: 0 auto 56px;
  max-width: 680px;
  text-wrap: pretty;
}

.zm-statement-cta {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.zm-statement-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--zm-t1);
  color: #fff;
  border-radius: 999px;
  font-family: var(--zm-font-b);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  min-height: 48px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.zm-statement-link:hover {
  background: var(--zm-ac);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(76,34,173,.3);
}
.zm-statement-link svg { transition: transform .2s; }
.zm-statement-link:hover svg { transform: translateX(3px); }

/* ══════════════════════════════════════════════════════
   v5.1.0 — FLOWING BACKGROUND DECORATIONS
   Curbe serpentine care intersectează secțiunile
   ══════════════════════════════════════════════════════ */

.zm-main-flow {
  position: relative;
  overflow-x: clip;
}

.zm-flow-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.zm-flow-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Trasee — opacități scăzute */
.zm-flow-line {
  opacity: .08;
  /* Animation: stroke draws on viewport entry */
}

.zm-flow-line-dot {
  opacity: .14;
}

.zm-flow-pt {
  opacity: .20;
}

.zm-flow-cross { opacity: .15; }
.zm-flow-cross-o { opacity: .12; }

.zm-flow-ekg {
  opacity: .18;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: zm-flow-ekg-draw 3s ease 1s forwards;
}

@keyframes zm-flow-ekg-draw {
  from { stroke-dashoffset: 220; opacity: 0; }
  60%  { stroke-dashoffset: 0; opacity: .22; }
  to   { stroke-dashoffset: 0; opacity: .18; }
}

/* Conținutul peste curbe */
.zm-main-flow > section,
.zm-main-flow > .zm-section,
.zm-main-flow > div:not(.zm-flow-bg) {
  position: relative;
  z-index: 1;
}

/* Pe mobile, ascundem cruciulițele și EKG-urile (prea aglomerat) */
@media (max-width: 639px) {
  .zm-flow-cross,
  .zm-flow-ekg {
    display: none;
  }
  .zm-flow-line { opacity: .06; }
  .zm-flow-line-dot { opacity: .10; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .zm-flow-ekg {
    animation: none;
    stroke-dashoffset: 0;
    opacity: .18;
  }
}


/* ══════════════════════════════════════════════════════
   v5.1.1 — COMPACT SECTION SPACING
   Target: ~50px între secțiuni, deci padding-top 48px
   ══════════════════════════════════════════════════════ */

body .zm-ed-hero { padding-bottom: 32px !important; padding-top: 24px !important; }

body .zm-cat-mosaic {
  padding-top: 48px !important;
  padding-bottom: 0 !important;
}

body .zm-mag-grid {
  padding-top: 48px !important;
  padding-bottom: 0 !important;
}

body .zm-feature {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
  margin: 48px 0 0 !important;
}

body .zm-dual {
  padding-top: 48px !important;
  padding-bottom: 0 !important;
}

body .zm-events-mod {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
  margin-top: 48px !important;
}

body .zm-video-mod {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
  margin-top: 0 !important;
}

body .zm-statement {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
  margin-top: 0 !important;
}

/* Section heads — marginul jos */
body .zm-sec-head {
  margin-bottom: 24px !important;
  padding-bottom: 12px !important;
}

/* Footer statement padding */
body .zm-footer-statement {
  padding: 56px 24px 48px !important;
}
body .zm-footer-inner {
  padding: 40px 24px 32px !important;
}

/* Mobile spacing — more compact */
@media (max-width: 639px) {
  body .zm-cat-mosaic,
  body .zm-mag-grid,
  body .zm-dual,
  body .zm-video-mod { padding-top: 36px !important; }

  body .zm-events-mod {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
    margin-top: 36px !important;
  }

  body .zm-feature {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
    margin: 36px 0 0 !important;
  }

  body .zm-statement {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  body .zm-footer-statement { padding: 40px 16px 32px !important; }
  body .zm-footer-inner { padding: 28px 16px 24px !important; }
}

/* ══════════════════════════════════════════════════════
   v5.1.1 — WARMER TITLES (less harsh black)
   ══════════════════════════════════════════════════════ */

/* Toate titlurile principale — ton mai cald, mai puțin negru-absolut */
body .zm-ed-lead-title,
body .zm-ed-lead-title a,
body .zm-ed-side-title,
body .zm-mag-card .zm-card-title,
body .zm-mag-card .zm-card-title a,
body .zm-mag-card-feat .zm-card-title,
body .zm-card-title,
body .zm-card-title a,
body .zm-sec-h,
body .zm-arc-feat-title,
body .zm-arc-feat-title a,
body .zm-arc-title,
body .zm-article-head h1,
body .zm-mini-title,
body .zm-mini-title a,
body .zm-num-title,
body .zm-event-title,
body .zm-statement-title,
body .zm-video-row-title {
  color: #1F1A14 !important;
}

/* La hover — titlurile devin violet ca până acum */
body .zm-card-title a:hover,
body .zm-mini-title a:hover,
body .zm-arc-feat-title a:hover,
body .zm-mag-card .zm-card-title a:hover {
  color: var(--zm-ac) !important;
}

/* Side titles în hero — folosesc culoare ușor mai deschisă pentru ierarhie */
body .zm-ed-side-title { color: #2D2820 !important; }


/* ══════════════════════════════════════════════════════
   v5.1.2 — HEADER REPARAT (simplificat)
   Eliminăm bara neagră de sus (era prea încărcată).
   Structură finală: o singură bară cu date | logo | actions
   ══════════════════════════════════════════════════════ */

/* Hide old top bar — no longer rendered, but in case of caching */
body .zm-hdr-top { display: none !important; }

/* Reset header */
body .zm-hdr {
  background: #fff !important;
  border-bottom: 1px solid var(--zm-bd) !important;
  position: relative !important;
  z-index: 50 !important;
}

/* Main bar — single row, 3 columns */
body .zm-hdr-inner {
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 18px 24px !important;
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  gap: 16px !important;
}

/* Left: date label */
.zm-hdr-left {
  display: flex;
  align-items: center;
  justify-self: start;
}

.zm-hdr-date {
  font-family: var(--zm-font-b);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--zm-t3);
  padding: 6px 12px;
  border: 1px solid var(--zm-bd);
  border-radius: 999px;
}

/* Logo — center */
body .zm-hdr-logo {
  justify-self: center !important;
  display: flex !important;
  align-items: center !important;
  text-decoration: none !important;
}

body .zm-hdr-logo img {
  height: 44px !important;
  width: auto !important;
  max-width: none !important;
  display: block !important;
}

/* Right actions */
body .zm-hdr-right {
  justify-self: end !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Nav — centrat sub bara principală */
body .zm-hdr-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  padding: 10px 24px 14px !important;
  border-top: 1px solid var(--zm-bd) !important;
  margin-top: 0 !important;
  flex-wrap: wrap !important;
  background: #fff;
}

body .zm-hdr-nav a {
  font-family: var(--zm-font-b) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--zm-t2) !important;
  text-decoration: none !important;
  padding: 7px 16px !important;
  border-radius: 999px !important;
  transition: all .15s !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

body .zm-hdr-nav a:hover {
  color: var(--zm-ac) !important;
  background: var(--zm-ac-light) !important;
}

body .zm-hdr-nav .zm-nav-active {
  color: var(--zm-ac) !important;
  background: var(--zm-ac-light) !important;
}

/* Hide hamburger on desktop */
body .zm-hdr-burger { display: none !important; }

@media (max-width: 900px) {
  body .zm-hdr-burger { display: inline-flex !important; }
  body .zm-hdr-nav { display: none !important; }
  body .zm-hdr-inner { padding: 12px 16px !important; }
  body .zm-hdr-logo img { height: 38px !important; }
  body .zm-hdr-date { display: none; }
  body .zm-hdr-inner { grid-template-columns: auto 1fr auto !important; }
  body .zm-hdr-left { display: none; }
}


/* ══════════════════════════════════════════════════════
   v5.1.3 — FOOTER LIGHT EDITORIAL
   Light cream background, editorial premium feel
   ══════════════════════════════════════════════════════ */

body .zm-footer {
  background: var(--zm-bg) !important;
  color: var(--zm-t2) !important;
  position: relative !important;
  z-index: 2 !important;
  margin-top: 0 !important;
  border-top: 1px solid var(--zm-bd) !important;
  overflow: hidden !important;
}

/* Top statement — light, generous */
body .zm-footer-statement {
  background: linear-gradient(180deg, var(--zm-bg) 0%, var(--zm-bg2) 100%) !important;
  padding: 80px 24px 64px !important;
  border-bottom: 1px solid var(--zm-bd) !important;
  position: relative;
}

body .zm-footer-statement::before {
  content: '' !important;
  position: absolute !important;
  top: -100px; right: -150px !important;
  width: 480px; height: 480px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(76,34,173,.06) 0%, transparent 70%) !important;
  pointer-events: none !important;
  z-index: 0;
}

body .zm-footer-statement::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,82,0,.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

body .zm-footer-statement-inner {
  max-width: 1280px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 48px !important;
  position: relative !important;
  z-index: 1 !important;
  flex-wrap: wrap !important;
}

/* Tagline — dark warm */
body .zm-footer-tagline {
  font-family: var(--zm-font-h) !important;
  font-size: clamp(28px, 4vw, 44px) !important;
  font-weight: 700 !important;
  line-height: 1.12 !important;
  color: #1F1A14 !important;
  margin: 0 !important;
  letter-spacing: -.5px !important;
  flex: 1 !important;
  min-width: 280px !important;
  text-wrap: balance;
}

body .zm-footer-tagline em {
  font-style: italic !important;
  font-weight: 500 !important;
  color: var(--zm-orange) !important;
}

/* Logo card — light, with violet accent border */
body .zm-footer-mark {
  display: flex !important;
  align-items: center !important;
  background: #fff !important;
  padding: 18px 28px !important;
  border-radius: 14px !important;
  border: 1px solid var(--zm-bd) !important;
  flex-shrink: 0 !important;
  box-shadow: 0 4px 18px rgba(76,34,173,.06);
  transition: all .2s;
}

body .zm-footer-mark:hover {
  border-color: rgba(76,34,173,.2);
  box-shadow: 0 8px 24px rgba(76,34,173,.12);
  transform: translateY(-2px);
}

body .zm-footer-mark .zm-footer-logo {
  height: 48px !important;
  width: auto !important;
  filter: none !important;
  display: block !important;
}

/* Columns area */
body .zm-footer-inner {
  background: var(--zm-bg) !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 64px 24px 48px !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 36px !important;
  position: relative;
  z-index: 1;
}

@media (min-width: 600px) {
  body .zm-footer-inner { grid-template-columns: repeat(2, 1fr) !important; gap: 40px !important; }
}

@media (min-width: 1024px) {
  body .zm-footer-inner {
    grid-template-columns: 1.4fr 1fr 1fr 1fr !important;
    gap: 48px !important;
  }
}

/* Column titles */
body .zm-footer-col-title {
  font-family: var(--zm-font-h) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 2.5px !important;
  color: var(--zm-ac) !important;
  margin: 0 0 18px !important;
  padding-bottom: 14px !important;
  border-bottom: 1.5px solid var(--zm-bd) !important;
  position: relative;
}

/* Decorative accent line under title */
body .zm-footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -1.5px;
  left: 0;
  width: 32px;
  height: 1.5px;
  background: var(--zm-ac);
}

/* Description */
body .zm-footer-desc {
  font-family: var(--zm-font-b) !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  color: var(--zm-t2) !important;
  margin: 0 0 16px !important;
}

body .zm-footer-loc {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 12px !important;
  color: var(--zm-t4) !important;
  font-weight: 600 !important;
  letter-spacing: .5px !important;
  margin: 0 !important;
  padding: 6px 12px;
  background: var(--zm-bg2);
  border-radius: 999px;
  border: 1px solid var(--zm-bd);
}

/* Links navigation */
body .zm-footer-col nav {
  display: flex !important;
  flex-direction: column !important;
  gap: 11px !important;
}

body .zm-footer-col nav a {
  font-family: var(--zm-font-b) !important;
  font-size: 14px !important;
  color: var(--zm-t2) !important;
  text-decoration: none !important;
  transition: color .15s, padding-left .2s !important;
  padding: 2px 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px;
  width: fit-content !important;
  position: relative;
}

body .zm-footer-col nav a::before {
  content: '→';
  opacity: 0;
  transition: all .2s;
  margin-right: -16px;
  color: var(--zm-ac);
  font-weight: 700;
}

body .zm-footer-col nav a:hover {
  color: var(--zm-ac) !important;
  padding-left: 18px !important;
  text-decoration: none !important;
}

body .zm-footer-col nav a:hover::before {
  opacity: 1;
  margin-right: 4px;
}

/* Social bar */
body .zm-footer-social-bar {
  background: var(--zm-bg2) !important;
  border-top: 1px solid var(--zm-bd) !important;
  border-bottom: 1px solid var(--zm-bd) !important;
  padding: 24px !important;
}

body .zm-footer-social-inner {
  max-width: 1280px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
}

body .zm-footer-social-label {
  font-family: var(--zm-font-b) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 2.5px !important;
  color: var(--zm-t3) !important;
}

body .zm-footer-social {
  display: flex !important;
  gap: 8px !important;
}

body .zm-social-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  background: #fff !important;
  color: var(--zm-t2) !important;
  border: 1.5px solid var(--zm-bd) !important;
  text-decoration: none !important;
  transition: all .18s cubic-bezier(.34, 1.3, .64, 1) !important;
}

body .zm-social-link:hover {
  background: var(--zm-ac) !important;
  color: #fff !important;
  border-color: var(--zm-ac) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 18px rgba(76,34,173,.25) !important;
  text-decoration: none !important;
}

/* Bottom bar */
body .zm-footer-bottom {
  background: #fff !important;
  border-top: 1px solid var(--zm-bd) !important;
  padding: 20px 24px !important;
}

body .zm-footer-bottom-inner {
  max-width: 1280px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
  font-size: 12px !important;
  color: var(--zm-t4) !important;
}

body .zm-footer-copy {
  margin: 0 !important;
  font-weight: 600;
  color: var(--zm-t3) !important;
}

body .zm-footer-disclaimer {
  margin: 0 !important;
  font-style: italic;
  color: var(--zm-t4) !important;
}

@media (max-width: 639px) {
  body .zm-footer-statement { padding: 48px 16px 40px !important; }
  body .zm-footer-statement-inner { gap: 24px !important; }
  body .zm-footer-mark { padding: 14px 22px !important; }
  body .zm-footer-mark .zm-footer-logo { height: 36px !important; }
  body .zm-footer-tagline { font-size: 26px !important; }
  body .zm-footer-inner { padding: 40px 16px 28px !important; gap: 28px !important; }
  body .zm-footer-bottom-inner { font-size: 11px !important; flex-direction: column !important; align-items: flex-start !important; gap: 6px !important; }
}


/* ══════════════════════════════════════════════════════
   v5.1.5 — Fix gap între imagine și titlu în featured card
   Cauza: align-content stretch împinge body-ul jos.
   ══════════════════════════════════════════════════════ */

@media (min-width: 1024px) {
  body .zm-mag-card-feat {
    align-content: start !important;
    align-items: start !important;
  }

  /* Body-ul featured stă lipit de imagine, nu se întinde jos */
  body .zm-mag-card-feat .zm-mag-card-body {
    align-self: start !important;
    margin-top: 0 !important;
  }

  /* Imaginea featured — aspect ratio mai compact ca să nu fie prea mare */
  body .zm-mag-card-feat .zm-mag-card-img-wrap {
    aspect-ratio: 16/10 !important;
  }
}


/* ════════════════════════════════════════════════════════
   v5.2.0 — MAJOR FIXES (audit complet UX)
   ════════════════════════════════════════════════════════ */

/* ── 1. HEADER NEW: logo stânga, nav centru ──────────── */
body .zm-hdr {
  background: #fff !important;
  border-bottom: 1px solid var(--zm-bd) !important;
  position: relative !important;
  z-index: 50 !important;
}

body .zm-hdr-inner {
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 14px 24px !important;
  display: flex !important;
  align-items: center !important;
  gap: 32px !important;
}

body .zm-hdr-logo {
  flex-shrink: 0 !important;
  justify-self: start !important;
}

body .zm-hdr-logo img {
  height: 44px !important;
  width: auto !important;
  max-width: none !important;
  display: block !important;
}

body .zm-hdr-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 1 !important;
  gap: 2px !important;
  padding: 0 !important;
  border-top: none !important;
  margin-top: 0 !important;
  background: transparent !important;
}

body .zm-hdr-nav a {
  font-family: var(--zm-font-b) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--zm-t2) !important;
  text-decoration: none !important;
  padding: 8px 14px !important;
  border-radius: 999px !important;
  transition: color .15s, background .15s !important;
  text-transform: uppercase !important;
  letter-spacing: .8px !important;
}

body .zm-hdr-nav a:hover {
  color: var(--zm-ac) !important;
  background: var(--zm-ac-light) !important;
  text-decoration: none !important;
}

body .zm-hdr-nav .zm-nav-active {
  color: var(--zm-ac) !important;
  background: var(--zm-ac-light) !important;
}

body .zm-hdr-right {
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

body .zm-hdr-burger { display: none !important; }

@media (max-width: 980px) {
  body .zm-hdr-nav { display: none !important; }
  body .zm-hdr-burger { display: inline-flex !important; }
  body .zm-hdr-inner { padding: 12px 16px !important; }
  body .zm-hdr-logo img { height: 36px !important; }
}

/* Hide tot old header parts (safety) */
body .zm-hdr-top,
body .zm-hdr-date,
body .zm-hdr-date-line,
body .zm-hdr-tagline,
body .zm-hdr-edition,
body .zm-hdr-search-l,
body .zm-hdr-left { display: none !important; }

/* ── 2. NO UNDERLINE animations on titles ────────────── */
body .zm-ed-lead-title a,
body .zm-ed-lead-title a:hover {
  background-image: none !important;
  background-size: 0 !important;
  background: transparent !important;
  text-decoration: none !important;
  border-bottom: none !important;
}

body .zm-card-title a,
body .zm-card-title a:hover,
body .zm-mag-card .zm-card-title a,
body .zm-mag-card .zm-card-title a:hover,
body .zm-arc-feat-title a,
body .zm-arc-feat-title a:hover,
body .zm-mini-title a,
body .zm-mini-title a:hover {
  text-decoration: none !important;
  border-bottom: none !important;
  background-image: none !important;
}

/* Hover doar schimbă culoarea */
body .zm-ed-lead-title a:hover,
body .zm-card-title a:hover,
body .zm-mag-card .zm-card-title a:hover,
body .zm-arc-feat-title a:hover,
body .zm-mini-title a:hover {
  color: var(--zm-ac) !important;
}

/* ── 3. SPACING MUCH TIGHTER between sections ────────── */
body .zm-ed-hero { padding-top: 24px !important; padding-bottom: 24px !important; }

body .zm-cat-mosaic,
body .zm-mag-grid,
body .zm-dual,
body .zm-video-mod {
  padding-top: 36px !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
}

body .zm-feature {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
  margin: 36px 0 0 !important;
}

body .zm-events-mod {
  padding-top: 36px !important;
  padding-bottom: 36px !important;
  margin-top: 36px !important;
}

body .zm-statement {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
  margin-top: 0 !important;
}

/* Section heads — mai puțin spațiu */
body .zm-sec-head {
  margin-bottom: 20px !important;
  padding-bottom: 10px !important;
}

@media (max-width: 639px) {
  body .zm-cat-mosaic,
  body .zm-mag-grid,
  body .zm-dual,
  body .zm-video-mod { padding-top: 28px !important; }

  body .zm-events-mod {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
    margin-top: 28px !important;
  }

  body .zm-feature {
    padding: 40px 16px !important;
    margin: 28px 0 0 !important;
  }

  body .zm-statement {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}

/* ── 4. MAGAZINE GRID — restructurat ca să nu lase spațiu mort ── */
/* Renunțăm la grid-row: span 2 — featured ocupă doar 2 coloane, restul curge natural */
@media (min-width: 1024px) {
  body .zm-mag-card-feat {
    grid-column: span 2 !important;
    grid-row: span 1 !important;  /* NU mai e span 2 */
    align-self: start !important;
  }

  body .zm-mag-card-feat .zm-mag-card-img-wrap {
    aspect-ratio: 16/9 !important;
  }
}

/* ── 5. EDITORIAL FEATURE — image MULT mai vizibilă ──── */
body .zm-feature-bg-img {
  filter: brightness(.6) saturate(1.05) !important;  /* mai luminos */
  transform: scale(1.02) !important;
}

body .zm-feature-overlay {
  background: linear-gradient(135deg, rgba(13,12,10,.55) 0%, rgba(13,12,10,.35) 100%) !important;
}

/* ── 6. EVENTS section — fundal alb să nu se piardă ─── */
body .zm-events-mod {
  background: var(--zm-bg) !important;
}

body .zm-events-mod::before { opacity: .3 !important; }


/* ════════════════════════════════════════════════════════
   v5.2.0 — ARCHIVE / CATEGORY EDITORIAL
   ════════════════════════════════════════════════════════ */

.zm-arc-ed-hero {
  background: var(--zm-bg);
  border-bottom: 1px solid var(--zm-bd);
  padding: 40px 24px 32px;
}

.zm-arc-ed-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.zm-arc-ed-kicker {
  font-family: var(--zm-font-b);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--zm-ac);
  margin: 0 0 10px;
}

.zm-arc-ed-title {
  font-family: var(--zm-font-h) !important;
  font-size: clamp(32px, 5vw, 56px) !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
  letter-spacing: -.8px !important;
  color: #1F1A14 !important;
  margin: 0 0 12px !important;
  text-wrap: balance;
}

.zm-arc-ed-desc {
  font-family: var(--zm-font-b);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.6;
  color: var(--zm-t2);
  margin: 0 0 14px;
  max-width: 640px;
}

.zm-arc-ed-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.zm-arc-ed-count {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: var(--zm-bg2);
  border: 1px solid var(--zm-bd);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--zm-t3);
  letter-spacing: .3px;
}

@media (max-width: 639px) {
  .zm-arc-ed-hero { padding: 28px 16px 24px; }
  .zm-arc-ed-title { font-size: 28px !important; }
}

/* Subcategorii bar */
body .zm-arc-subcats {
  border-bottom: 1px solid var(--zm-bd);
  background: var(--zm-bg);
}

body .zm-arc-subcats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

body .zm-arc-subcat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--zm-bg2);
  border: 1.5px solid var(--zm-bd);
  border-radius: 999px;
  color: var(--zm-t2);
  font-family: var(--zm-font-b);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .15s;
  min-height: 38px;
}

body .zm-arc-subcat-pill:hover {
  background: var(--zm-ac-light);
  border-color: rgba(76,34,173,.25);
  color: var(--zm-ac);
  text-decoration: none;
}

body .zm-arc-subcat-count {
  background: rgba(0,0,0,.06);
  border-radius: 999px;
  padding: 1px 7px;
  font-size: 11px;
  color: var(--zm-t3);
}

/* Archive wrap */
.zm-arc-wrap {
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 40px 24px 64px !important;
}

@media (max-width: 639px) {
  .zm-arc-wrap { padding: 28px 16px 48px !important; }
}

/* Featured article — editorial style */
.zm-arc-ed-feat {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--zm-bd);
}

@media (min-width: 768px) {
  .zm-arc-ed-feat {
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: center;
  }
}

.zm-arc-ed-feat-img {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16/10;
  background: var(--zm-bg3);
}

.zm-arc-ed-feat-img-tag {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.25, .46, .45, .94);
}
.zm-arc-ed-feat:hover .zm-arc-ed-feat-img-tag { transform: scale(1.03); }

.zm-arc-ed-feat-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.zm-arc-ed-feat-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.zm-arc-ed-feat-title {
  font-family: var(--zm-font-h) !important;
  font-size: clamp(22px, 2.8vw, 34px) !important;
  font-weight: 700 !important;
  line-height: 1.18 !important;
  letter-spacing: -.4px !important;
  color: #1F1A14 !important;
  margin: 0 !important;
  text-wrap: balance;
}

.zm-arc-ed-feat-title a {
  color: #1F1A14 !important;
  text-decoration: none !important;
}

.zm-arc-ed-feat-title a:hover {
  color: var(--zm-ac) !important;
}

.zm-arc-ed-feat-excerpt {
  font-family: var(--zm-font-b);
  font-size: 15px;
  line-height: 1.65;
  color: var(--zm-t2);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.zm-arc-ed-feat-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  background: #1F1A14;
  color: #fff;
  border-radius: 999px;
  font-family: var(--zm-font-b);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  align-self: flex-start;
  transition: all .2s;
  min-height: 44px;
}

.zm-arc-ed-feat-cta:hover {
  background: var(--zm-ac);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

/* Grid restul articolelor — 3 coloane editorial */
.zm-arc-ed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .zm-arc-ed-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .zm-arc-ed-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

/* ASCUNDE elementele vechi NEFOLOSITE pe arhive */
body.archive .zm-arc-hero,
body.category .zm-arc-hero,
body.search .zm-arc-hero,
body.archive .zm-arc-featured,
body.category .zm-arc-featured,
body.archive .zm-arc-grid,
body.category .zm-arc-grid,
body.archive .zm-arc-hero-wave,
body.category .zm-arc-hero-wave { display: none !important; }

/* Ascunde flowing background pe arhive (e doar pe homepage) */
body.archive .zm-flow-bg,
body.category .zm-flow-bg,
body.search .zm-flow-bg,
body.error404 .zm-flow-bg { display: none !important; }


/* ════════════════════════════════════════════════════════
   v5.2.1 — MAGAZINE EDITORIAL LAYOUT (rewrite)
   Featured wide cu image+body lateral, restul în 3-col grid jos
   ZERO conflict de înălțimi între coloane.
   ════════════════════════════════════════════════════════ */

body .zm-mag-ed {
  padding-top: 36px !important;
  padding-bottom: 0 !important;
}

/* Featured wide — layout 1.4fr/1fr image | body */
.zm-mag-ed-feat {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--zm-bd);
  align-items: start;
}

@media (min-width: 768px) {
  .zm-mag-ed-feat {
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: center;
  }
}

.zm-mag-ed-feat-img {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16/10;
  background: var(--zm-bg3);
}

.zm-mag-ed-feat-img-tag {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .7s cubic-bezier(.25, .46, .45, .94);
}

.zm-mag-ed-feat:hover .zm-mag-ed-feat-img-tag {
  transform: scale(1.03);
}

.zm-mag-ed-feat-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: center;
}

.zm-mag-ed-feat-title {
  font-family: var(--zm-font-h) !important;
  font-size: clamp(22px, 2.6vw, 32px) !important;
  font-weight: 700 !important;
  line-height: 1.18 !important;
  letter-spacing: -.4px !important;
  color: #1F1A14 !important;
  margin: 0 !important;
  text-wrap: balance;
}

.zm-mag-ed-feat-title a {
  color: #1F1A14 !important;
  text-decoration: none !important;
  background: none !important;
  background-image: none !important;
}

.zm-mag-ed-feat-title a:hover {
  color: var(--zm-ac) !important;
  text-decoration: none !important;
}

.zm-mag-ed-feat-excerpt {
  font-family: var(--zm-font-b);
  font-size: 15px;
  line-height: 1.65;
  color: var(--zm-t2);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.zm-mag-ed-feat-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  background: #1F1A14;
  color: #fff;
  border-radius: 999px;
  font-family: var(--zm-font-b);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  align-self: flex-start;
  transition: all .2s;
  min-height: 44px;
  margin-top: 4px;
}

.zm-mag-ed-feat-cta:hover {
  background: var(--zm-ac);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

/* Grid restul articolelor — 3 col, înălțimi naturale */
.zm-mag-ed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;  /* CRUCIAL: cardurile NU se întind */
}

@media (min-width: 640px) {
  .zm-mag-ed-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (min-width: 1024px) {
  .zm-mag-ed-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 28px;
  }
}

/* ASCUNDE vechiul layout — nu mai e folosit */
body .zm-mag-grid-list { display: none !important; }

/* Mobile compact pentru featured */
@media (max-width: 767px) {
  .zm-mag-ed-feat { gap: 16px; padding-bottom: 28px; margin-bottom: 28px; }
  .zm-mag-ed-feat-title { font-size: 22px !important; }
  .zm-mag-ed-feat-cta { font-size: 12px; padding: 9px 16px; }
}


/* ════════════════════════════════════════════════════════
   v5.2.2 — EXPLOREAZĂ editorial tiles
   ════════════════════════════════════════════════════════ */

.zm-exp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px)  { .zm-exp-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .zm-exp-grid { grid-template-columns: repeat(3,1fr); } }

.zm-exp-tile {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 20px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  min-height: 140px;
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease;
}

.zm-exp-tile:hover {
  transform: translateY(-3px);
  text-decoration: none;
}

/* ── Paleta culori ── */
.zm-exp-v  { background: #F0EBFF; border-color: #D0C5F5; }
.zm-exp-o  { background: #FFF3EE; border-color: #FFD4C0; }
.zm-exp-t  { background: #E4F7F2; border-color: #B2E8DA; }
.zm-exp-b  { background: #EBF3FF; border-color: #B8D4F8; }
.zm-exp-pk { background: #FFF0F6; border-color: #F5C6D9; }
.zm-exp-am { background: #FEF6E4; border-color: #F9D98A; }

/* kicker = nr articole */
.zm-exp-kicker {
  font-family: var(--zm-font-b);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}
.zm-exp-v  .zm-exp-kicker { color: #6B3FD4; }
.zm-exp-o  .zm-exp-kicker { color: #C94F00; }
.zm-exp-t  .zm-exp-kicker { color: #0F8060; }
.zm-exp-b  .zm-exp-kicker { color: #1860B5; }
.zm-exp-pk .zm-exp-kicker { color: #C03870; }
.zm-exp-am .zm-exp-kicker { color: #9A6200; }

/* Titlu categorie — Lora 500, niciodată 700 */
.zm-exp-name {
  font-family: var(--zm-font-h);
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500 !important;  /* MAX 500 conform brief */
  line-height: 1.25;
  margin: 0;
  display: block;
}
.zm-exp-v  .zm-exp-name { color: #3A1A8A; }
.zm-exp-o  .zm-exp-name { color: #7A2800; }
.zm-exp-t  .zm-exp-name { color: #084830; }
.zm-exp-b  .zm-exp-name { color: #0A3870; }
.zm-exp-pk .zm-exp-name { color: #721040; }
.zm-exp-am .zm-exp-name { color: #5A3800; }

/* Teaser — titlu ultim articol */
.zm-exp-teaser {
  font-family: var(--zm-font-b);
  font-size: 12px;
  line-height: 1.5;
  margin: 2px 0 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.zm-exp-v  .zm-exp-teaser { color: #5C3AB0; }
.zm-exp-o  .zm-exp-teaser { color: #9B4010; }
.zm-exp-t  .zm-exp-teaser { color: #165E40; }
.zm-exp-b  .zm-exp-teaser { color: #1A4A8A; }
.zm-exp-pk .zm-exp-teaser { color: #9B2555; }
.zm-exp-am .zm-exp-teaser { color: #7A4A00; }

/* Footer: label + arrow */
.zm-exp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.zm-exp-label {
  font-family: var(--zm-font-b);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.65);
}
.zm-exp-v  .zm-exp-label { color: #4c22ad; }
.zm-exp-o  .zm-exp-label { color: #C94F00; }
.zm-exp-t  .zm-exp-label { color: #0F8060; }
.zm-exp-b  .zm-exp-label { color: #1860B5; }
.zm-exp-pk .zm-exp-label { color: #C03870; }
.zm-exp-am .zm-exp-label { color: #9A6200; }

.zm-exp-arr {
  opacity: .55;
  transition: transform .18s ease, opacity .18s ease;
  flex-shrink: 0;
}
.zm-exp-tile:hover .zm-exp-arr { transform: translateX(4px); opacity: 1; }

.zm-exp-v  .zm-exp-arr { stroke: #4c22ad; }
.zm-exp-o  .zm-exp-arr { stroke: #ff5200; }
.zm-exp-t  .zm-exp-arr { stroke: #0F8060; }
.zm-exp-b  .zm-exp-arr { stroke: #1860B5; }
.zm-exp-pk .zm-exp-arr { stroke: #C03870; }
.zm-exp-am .zm-exp-arr { stroke: #9A6200; }

/* ════════════════════════════════════════════════════════
   v5.2.2 — Lora 500 pe toate heading-urile (max 600)
   ════════════════════════════════════════════════════════ */

body h1,
body h2,
body h3,
body h4,
body .zm-ed-lead-title,
body .zm-sec-h,
body .zm-arc-ed-title,
body .zm-mag-ed-feat-title,
body .zm-arc-ed-feat-title,
body .zm-card-title,
body .zm-num-title,
body .zm-event-title,
body .zm-video-hero-title,
body .zm-statement-title,
body .zm-footer-tagline,
body .zm-feature-quote {
  font-family: var(--zm-font-h) !important;
  font-weight: 500 !important;
}

/* Excepție: lead title și statement pot fi 600 pentru impact */
body .zm-ed-lead-title,
body .zm-statement-title,
body .zm-arc-ed-title {
  font-weight: 600 !important;
}

/* Niciodată mai mult de 600 pe serif */
body [class*="zm-"] h1,
body [class*="zm-"] h2,
body [class*="zm-"] h3 {
  font-weight: 500 !important;
}


/* ════════════════════════════════════════════════════════
   v5.2.3 — Heading color #1a3d30 (forest green warm dark)
   ════════════════════════════════════════════════════════ */

:root {
  --zm-heading-clr: #1a3d30;
}

body h1, body h2, body h3, body h4,
body .zm-ed-lead-title,
body .zm-ed-lead-title a,
body .zm-ed-side-title,
body .zm-ed-side-title a,
body .zm-sec-h,
body .zm-arc-ed-title,
body .zm-arc-ed-feat-title,
body .zm-arc-ed-feat-title a,
body .zm-mag-ed-feat-title,
body .zm-mag-ed-feat-title a,
body .zm-card-title,
body .zm-card-title a,
body .zm-num-title,
body .zm-num-title a,
body .zm-mini-title,
body .zm-mini-title a,
body .zm-event-title,
body .zm-video-hero-title,
body .zm-video-row-title,
body .zm-statement-title,
body .zm-feature-quote,
body .zm-footer-tagline {
  color: #1a3d30 !important;
}

/* La hover — rămân violet ca accent */
body .zm-ed-lead-title a:hover,
body .zm-card-title a:hover,
body .zm-num-title a:hover,
body .zm-mini-title a:hover,
body .zm-arc-ed-feat-title a:hover,
body .zm-mag-ed-feat-title a:hover {
  color: var(--zm-ac) !important;
}

/* Footer tagline em italic (mai aproape) */
body .zm-footer-tagline em { color: var(--zm-orange) !important; }

/* Statement title — forest green #1a3d30 + em orange */
body .zm-statement-title em { color: var(--zm-orange) !important; }

/* Editorial feature quote — alb pe fundal întunecat */
body .zm-feature-quote { color: #fff !important; }

/* Explorează tile names — culori proprii ale tile-urilor, nu override cu forest green */
body .zm-exp-v  .zm-exp-name { color: #3A1A8A !important; }
body .zm-exp-o  .zm-exp-name { color: #7A2800 !important; }
body .zm-exp-t  .zm-exp-name { color: #084830 !important; }
body .zm-exp-b  .zm-exp-name { color: #0A3870 !important; }
body .zm-exp-pk .zm-exp-name { color: #721040 !important; }
body .zm-exp-am .zm-exp-name { color: #5A3800 !important; }

/* --zm-t1 update: toate variabilele care referesc negrul curat */
body { --zm-t1: #1a3d30; }


/* ════════════════════════════════════════════════════════
   v5.2.4 — CATEGORY / ARCHIVE layout fix (edge-to-edge)
   Asigurăm că .zm-arc-ed-hero și .zm-arc-wrap au max-width
   și padding chiar dacă GeneratePress injectează containere proprii
   ════════════════════════════════════════════════════════ */

/* Override orice container GP care taie padding-ul */
body.category .inside-page-header,
body.archive .inside-page-header,
body.search .inside-page-header { display: none !important; }

/* Breadcrumb — aliniere cu layout-ul nostru */
body.category .zm-breadcrumb,
body.archive  .zm-breadcrumb,
body.search   .zm-breadcrumb {
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 10px 24px !important;
}

/* Hero section — padding și max-width garantate */
body .zm-arc-ed-hero {
  padding: 40px 24px 32px !important;
  background: var(--zm-bg) !important;
  border-bottom: 1px solid var(--zm-bd) !important;
}

body .zm-arc-ed-inner {
  max-width: 1280px !important;
  margin: 0 auto !important;
}

body .zm-arc-wrap {
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 36px 24px 56px !important;
}

/* Featured article pe category — asigurăm layout grid */
body .zm-arc-ed-feat {
  display: grid !important;
  margin-bottom: 40px !important;
  padding-bottom: 32px !important;
  border-bottom: 1px solid var(--zm-bd) !important;
  grid-template-columns: 1fr !important;
  gap: 20px !important;
  align-items: start !important;
}

@media (min-width: 768px) {
  body .zm-arc-ed-feat {
    grid-template-columns: 1.4fr 1fr !important;
    gap: 32px !important;
    align-items: center !important;
  }
}

body .zm-arc-ed-feat-img {
  display: block !important;
  overflow: hidden !important;
  border-radius: 8px !important;
  aspect-ratio: 16/10 !important;
}

body .zm-arc-ed-feat-img-tag {
  width: 100% !important; height: 100% !important;
  object-fit: cover !important; display: block !important;
}

/* Grid articole — 3 col pe desktop */
body .zm-arc-ed-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 28px !important;
  align-items: start !important;
}

@media (min-width: 640px) {
  body .zm-arc-ed-grid { grid-template-columns: repeat(2,1fr) !important; }
}

@media (min-width: 1024px) {
  body .zm-arc-ed-grid { grid-template-columns: repeat(3,1fr) !important; gap: 32px 28px !important; }
}

/* Titluri pe category pages */
body .zm-arc-ed-title {
  font-family: var(--zm-font-h) !important;
  font-size: clamp(32px, 5vw, 52px) !important;
  font-weight: 600 !important;
  line-height: 1.08 !important;
  letter-spacing: -.6px !important;
  color: #1a3d30 !important;
  margin: 0 0 10px !important;
}

body .zm-arc-ed-kicker {
  font-family: var(--zm-font-b);
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 2.5px !important;
  color: var(--zm-ac) !important;
  margin: 0 0 8px !important;
  display: block !important;
}

body .zm-arc-ed-desc {
  font-size: clamp(14px, 1.5vw, 16px) !important;
  line-height: 1.65 !important;
  color: var(--zm-t2) !important;
  margin: 0 0 14px !important;
}

body .zm-arc-ed-count {
  display: inline-flex !important;
  align-items: center !important;
  padding: 5px 12px !important;
  background: var(--zm-bg2) !important;
  border: 1px solid var(--zm-bd) !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: var(--zm-t3) !important;
}

/* Mobile */
@media (max-width: 639px) {
  body .zm-arc-ed-hero { padding: 24px 16px 20px !important; }
  body .zm-arc-wrap { padding: 24px 16px 40px !important; }
}

