/* ============================================================
   MONITOR PAGE — shared styles for individual observatory pages
   ============================================================ */

:root {
  --navy: #0A1A2F;
  --navy-2: #0F2440;
  --navy-3: #142D52;
  --gold: #C6A85A;
  --gold-soft: #d8be7a;
  --gold-dim: #8a7440;
  --silver: #B0B0B0;
  --white: #FFFFFF;
  --ivory: #F4F1EA;
  --ink: #3E4651;
  --green: #6FCF97;
  --red: #E5715C;
  --orange: #E8A05B;
  --t-fast: 0.18s ease;
  --t-med: 0.28s ease;
  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", system-ui, sans-serif;
  --font-ar: "Cairo", "Tajawal", "Noto Sans Arabic", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
html[dir="rtl"] body { font-family: var(--font-ar); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============ TOP NAV ============ */
.mp-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,26,47,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(198,168,90,0.18);
}
.mp-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
}
.mp-brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--white);
  font-size: 15px;
}
.mp-brand__mark {
  inline-size: 36px; block-size: 36px;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.mp-brand:hover .mp-brand__mark { background: rgba(198,168,90,0.12); }
.mp-brand__name { font-family: var(--font-display); font-size: 17px; letter-spacing: 0.02em; }
html[dir="rtl"] .mp-brand__name { font-family: var(--font-ar); font-weight: 700; }

.mp-nav__center { display: flex; align-items: center; gap: 18px; }
.mp-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  transition: all var(--t-fast);
}
.mp-back:hover { color: var(--gold); border-color: var(--gold); }
.mp-back__arrow { display: inline-block; }
html[dir="rtl"] .mp-back__arrow { transform: scaleX(-1); }

.mp-langs {
  display: inline-flex;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(198,168,90,0.2);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.mp-lang {
  padding: 5px 12px;
  border: none; background: transparent;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.65);
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: all var(--t-fast);
  font-family: inherit;
}
.mp-lang:hover { color: var(--white); }
.mp-lang--active { background: var(--gold); color: var(--navy); }

/* ============ HEADER (page-level hero) ============ */
.mp-hero {
  padding: 64px 32px 48px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  position: relative;
  overflow: hidden;
}
.mp-hero::before {
  content: "";
  position: absolute;
  top: -120px; inset-inline-end: -120px;
  inline-size: 360px; block-size: 360px;
  background: radial-gradient(circle, rgba(198,168,90,0.18) 0%, transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}
.mp-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.mp-hero__breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
.mp-hero__breadcrumb a:hover { color: var(--gold); }
.mp-hero__num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.mp-hero__title {
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 700;
  margin: 0 0 14px;
  line-height: 1.2;
  letter-spacing: -0.005em;
  max-width: 900px;
}
html[dir="rtl"] .mp-hero__title { font-family: var(--font-ar); }
html[dir="ltr"] .mp-hero__title { font-family: var(--font-display); font-weight: 600; }
.mp-hero__tagline {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--gold-soft);
  font-style: italic;
  margin: 0 0 22px;
  max-width: 800px;
  line-height: 1.5;
}
.mp-hero__meta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 14px;
}
.mp-hero__chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(198,168,90,0.25);
  border-radius: 999px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.mp-hero__chip--live { color: var(--green); border-color: rgba(111,207,151,0.4); }
.mp-hero__chip-dot { inline-size: 7px; block-size: 7px; border-radius: 50%; background: currentColor; }
.mp-hero__chip--live .mp-hero__chip-dot {
  animation: mpPulse 2.2s ease-out infinite;
}
@keyframes mpPulse {
  0%   { box-shadow: 0 0 0 0 rgba(111,207,151,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(111,207,151,0); }
  100% { box-shadow: 0 0 0 0 rgba(111,207,151,0); }
}

/* ============ MAIN CONTAINER ============ */
.mp-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px;
}

/* ============ KPI BLOCK (top stats) ============ */
.mp-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}
.mp-kpi {
  padding: 22px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(198,168,90,0.22);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.mp-kpi::before {
  content: "";
  position: absolute;
  inset-block-start: 0; inset-inline-start: 0;
  inline-size: 100%; block-size: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
}
html[dir="rtl"] .mp-kpi::before { background: linear-gradient(270deg, var(--gold) 0%, transparent 100%); }
.mp-kpi__value {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 600;
  color: var(--gold);
  line-height: 1.1;
  display: block;
  margin-bottom: 4px;
}
.mp-kpi__label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.01em;
  display: block;
}
.mp-kpi__sublabel {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
}
.mp-kpi--alert .mp-kpi__value { color: var(--red); }
.mp-kpi--positive .mp-kpi__value { color: var(--green); }

