/* ============================================================
   News Portal — magazine / Zoomit-grade editorial surface
   Clean · Image-first · Readable · RTL
   ============================================================ */

:root {
  --nz-ink: #0f1419;
  --nz-navy: #0a1628;
  --nz-blue: #0b4fff;
  --nz-gold: #b8923a;
  --nz-mute: #6b7280;
  --nz-soft: #3d4654;
  --nz-line: rgba(10, 22, 40, 0.09);
  --nz-paper: #f6f8fb;
  --nz-white: #ffffff;
}

.nz-mast__tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem 0.55rem;
  flex: 1 1 380px;
  min-width: min(360px, 100%);
}

.nz-livepill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--nz-line);
  background: #fff;
  font-size: 0.7rem;
  color: var(--nz-soft);
  white-space: nowrap;
}

.nz-livepill svg {
  width: 16px;
  height: 16px;
  color: var(--nz-blue);
  overflow: visible;
}

.nz-pulse-core {
  animation: nzPulseCore 1.6s ease-in-out infinite;
}

.nz-pulse-ring {
  transform-origin: center;
  animation: nzPulseRing 2.2s ease-out infinite;
}

@keyframes nzPulseCore {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes nzPulseRing {
  0% { transform: scale(0.8); opacity: 0.7; }
  100% { transform: scale(1.35); opacity: 0; }
}

.nz-density {
  display: inline-flex;
  gap: 0.3rem;
  margin-inline-start: auto;
}

.nz-density button {
  border: 1px solid var(--nz-line);
  background: #fff;
  border-radius: 10px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--nz-mute);
}

.nz-density button.is-active,
.nz-density button:hover {
  color: var(--nz-blue);
  border-color: rgba(11, 79, 255, 0.28);
  background: #e8eeff;
}

.nz-density button svg {
  width: 15px;
  height: 15px;
}

.nz-main.is-compact .nz-grid {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1100px) {
  .nz-main.is-compact .nz-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .nz-main.is-compact .nz-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Page shell ---------- */
.nz-page {
  background:
    radial-gradient(90% 50% at 100% 0%, rgba(11, 79, 255, 0.05), transparent 55%),
    linear-gradient(180deg, #fafbfc 0%, #f3f6fa 40%, #fafbfc 100%);
  min-height: 100vh;
}

.nz-wrap {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.nz-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(250, 251, 252, 0.86);
  border-bottom: 1px solid var(--nz-line);
}

.nz-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.nz-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--nz-ink);
  text-decoration: none;
  font-weight: 700;
  font-family: "Syne", "Vazirmatn", sans-serif;
}

.nz-brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nz-brand em {
  font-style: normal;
  color: var(--nz-blue);
}

.nz-topbar__nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1rem;
  flex-wrap: wrap;
}

.nz-topbar__nav a {
  color: var(--nz-mute);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
}

.nz-topbar__nav a:hover,
.nz-topbar__nav a.is-on {
  color: var(--nz-blue);
}

/* ---------- Masthead ---------- */
.nz-mast {
  padding: 1.25rem 0 0.85rem;
}

.nz-mast__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.1rem;
  flex-wrap: wrap;
}

.nz-mast__title {
  flex: 0 1 auto;
  min-width: min(220px, 100%);
}

.nz-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--nz-blue);
  margin: 0 0 0.3rem;
}

.nz-kicker svg {
  width: 14px;
  height: 14px;
}

.nz-mast h1 {
  margin: 0;
  font-family: "Syne", "Vazirmatn", sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 800;
  color: var(--nz-navy);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.nz-search-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  flex: 1 1 280px;
  min-width: min(280px, 100%);
}

.nz-search {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex: 1 1 180px;
  min-width: 160px;
  padding: 0.5rem 0.75rem;
  border-radius: 12px;
  border: 1px solid var(--nz-line);
  background: var(--nz-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nz-search:focus-within {
  border-color: rgba(11, 79, 255, 0.35);
  box-shadow: 0 0 0 3px rgba(11, 79, 255, 0.08);
}

.nz-search svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--nz-blue);
}

.nz-search input {
  border: 0;
  outline: 0;
  width: 100%;
  background: transparent;
  font-family: "Vazirmatn", sans-serif;
  font-size: 0.82rem;
  color: var(--nz-ink);
}

.nz-search input::placeholder {
  color: #9aa3af;
}

.nz-search-adv {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.nz-search-adv select {
  border: 1px solid var(--nz-line);
  border-radius: 10px;
  padding: 0.45rem 0.6rem;
  font: inherit;
  font-size: 0.74rem;
  background: #fff;
  color: var(--nz-soft);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nz-search-adv select:hover {
  border-color: rgba(11, 79, 255, 0.28);
  background: #f7f9ff;
}

.nz-search-adv button {
  border: 1px solid var(--nz-line);
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  background: #fff;
  color: var(--nz-blue);
  cursor: pointer;
  white-space: nowrap;
  transition: 0.2s ease;
}

.nz-search-adv button:hover {
  background: #e8eeff;
  transform: translateY(-1px);
}

.nz-livepill {
  order: 3;
}

@media (max-width: 720px) {
  .nz-mast__tools {
    justify-content: stretch;
  }
  .nz-search-panel {
    width: 100%;
  }
  .nz-livepill {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- Filters ---------- */
.nz-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.85rem 0 1.1rem;
}

.nz-filters button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  border: 1px solid var(--nz-line);
  background: var(--nz-white);
  color: var(--nz-mute);
  border-radius: 999px;
  padding: 0.4rem 0.78rem;
  font-family: "Vazirmatn", sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.22s ease, border-color 0.22s ease, background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.nz-filters button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 79, 255, 0.1), rgba(15, 159, 110, 0.1));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.nz-filters button > * {
  position: relative;
  z-index: 1;
}

.nz-filters button .nz-ico {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #f1f5f9;
  color: inherit;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.nz-filters button .nz-ico svg {
  width: 13px;
  height: 13px;
}

.nz-filters button:hover {
  border-color: rgba(11, 79, 255, 0.3);
  color: var(--nz-blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -18px rgba(11, 79, 255, 0.55);
}

.nz-filters button:hover::before {
  opacity: 1;
}

.nz-filters button:hover .nz-ico {
  background: rgba(11, 79, 255, 0.12);
  color: var(--nz-blue);
  transform: scale(1.08) rotate(-4deg);
}

.nz-filters button.is-active {
  background: linear-gradient(135deg, #e8eeff, #e7f8f1);
  border-color: rgba(11, 79, 255, 0.32);
  color: var(--nz-blue);
  box-shadow: 0 8px 18px -16px rgba(11, 79, 255, 0.5);
}

.nz-filters button.is-active .nz-ico {
  background: rgba(11, 79, 255, 0.14);
  color: var(--nz-blue);
}

.nz-filters__count {
  font-size: 0.68rem;
  opacity: 0.7;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

/* ---------- Layout grid ---------- */
.nz-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 1.5rem;
  padding-bottom: 3.5rem;
  align-items: start;
}

@media (max-width: 980px) {
  .nz-layout {
    grid-template-columns: 1fr;
  }
}

.nz-main {
  display: grid;
  gap: 1.35rem;
}

/* ---------- Spotlight (featured) ---------- */
.nz-spot {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 0.85rem;
  min-height: 420px;
}

@media (max-width: 820px) {
  .nz-spot {
    grid-template-columns: 1fr;
    min-height: 0;
  }
}

.nz-lead {
  position: relative;
  display: block;
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;
  min-height: 420px;
  text-decoration: none;
  color: inherit;
  background: var(--nz-navy);
  box-shadow: 0 24px 48px -32px rgba(10, 22, 40, 0.45);
}

.nz-lead__media {
  position: absolute;
  inset: 0;
}

.nz-lead__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.7s ease;
}

.nz-lead:hover .nz-lead__media img {
  transform: scale(1.07);
}

.nz-lead__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 13, 24, 0.05) 45%, rgba(7, 13, 24, 0.55) 70%, #070d18 100%);
  pointer-events: none;
  z-index: 1;
}

.nz-lead__body {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  max-height: 28%;
  padding: 0.85rem 1.15rem 1rem;
  z-index: 2;
  color: #fff;
  background: #070d18;
  border: 0;
  border-radius: 0;
  overflow: hidden;
}

.nz-lead h2 {
  margin: 0.35rem 0 0.25rem;
  font-family: "Syne", "Vazirmatn", sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  line-height: 1.35;
  font-weight: 800;
  text-wrap: balance;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nz-lead p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  line-height: 1.5;
  max-width: 40rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nz-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.75rem;
  margin-top: 0.45rem;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.85);
}