/* ============ SECTIONS ============ */
.mp-section {
  margin-block: 56px;
  scroll-margin-top: 90px;
}
.mp-section__head {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px;
}
.mp-section__num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.mp-section__title {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 700;
  margin: 0;
}
html[dir="rtl"] .mp-section__title { font-family: var(--font-ar); }
html[dir="ltr"] .mp-section__title { font-family: var(--font-display); font-weight: 600; }
.mp-section__rule {
  flex: 1;
  block-size: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  opacity: 0.4;
}
html[dir="rtl"] .mp-section__rule { background: linear-gradient(270deg, var(--gold) 0%, transparent 100%); }
.mp-section__intro {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  max-width: 860px;
  margin-bottom: 28px;
  line-height: 1.8;
}

/* ============ TABLES ============ */
.mp-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(198,168,90,0.2);
  background: rgba(255,255,255,0.025);
}
.mp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 720px;
}
.mp-table th, .mp-table td {
  padding: 14px 16px;
  text-align: start;
  border-bottom: 1px solid rgba(198,168,90,0.12);
  vertical-align: top;
}
.mp-table thead th {
  background: rgba(10,26,47,0.6);
  color: var(--gold);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: none;
  border-bottom: 1px solid rgba(198,168,90,0.3);
  white-space: nowrap;
}
.mp-table tbody tr:hover { background: rgba(198,168,90,0.05); }
.mp-table tbody tr:last-child td { border-bottom: none; }
.mp-table .num-pos { color: var(--green); font-weight: 600; }
.mp-table .num-neg { color: var(--red); font-weight: 600; }
.mp-table .num-warn { color: var(--orange); font-weight: 600; }

/* ============ TIMELINE ============ */
.mp-timeline {
  position: relative;
  padding-inline-start: 28px;
  border-inline-start: 2px solid rgba(198,168,90,0.22);
}
.mp-tl-item {
  position: relative;
  padding: 16px 20px 16px 0;
  margin-block-end: 8px;
}
.mp-tl-item::before {
  content: "";
  position: absolute;
  inset-inline-start: -36px;
  inset-block-start: 22px;
  inline-size: 14px; block-size: 14px;
  border-radius: 50%;
  background: var(--navy-2);
  border: 2px solid var(--gold);
  z-index: 1;
}
.mp-tl-item--alert::before { border-color: var(--red); }
.mp-tl-item--info::before { border-color: var(--gold-soft); }
.mp-tl-item__date {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.mp-tl-item__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 6px;
}
.mp-tl-item__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin: 0 0 8px;
}
.mp-tl-item__tags {
  display: inline-flex; flex-wrap: wrap; gap: 6px;
  margin-top: 4px;
}
.mp-tag {
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(198,168,90,0.12);
  color: var(--gold-soft);
  border: 1px solid rgba(198,168,90,0.25);
  letter-spacing: 0.02em;
}

/* ============ INFO CARDS GRID ============ */
.mp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.mp-card {
  padding: 22px 22px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(198,168,90,0.2);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.mp-card::before {
  content: "";
  position: absolute;
  inset-block-start: 0; inset-inline-start: 0;
  inline-size: 100%; block-size: 2px;
  background: var(--gold);
  opacity: 0.6;
}
.mp-card__icon {
  inline-size: 40px; block-size: 40px;
  display: grid; place-items: center;
  background: rgba(198,168,90,0.14);
  color: var(--gold);
  border-radius: 10px;
  margin-bottom: 12px;
}
.mp-card__icon svg { inline-size: 22px; block-size: 22px; }
.mp-card__title {
  font-size: 16px;
  color: var(--white);
  margin: 0 0 8px;
  font-weight: 700;
}
.mp-card__body {
  font-size: 13.5px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin: 0;
}
.mp-card__metric {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin: 10px 0 4px;
}
.mp-card__metric-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* ============ DEFINITION LIST / SPECS ============ */
.mp-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.mp-spec {
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border-inline-start: 3px solid var(--gold);
  border-radius: 6px;
}
.mp-spec__label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  display: block;
}
.mp-spec__value {
  font-size: 15px;
  color: var(--white);
  font-weight: 600;
}