.nz-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgba(11, 79, 255, 0.92);
  color: #fff;
}

.nz-chip--gold {
  background: rgba(184, 146, 58, 0.95);
}

.nz-chip--soft {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.nz-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.nz-meta svg {
  width: 13px;
  height: 13px;
  opacity: 0.9;
}

/* Newsletter widget — creative, light, mature */
.nz-widget--sub {
  position: relative;
  overflow: hidden;
  border-color: rgba(15, 159, 110, 0.2);
  background: #fff;
}

.nz-widget--sub::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #0b4fff, #0f9f6e);
}

.nz-sub-hero {
  padding: 1rem 1rem 0.35rem;
  display: grid;
  gap: 0.35rem;
}

.nz-sub-hero__mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(15, 159, 110, 0.16), rgba(11, 79, 255, 0.1));
  color: #0f9f6e;
  margin-bottom: 0.2rem;
}

.nz-sub-hero__mark svg {
  width: 20px;
  height: 20px;
}

.nz-sub-hero strong {
  font-size: 0.95rem;
  color: var(--nz-navy);
}

.nz-sub-hero p,
.nz-widget--sub > p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--nz-mute, #6b7280);
  line-height: 1.65;
}

.nz-sub-form {
  display: grid;
  gap: 0.5rem;
  position: relative;
  padding: 0.75rem 1rem 1rem;
}

.nz-sub-form input[type="email"],
.nz-sub-form input[type="tel"] {
  width: 100%;
  border: 1px solid var(--nz-line, rgba(10,22,40,.1));
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  font: inherit;
  background: #f8fafc;
}

.nz-sub-form input:focus {
  outline: 2px solid rgba(15, 159, 110, 0.25);
  background: #fff;
}

.nz-sub-form button {
  border: none;
  border-radius: 12px;
  padding: 0.72rem 1rem;
  background: linear-gradient(135deg, #0f9f6e, #12b981);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nz-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
}

.nz-sub-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.74rem;
  color: var(--nz-mute, #6b7280);
  line-height: 1.5;
  cursor: pointer;
}

.nz-sub-consent input {
  margin-top: 0.15rem;
  accent-color: #0f9f6e;
}

.fx-press__consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--mute, #6b7280);
  line-height: 1.5;
  cursor: pointer;
}

.fx-press__consent input {
  margin-top: 0.15rem;
  accent-color: #0f9f6e;
}

.nz-side-stack {
  display: grid;
  gap: 0.75rem;
}

.nz-side-card {
  display: grid;
  /* RTL: first col (media) on the right — ~3/4 image, ~1/4 text */
  grid-template-columns: minmax(0, 3fr) minmax(96px, 1fr);
  gap: 0.55rem;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  padding: 0.4rem;
  border-radius: 16px;
  border: 1px solid var(--nz-line);
  background: var(--nz-white);
  transition: 0.25s ease;
  min-height: 128px;
}

.nz-side-card:hover {
  border-color: rgba(11, 79, 255, 0.28);
  box-shadow: 0 14px 28px -24px rgba(10, 22, 40, 0.35);
  transform: translateY(-2px);
}

.nz-side-card__media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #e8eef8;
  min-height: 112px;
}

.nz-side-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.nz-side-card:hover .nz-side-card__media img {
  transform: scale(1.06);
}