/* ============ CHART BAR (simple horizontal) ============ */
.mp-bars {
  display: grid;
  gap: 10px;
}
.mp-bar {
  display: grid;
  grid-template-columns: 180px 1fr 90px;
  gap: 14px;
  align-items: center;
  font-size: 13px;
}
.mp-bar__label { color: rgba(255,255,255,0.85); }
.mp-bar__track {
  height: 12px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  display: flex;
}
html[dir="rtl"] .mp-bar__track { justify-content: flex-start; }
.mp-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dim) 0%, var(--gold) 100%);
  border-radius: 999px;
  transition: width 0.6s ease;
}
html[dir="rtl"] .mp-bar__fill {
  background: linear-gradient(270deg, var(--gold-dim) 0%, var(--gold) 100%);
}
.mp-bar--alert .mp-bar__fill {
  background: linear-gradient(90deg, #c2533f 0%, var(--red) 100%);
}
.mp-bar__value {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold);
  text-align: end;
}
@media (max-width: 640px) {
  .mp-bar { grid-template-columns: 1fr; }
  .mp-bar__value { text-align: start; }
}

/* ============ SOURCES ============ */
.mp-sources {
  margin-top: 8px;
  padding: 22px 24px;
  background: rgba(10,26,47,0.6);
  border: 1px solid rgba(198,168,90,0.18);
  border-radius: 12px;
}
.mp-sources__head {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  font-weight: 600;
}
.mp-sources__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.mp-sources__list li {
  font-size: 12.5px;
  padding: 5px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(198,168,90,0.2);
  border-radius: 999px;
  color: rgba(255,255,255,0.78);
}

/* ============ FOOTER ============ */
.mp-foot {
  margin-top: 80px;
  padding: 32px;
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(198,168,90,0.18);
}
.mp-foot__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.mp-foot__back {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.mp-foot__back:hover { color: var(--gold-soft); }

/* ============ NOTE / DISCLAIMER ============ */
.mp-note {
  padding: 16px 18px;
  background: rgba(198,168,90,0.06);
  border-inline-start: 3px solid var(--gold);
  border-radius: 6px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin: 16px 0;
}
.mp-note__label {
  font-weight: 700;
  color: var(--gold);
  margin-inline-end: 6px;
}

/* ============ MAP PLACEHOLDER ============ */
.mp-map {
  block-size: 480px;
  background:
    linear-gradient(180deg, rgba(10,26,47,0.4), rgba(15,36,64,0.7)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 480'><defs><pattern id='g' width='40' height='40' patternUnits='userSpaceOnUse'><path d='M40 0L0 0 0 40' fill='none' stroke='%23C6A85A' stroke-width='0.5' opacity='0.15'/></pattern></defs><rect width='800' height='480' fill='url(%23g)'/></svg>");
  border: 1px solid rgba(198,168,90,0.2);
  border-radius: 12px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.mp-map__overlay {
  text-align: center;
  padding: 24px;
}
.mp-map__title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  margin: 0 0 8px;
}
html[dir="rtl"] .mp-map__title { font-family: var(--font-ar); font-weight: 700; }
.mp-map__sub {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 720px) {
  .mp-nav__inner { padding: 12px 18px; flex-wrap: wrap; gap: 12px; }
  .mp-brand__name { font-size: 14px; }
  .mp-back { font-size: 12px; padding: 6px 10px; }
  .mp-lang { padding: 4px 9px; font-size: 11px; }
  .mp-hero { padding: 40px 18px 36px; }
  .mp-main { padding: 24px 18px; }
  .mp-section { margin-block: 40px; }
  .mp-foot { padding: 22px 18px; }
}

/* ============================================================
   LIVE FEED — strip in hero + KPIs/events block in body
   ============================================================ */
.lf-strip {
  margin-top: 24px;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(198,168,90,0.10), rgba(198,168,90,0.04));
  border: 1px solid rgba(198,168,90,0.35);
  border-radius: 10px;
  display: flex;
  align-items: center;
  font-family: var(--font-sans, 'Inter', sans-serif);
}
[dir="rtl"] .lf-strip { font-family: 'Cairo', sans-serif; }

.lf-strip__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.lf-strip__pulse {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.lf-strip__pulse-dot {
  position: absolute;
  inset: 3px;
  background: #4ad991;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(74,217,145,0.7);
  z-index: 2;
}
.lf-strip__pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(74,217,145,0.4);
  animation: lf-pulse 2s ease-out infinite;
}
@keyframes lf-pulse {
  0%   { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(1.8); opacity: 0; }
}

.lf-strip__main {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}
.lf-strip__top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12.5px;
  color: var(--gold-soft, #d8be7a);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lf-strip__live { font-weight: 700; color: #4ad991; }
.lf-strip__sep { opacity: 0.5; }
.lf-strip__rel { font-weight: 600; color: var(--ivory); }
.lf-strip__freq { opacity: 0.85; }

.lf-strip__bottom {
  font-size: 12.5px;
  color: rgba(244,241,234,0.7);
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.lf-strip__label { color: var(--gold); font-weight: 600; }
.lf-strip__abs { font-variant-numeric: tabular-nums; }

/* Body live block */
.lf-body { display: flex; flex-direction: column; gap: 24px; margin-bottom: 48px; }

.lf-block {
  background: #fffdf7;
  border: 1px solid rgba(10,26,47,0.08);
  border-radius: 14px;
  padding: 24px 28px;
  box-shadow: 0 1px 0 rgba(10,26,47,0.04), 0 8px 32px -16px rgba(10,26,47,0.12);
}
.lf-block__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(10,26,47,0.08);
}
.lf-block__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(198,168,90,0.18);
}
.lf-block__title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}
[dir="rtl"] .lf-block__title { font-family: 'Cairo', sans-serif; }