.nz-side-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.15rem 0.2rem;
  min-width: 0;
}

.nz-side-card__cat {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--nz-blue);
}

.nz-side-card h3 {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--nz-ink);
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nz-side-card time {
  font-size: 0.64rem;
  color: var(--nz-mute);
}

/* ---------- Section labels ---------- */
.nz-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0.35rem 0 0.15rem;
}

.nz-sec h2 {
  margin: 0;
  font-size: 1.05rem;
  font-family: "Syne", "Vazirmatn", sans-serif;
  color: var(--nz-navy);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.nz-sec h2 svg {
  width: 18px;
  height: 18px;
  color: var(--nz-blue);
}

.nz-sec a {
  font-size: 0.78rem;
  color: var(--nz-blue);
  text-decoration: none;
  font-weight: 600;
}

/* ---------- Magazine grid ---------- */
.nz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.95rem;
}

@media (max-width: 900px) {
  .nz-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .nz-grid {
    grid-template-columns: 1fr;
  }
}

.nz-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: 18px;
  border: 1px solid var(--nz-line);
  background: var(--nz-white);
  overflow: hidden;
  transition: 0.3s ease;
  height: 100%;
}

.nz-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 79, 255, 0.25);
  box-shadow: 0 22px 40px -28px rgba(10, 22, 40, 0.35);
}

.nz-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #e8eef8, #f7f9fc);
}

.nz-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.nz-card:hover .nz-card__media img {
  transform: scale(1.05);
}

.nz-card__badge {
  position: absolute;
  top: 0.7rem;
  inset-inline-start: 0.7rem;
  z-index: 1;
}

.nz-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.95rem 1rem 1.1rem;
  flex: 1;
}

.nz-card__cat {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--nz-blue);
}

.nz-card h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--nz-ink);
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nz-card p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--nz-mute);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nz-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.55rem;
  border-top: 1px dashed rgba(10, 22, 40, 0.08);
  font-size: 0.7rem;
  color: var(--nz-mute);
}

.nz-card__foot span {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
}

.nz-card__foot svg {
  width: 12px;
  height: 12px;
}

/* ---------- Announcements strip ---------- */
.nz-ann {
  display: grid;
  gap: 0.65rem;
}

.nz-ann__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--nz-line);
  background: linear-gradient(90deg, rgba(184, 146, 58, 0.06), #fff 35%);
  text-decoration: none;
  color: inherit;
  transition: 0.2s ease;
}

.nz-ann__item:hover {
  border-color: rgba(184, 146, 58, 0.35);
  transform: translateX(-2px);
}

[dir="rtl"] .nz-ann__item:hover {
  transform: translateX(2px);
}

.nz-ann__ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff8ea;
  border: 1px solid rgba(184, 146, 58, 0.25);
  color: var(--nz-gold);
}

.nz-ann__ico svg {
  width: 20px;
  height: 20px;
}

.nz-ann__item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--nz-ink);
  line-height: 1.45;
}

.nz-ann__item span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  color: var(--nz-mute);
}

.nz-ann__go {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--nz-gold);
  white-space: nowrap;
}

/* ---------- Sidebar widgets ---------- */
.nz-aside {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 72px;
}

.nz-widget {
  border-radius: 18px;
  border: 1px solid var(--nz-line);
  background: var(--nz-white);
  overflow: hidden;
}

.nz-widget__head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--nz-line);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--nz-navy);
  background: linear-gradient(180deg, #fafbfd, #fff);
}

.nz-widget__head svg {
  width: 16px;
  height: 16px;
  color: var(--nz-blue);
}

.nz-widget__list {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
}

.nz-widget__list li a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.65rem;
  align-items: start;
  padding: 0.7rem 1rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}

.nz-widget__list li a:hover {
  background: rgba(11, 79, 255, 0.04);
}

.nz-widget__rank {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  font-family: "Syne", sans-serif;
  color: var(--nz-blue);
  background: #e8eeff;
}

.nz-widget__list strong {
  display: block;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--nz-ink);
}

.nz-widget__list span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.68rem;
  color: var(--nz-mute);
}

.nz-cats {
  display: grid;
  gap: 0.35rem;
  padding: 0.75rem;
}

.nz-cats button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border: 0;
  background: transparent;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  cursor: pointer;
  font-family: "Vazirmatn", sans-serif;
  font-size: 0.8rem;
  color: var(--nz-soft);
  transition: 0.2s ease;
}

.nz-cats button:hover,
.nz-cats button.is-active {
  background: #e8eeff;
  color: var(--nz-blue);
}

.nz-cats i {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.7;
}

.nz-cta {
  padding: 1.15rem;
  background:
    radial-gradient(90% 80% at 100% 0%, rgba(15, 159, 110, 0.12), transparent 55%),
    #fff !important;
  color: var(--nz-navy) !important;
  border-color: rgba(15, 159, 110, 0.22) !important;
}

.nz-cta h3 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
  font-family: "Syne", "Vazirmatn", sans-serif;
  color: var(--nz-navy) !important;
}

.nz-cta p {
  margin: 0 0 0.9rem;
  font-size: 0.8rem;
  color: var(--nz-mute) !important;
  line-height: 1.65;
}

.nz-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.58rem 0.95rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #0f9f6e, #12b981);
  color: #fff !important;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
}

/* ---------- Empty / loading ---------- */
.nz-empty,
.nz-loading {
  padding: 2.5rem 1rem;
  text-align: center;
  color: var(--nz-mute);
  border: 1px dashed var(--nz-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
}

/* ---------- Article detail ---------- */
.nz-article {
  padding: 1.5rem 0 3.5rem;
}

.nz-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--nz-mute);
  margin-bottom: 1.25rem;
}

.nz-crumb a {
  color: var(--nz-blue);
  text-decoration: none;
}

.nz-article__head {
  max-width: 760px;
  margin-bottom: 1.25rem;
}

.nz-article__head h1 {
  margin: 0.65rem 0 0.75rem;
  font-family: "Syne", "Vazirmatn", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.35;
  color: var(--nz-navy);
  font-weight: 800;
  text-wrap: balance;
}

.nz-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  font-size: 0.8rem;
  color: var(--nz-mute);
}

.nz-article__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.nz-article__meta svg {
  width: 14px;
  height: 14px;
  color: var(--nz-blue);
}

.nz-article__hero {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  background: #0a1628;
  margin-bottom: 1.5rem;
  box-shadow: 0 28px 50px -34px rgba(10, 22, 40, 0.5);
}

@media (max-width: 700px) {
  .nz-article__hero {
    aspect-ratio: 16 / 10;
  }
}

.nz-article__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nz-article__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 1.75rem;
  align-items: start;
}

@media (max-width: 900px) {
  .nz-article__layout {
    grid-template-columns: 1fr;
  }
}

.nz-prose {
  font-size: 1.02rem;
  line-height: 1.95;
  color: var(--nz-soft);
}

.nz-prose p {
  margin: 0 0 1.15rem;
}

.nz-prose p:first-child {
  font-size: 1.08rem;
  color: var(--nz-ink);
}

.nz-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.5rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--nz-line);
}

.nz-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--nz-blue);
  background: #e8eeff;
  border: 1px solid rgba(11, 79, 255, 0.12);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
}

.nz-related {
  display: grid;
  gap: 0.65rem;
  margin-top: 2rem;
}

.nz-related h2 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--nz-navy);
  font-family: "Syne", "Vazirmatn", sans-serif;
}

/* ---------- Homepage news magazine teaser ---------- */
.fx-press {
  display: grid;
  gap: 1rem;
}

.fx-press__spot {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0.85rem;
}

@media (max-width: 900px) {
  .fx-press__spot {
    grid-template-columns: 1fr;
  }
}

.fx-press__lead {
  position: relative;
  display: block;
  min-height: 340px;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: #fff !important;
  background: #070d18;
}