/* KPIs grid */
.lf-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.lf-kpi {
  padding: 16px 18px;
  background: #fafaf7;
  border-radius: 10px;
  border-inline-start: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lf-kpi--neg  { border-inline-start-color: #c84a4a; background: rgba(200,74,74,0.05); }
.lf-kpi--warn { border-inline-start-color: #d6a23c; background: rgba(214,162,60,0.05); }
.lf-kpi--pos  { border-inline-start-color: #3fa572; background: rgba(63,165,114,0.05); }
.lf-kpi__value {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
[dir="rtl"] .lf-kpi__value { font-family: 'Cairo', sans-serif; }
.lf-kpi__label {
  font-size: 13px;
  color: rgba(10,26,47,0.7);
  line-height: 1.4;
}
.lf-kpi__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
  font-size: 11.5px;
}
.lf-kpi__delta {
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
}
.lf-kpi__delta--neg  { color: #c84a4a; background: rgba(200,74,74,0.10); }
.lf-kpi__delta--warn { color: #a17a26; background: rgba(214,162,60,0.15); }
.lf-kpi__delta--pos  { color: #2d8458; background: rgba(63,165,114,0.10); }
.lf-kpi__delta--neutral { color: rgba(10,26,47,0.65); background: rgba(10,26,47,0.06); }
.lf-kpi__src {
  color: var(--gold-dim, #8a7440);
  text-decoration: none;
  font-weight: 600;
}
.lf-kpi__src:hover { color: var(--gold); text-decoration: underline; }

/* Events list */
.lf-events {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.lf-events--empty {
  padding: 24px 18px;
  text-align: center;
  color: rgba(10,26,47,0.5);
  font-size: 13.5px;
  background: #fafaf7;
  border-radius: 8px;
  font-style: italic;
}
.lf-event {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(10,26,47,0.07);
}
.lf-event:last-child { border-bottom: 0; padding-bottom: 0; }
.lf-event:first-child { padding-top: 0; }
[dir="rtl"] .lf-event { grid-template-columns: 120px 1fr; }
.lf-event__time {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-dim);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-top: 2px;
}
.lf-event--neg  .lf-event__time { color: #c84a4a; }
.lf-event--alert .lf-event__time { color: #c84a4a; }
.lf-event--warn .lf-event__time { color: #a17a26; }
.lf-event--pos  .lf-event__time { color: #2d8458; }
.lf-event__body { display: flex; flex-direction: column; gap: 4px; }
.lf-event__title {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy);
  line-height: 1.45;
}
.lf-event__summary {
  font-size: 13.5px;
  color: rgba(10,26,47,0.72);
  line-height: 1.55;
}
.lf-event__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  font-size: 11.5px;
  color: rgba(10,26,47,0.45);
  flex-wrap: wrap;
}
.lf-event__src {
  color: var(--gold-dim);
  text-decoration: none;
  font-weight: 600;
}
.lf-event__src:hover { color: var(--gold); text-decoration: underline; }
.lf-event__abs { font-variant-numeric: tabular-nums; opacity: 0.7; }

@media (max-width: 720px) {
  .lf-event { grid-template-columns: 1fr; gap: 4px; }
  .lf-event__time { padding-top: 0; }
  .lf-strip__top { font-size: 11.5px; }
}

/* Live feed loading skeleton */
.lf-loading-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 12px;
}
.lf-skeleton {
  background: linear-gradient(90deg,
    rgba(198,168,90,0.06) 0%,
    rgba(198,168,90,0.14) 50%,
    rgba(198,168,90,0.06) 100%);
  background-size: 200% 100%;
  animation: lfShimmer 1.6s ease-in-out infinite;
  border-radius: 10px;
  height: 86px;
  border: 1px solid rgba(198,168,90,0.12);
}
@keyframes lfShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.lf-block__dot--pulse {
  animation: lfDotPulse 1.4s ease-in-out infinite;
}
@keyframes lfDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(0.78); }
}
.lf-block--loading .lf-block__title {
  color: rgba(255,253,247,0.72);
  font-size: 14px;
  letter-spacing: 0.01em;
}