.fx-press__lead img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.fx-press__lead:hover img {
  transform: scale(1.05);
}

.fx-press__lead-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 13, 24, 0.05) 48%, rgba(7, 13, 24, 0.5) 72%, #070d18 100%);
}

.fx-press__lead-body {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  max-height: 30%;
  padding: 0.8rem 1.1rem 0.95rem;
  z-index: 2;
  color: #fff !important;
  background: #070d18;
  overflow: hidden;
}

.fx-press__lead h3 {
  margin: 0.35rem 0 0.25rem;
  font-size: clamp(0.98rem, 1.7vw, 1.28rem);
  line-height: 1.35;
  font-family: "Syne", "Vazirmatn", sans-serif;
  color: #fff !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fx-press__lead p {
  margin: 0;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.88) !important;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fx-press__lead-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  margin-top: 0.45rem;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.85) !important;
}

.fx-press__lead .nz-chip {
  color: #fff !important;
  background: rgba(11, 79, 255, 0.92);
}

.fx-press__stack {
  display: grid;
  gap: 0.7rem;
}

.fx-press__mini {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(88px, 1fr);
  gap: 0.55rem;
  padding: 0.4rem;
  border-radius: 14px;
  border: 1px solid var(--fx-line);
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: 0.25s ease;
  min-height: 118px;
}

.fx-press__mini:hover {
  border-color: rgba(11, 79, 255, 0.28);
  transform: translateY(-2px);
}

.fx-press__mini-media {
  border-radius: 10px;
  overflow: hidden;
  min-height: 100px;
  background: #eef2f8;
}

.fx-press__mini-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fx-press__mini > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 0.1rem 0.15rem;
}

.fx-press__mini strong {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--fx-ink);
  margin-top: 0.15rem;
}

.fx-press__mini span {
  font-size: 0.68rem;
  color: var(--fx-blue);
  font-weight: 700;
}

.fx-press__mini time {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.68rem;
  color: var(--fx-mute);
}

.fx-press__more {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

@media (max-width: 760px) {
  .fx-press__more {
    grid-template-columns: 1fr;
  }
}

.fx-press__card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  border: 1px solid var(--fx-line);
  background: #fff;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: 0.25s ease;
}

.fx-press__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -26px rgba(10, 22, 40, 0.3);
}

.fx-press__card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef2f8;
}

.fx-press__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.fx-press__card:hover .fx-press__card-media img {
  transform: scale(1.04);
}

.fx-press__card-body {
  padding: 0.85rem 0.95rem 1rem;
}

.fx-press__card-body span {
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--fx-blue);
}

.fx-press__card-body h3 {
  margin: 0.3rem 0 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--fx-ink);
}

.fx-press__foot {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.25rem;
}

.fx-press__all {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 79, 255, 0.22);
  background: #e8eeff;
  color: var(--fx-blue);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  transition: 0.2s ease;
}

.fx-press__all:hover {
  background: var(--fx-blue);
  color: #fff;
}

.fx-press__all svg {
  width: 16px;
  height: 16px;
}

@media (prefers-reduced-motion: reduce) {
  .nz-lead__media img,
  .nz-card__media img,
  .nz-side-card__media img,
  .fx-press__lead img,
  .fx-press__card-media img {
    transition: none !important;
  }
}

.nz-site-footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(10, 22, 40, 0.08);
  background: linear-gradient(180deg, #f8fafc, #fff);
}

.nz-site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1.5rem 0 2.25rem;
}

.nz-site-footer__meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #6b7280;
  line-height: 1.55;
}

.nz-site-footer__links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
}

.nz-site-footer__links a {
  color: #475569;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
}

.nz-site-footer__links a:hover {
  color: #0f9f6e;
}

.nz-site-footer__credit {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(15, 159, 110, 0.22);
  background: rgba(15, 159, 110, 0.06);
  color: #0f9f6e;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
}

.nz-site-footer__credit:hover {
  background: rgba(15, 159, 110, 0.12);
  border-color: rgba(15, 159, 110, 0.35);
}
