/* Dalil KSA · polish pass · FxPro-inspired · August 2026
   VARIANCE 5 · MOTION 4 · DENSITY 4 */
:root {
  --bg: #f3f5f8;
  --paper: #ffffff;
  --ink: #0e141b;
  --ink-soft: #3a4553;
  --mute: #6b7583;
  --line: #e3e7ee;
  --line-strong: #cfd5df;
  --blue: #2b6bff;
  --blue-dark: #1a4fd6;
  --blue-soft: rgba(43, 107, 255, 0.1);
  --hero-scrim: linear-gradient(105deg, rgba(8, 12, 20, 0.82) 0%, rgba(8, 12, 20, 0.55) 48%, rgba(8, 12, 20, 0.35) 100%),
    linear-gradient(180deg, rgba(8, 12, 20, 0.2) 0%, rgba(8, 12, 20, 0.75) 100%);
  --on-dark: #f5f7fa;
  --on-dark-soft: rgba(245, 247, 250, 0.84);
  --maxw: 1120px;
  --head-h: 64px;
  --dock-h: 64px;
  --radius: 10px;
  --radius-pill: 999px;
  --disp: "Manrope", system-ui, sans-serif;
  --sans: "Manrope", "IBM Plex Sans Arabic", system-ui, sans-serif;
  --amber-glow: rgba(232, 156, 74, 0.18);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font: 400 16.5px/1.65 var(--sans);
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: calc(var(--dock-h) + 16px);
}
::selection { background: var(--blue); color: #fff; }
a { color: var(--blue-dark); text-underline-offset: 3px; }
a:hover { color: var(--blue); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* Header */
header.site-head {
  position: sticky; top: 0; z-index: 50; height: var(--head-h);
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.head-row {
  display: flex; align-items: center; gap: 14px; height: var(--head-h);
  max-width: var(--maxw); margin: 0 auto; padding: 0 22px;
}
.logo {
  font: 800 1.1rem/1 var(--disp);
  letter-spacing: -0.03em;
  color: var(--ink) !important;
  text-decoration: none;
  flex: 0 0 auto;
}
.logo span { color: var(--blue) !important; }
.logo .mark { display: none; }
.mainnav {
  display: flex; gap: 0 16px; flex-wrap: nowrap; align-items: center;
  margin-left: 4px; margin-right: auto; overflow: hidden; max-height: 40px;
}
.mainnav > a:not(.nav-pill) {
  font: 600 13px/1 var(--sans);
  color: var(--mute);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.mainnav > a:not(.nav-pill):hover { color: var(--ink); }
.nav-pill {
  font: 600 13px/1 var(--sans);
  color: var(--mute);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav-pill:hover { color: var(--ink); }
.nav-pill.is-active { color: var(--ink); border-bottom-color: var(--blue); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: 700 14px/1 var(--sans);
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  border: none;
  text-decoration: none;
  white-space: nowrap;
  background: var(--blue);
  color: #fff;
  box-shadow: none;
  transition: background 0.2s var(--ease), transform 0.15s var(--ease);
}
.btn:hover {
  background: var(--blue-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}
.btn:active { transform: scale(0.98); }
.btn-nav { padding: 10px 16px; font-size: 13px; flex: 0 0 auto; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue-dark);
  background: var(--blue-soft);
}
.hero .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
}
.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}
.btn-lg { padding: 15px 26px; font-size: 1rem; }
.cta-row {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 20px;
}

/* Home cinematic hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(58vh, 520px);
  display: flex;
  align-items: flex-end;
  padding: 40px 0 40px;
  overflow: hidden;
  background:
    var(--hero-scrim),
    url("/assets/hero.jpg") center 40%/cover no-repeat;
  color: var(--on-dark);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 38rem;
}
.brand-hero {
  font: 700 0.8rem/1 var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9db7ff;
  margin-bottom: 12px;
}
.brand-hero span { color: #c5d6ff; text-transform: none; letter-spacing: 0; font-weight: 800; }
.hero h1 {
  font: 800 clamp(1.85rem, 3.6vw, 2.65rem)/1.15 var(--disp);
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 12px;
  max-width: 18ch;
}
.hero .lede {
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--on-dark-soft);
  max-width: 40ch;
}
.hero-risk {
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(245, 247, 250, 0.58);
  max-width: 44ch;
}

/* Inner page hero (NOT cinematic) */
.page-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 28px 0 36px;
}
.page-hero h1 {
  font: 800 clamp(1.7rem, 3vw, 2.25rem)/1.18 var(--disp);
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 8px 0 10px;
  max-width: 22ch;
}
.page-hero .lede {
  font-size: 1.05rem;
  color: var(--mute);
  max-width: 48ch;
  line-height: 1.55;
}
.crumbs {
  font-size: 0.85rem;
  color: var(--mute);
  margin-bottom: 10px;
}
.crumbs a { color: var(--mute); text-decoration: none; }
.crumbs a:hover { color: var(--blue); }
.crumbs span { margin: 0 8px; opacity: 0.5; }
.kicker {
  font: 600 0.75rem/1 var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.disc {
  font-size: 0.92rem;
  color: var(--mute);
  margin-bottom: 18px;
}

/* Truth strip: sits BELOW hero, no sticky-clip overlap */
.truth-wrap {
  position: relative;
  z-index: 2;
  margin: -28px auto 0;
  padding-bottom: 8px;
}
.truth-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(14, 20, 27, 0.08);
  overflow: hidden;
}
.truth-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 10px 14px 0;
  border-bottom: 1px solid var(--line);
  background: #fafbfd;
}
.truth-tab {
  font: 600 12.5px/1 var(--sans);
  color: var(--mute);
  padding: 10px 12px 12px;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.truth-tab:hover { color: var(--ink); }
.truth-tab.is-active {
  color: var(--ink);
  border-bottom-color: var(--blue);
}
.truth-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.truth-cell {
  padding: 18px 16px;
  border-right: 1px solid var(--line);
  min-width: 0;
}
.truth-cell:last-child { border-right: none; }
.truth-lbl {
  font: 600 0.7rem/1 var(--sans);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 8px;
}
.truth-val {
  font: 800 1.05rem/1.25 var(--disp);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
  word-break: break-word;
}
.truth-note {
  font-size: 0.8rem;
  color: var(--mute);
  line-height: 1.4;
}
.truth-cell a {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}
.truth-cell a:hover .truth-val { color: var(--blue); }

/* USP cards */
.usp-section { padding: 36px 0 8px; }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}
.usp-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px 20px;
  border-top: 3px solid var(--blue);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.usp-card:hover {
  border-color: rgba(43, 107, 255, 0.35);
  box-shadow: 0 8px 22px rgba(14, 20, 27, 0.05);
}
.usp-card--visual {
  background: var(--paper);
  color: inherit;
  border-top-color: var(--blue);
}
.usp-card--visual .usp-stat,
.usp-card--visual .usp-title { color: var(--ink); }
.usp-card--visual .usp-body { color: var(--mute); }
.usp-card--visual a.usp-link { color: var(--blue); }
.usp-stat {
  font: 800 1.35rem/1.15 var(--disp);
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 6px;
}
.usp-title {
  font: 700 0.98rem/1.3 var(--disp);
  color: var(--ink);
  margin-bottom: 8px;
}
.usp-body {
  font-size: 0.9rem;
  color: var(--mute);
  line-height: 1.5;
  flex: 1;
}
.usp-card a.usp-link {
  display: inline-block;
  margin-top: 14px;
  font: 700 0.88rem/1 var(--sans);
  color: var(--blue);
  text-decoration: none;
}
.usp-card a.usp-link:hover { text-decoration: underline; }
.muted-note { font-size: 0.86rem; color: var(--mute); margin-top: 14px; }

/* Sections + prose */
.section { padding: 44px 0; }
.section h2,
.prose h2 {
  font: 800 clamp(1.35rem, 2.4vw, 1.75rem)/1.22 var(--disp);
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 12px;
}
.prose h3 {
  font: 700 1.1rem/1.3 var(--disp);
  color: var(--ink);
  margin: 26px 0 10px;
}
.prose p { margin-bottom: 14px; max-width: 72ch; }
.prose ul, .prose ol { margin: 0 0 16px 1.2rem; max-width: 70ch; }
.prose li { margin-bottom: 6px; }
.prose .answer-first {
  font-size: 1.04rem;
  color: var(--ink);
  border-left: 3px solid var(--blue);
  padding-left: 14px;
}
.fact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}
.fact-cell, .fact {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}
.fact-cell .lbl, .fact .l { font-size: 0.78rem; color: var(--mute); text-transform: uppercase; letter-spacing: 0.05em; }
.fact-cell .val, .fact .n { font: 800 1.1rem/1.2 var(--disp); color: var(--ink); margin-top: 6px; }

/* Path band */
.path-band {
  background: var(--paper);
  border-block: 1px solid var(--line);
  padding: 48px 0;
}
.path-head { max-width: 36rem; margin-bottom: 28px; }
.path-kicker {
  font: 600 0.72rem/1 var(--sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.path-lede {
  font-size: 1.02rem;
  color: var(--mute);
  max-width: 40ch;
  line-height: 1.5;
}
.path-rail {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.path-step a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  padding: 18px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.path-step a:hover {
  border-color: rgba(43, 107, 255, 0.4);
  box-shadow: 0 8px 20px rgba(14, 20, 27, 0.05);
  color: inherit;
  text-decoration: none;
}
.path-step--lead a {
  background: #eef3ff;
  border-color: rgba(43, 107, 255, 0.28);
}
.path-num {
  font: 800 0.85rem/1 var(--disp);
  color: var(--blue);
}
.path-label {
  font: 700 1rem/1.25 var(--disp);
  color: var(--ink);
}
.path-hit {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue-dark);
}
.path-note {
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--mute);
}
.path-go { display: none; }
.path-also {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}
.path-also-label {
  font: 600 0.7rem/1 var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
}
.path-also a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.path-also a:hover {
  color: var(--blue);
  border-bottom-color: rgba(43, 107, 255, 0.35);
}

/* Tables / FAQ / CTA */
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.prose th, .prose td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.prose th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--mute);
  background: var(--bg);
}
.prose tr:last-child td { border-bottom: none; }
details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 14px 16px;
}
details summary {
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
details summary::-webkit-details-marker { display: none; }
details p { margin-top: 10px; color: var(--ink-soft); }
.cta-band {
  background: #0e141b;
  color: var(--on-dark);
  padding: 48px 0;
}
.cta-band h2 { color: #fff !important; }
.cta-band p { color: var(--on-dark-soft); max-width: 44ch; margin-bottom: 8px; }
.cta-band .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.cta-band .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
}
.risk-line, .risk-box {
  margin: 0;
  padding: 16px 22px;
  background: #fff4f4;
  color: #7a2e2e;
  font-size: 0.9rem;
  border-top: 1px solid #f0d0d0;
  text-align: center;
}

/* Footer + dock */
.site-foot, footer.site-foot {
  background: #0e141b;
  color: rgba(245, 247, 250, 0.72);
  padding: 40px 0 calc(var(--dock-h) + 28px);
  font-size: 0.9rem;
}
.site-foot a { color: #b8ccff; text-decoration: none; }
.site-foot a:hover { color: #fff; }
.foot-nav {
  display: flex; flex-wrap: wrap; gap: 8px 14px;
  margin-bottom: 22px;
}
.site-foot p { margin-bottom: 10px; max-width: 70ch; }
.site-foot .meta { color: rgba(245, 247, 250, 0.45); margin-top: 18px; }
.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  height: var(--dock-h);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 0 18px;
  background: rgba(14, 20, 27, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--on-dark-soft);
  font-size: 0.9rem;
}
.btn-dock { padding: 10px 16px; }

@media (max-width: 980px) {
  .truth-row { grid-template-columns: 1fr 1fr; }
  .truth-cell:nth-child(2) { border-right: none; }
  .truth-cell:nth-child(1),
  .truth-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .path-rail { grid-template-columns: 1fr 1fr; }
  .fact-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .mainnav { display: none; }
  .hero { min-height: min(52vh, 440px); }
  .hero h1 { max-width: none; }
  .truth-wrap { margin-top: -20px; }
  .usp-grid, .path-rail, .fact-strip, .truth-row { grid-template-columns: 1fr; }
  .truth-cell {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .truth-cell:last-child { border-bottom: none; }
  .page-hero h1 { max-width: none; }
}
@media (prefers-reduced-motion: reduce) {
  .btn, .usp-card, .path-step a { transition: none; }
  .btn:hover { transform: none; }
}


/* SA / RTL extras */
html[dir="rtl"] body { font-family: "IBM Plex Sans Arabic", "Manrope", system-ui, sans-serif; }
html[dir="rtl"] .hero h1,
html[dir="rtl"] .page-hero h1,
html[dir="rtl"] .section h2,
html[dir="rtl"] .prose h2,
html[dir="rtl"] .brand-hero,
html[dir="rtl"] .path-label,
html[dir="rtl"] .truth-val,
html[dir="rtl"] .usp-stat,
html[dir="rtl"] .usp-title {
  font-family: "IBM Plex Sans Arabic", var(--sans);
  letter-spacing: 0;
}
html[dir="rtl"] .brand-hero,
html[dir="rtl"] .path-kicker,
html[dir="rtl"] .kicker,
html[dir="rtl"] .truth-lbl { letter-spacing: 0; text-transform: none; }
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 45% 40% at 85% 30%, var(--amber-glow), transparent 60%);
}
.logo span.brand-ar, .logo .brand-ar {
  font-family: "IBM Plex Sans Arabic", var(--sans);
  font-weight: 700;
  font-size: 0.92em;
  margin-inline-start: 6px;
  color: var(--blue) !important;
}
.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  overflow: hidden;
  flex: 0 0 auto;
  margin-inline-end: 6px;
}
.lang-switch a, .lang-switch__opt {
  font: 700 11px/1 var(--sans);
  padding: 8px 11px;
  text-decoration: none;
  color: var(--mute);
  background: transparent;
}
.lang-switch a.is-active, .lang-switch__opt.is-active {
  background: var(--blue);
  color: #fff;
}
.prose .answer-first {
  border-left: none;
  border-inline-start: 3px solid var(--blue);
  padding-left: 0;
  padding-inline-start: 14px;
}
.truth-cell { border-right: none; border-inline-end: 1px solid var(--line); }
.truth-cell:last-child { border-inline-end: none; }
.foot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px 36px;
}
.foot-grid ul { list-style: none; margin: 0; padding: 0; }
.foot-grid a { display: block; margin-bottom: 6px; }
@media (max-width: 980px) {
  .foot-grid { grid-template-columns: 1fr; }
  .truth-cell:nth-child(2) { border-inline-end: none; }
}


/* --- Editorial text highlights (every page) --- */
.prose {
  --hl: rgba(43, 107, 255, 0.12);
  --hl-ink: #0e141b;
}
.prose h2 {
  position: relative;
  padding-inline-start: 14px;
  margin-top: 8px;
}
.prose h2::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.2em;
  bottom: 0.15em;
  width: 3px;
  border-radius: 2px;
  background: var(--blue);
}
.prose h3 {
  color: var(--ink);
}
.prose .answer-first {
  display: block;
  background: var(--paper);
  border: 1px solid var(--line);
  border-inline-start: 3px solid var(--blue) !important;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 18px !important;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(14, 20, 27, 0.04);
  max-width: 72ch;
  line-height: 1.6;
}
.prose strong {
  color: var(--hl-ink);
  font-weight: 700;
  background: linear-gradient(180deg, transparent 55%, var(--hl) 55%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 0.12em;
}
.prose em {
  color: var(--ink);
  font-style: italic;
  background: linear-gradient(180deg, transparent 60%, rgba(43, 107, 255, 0.08) 60%);
}
.prose mark,
.prose .hl {
  background: var(--hl);
  color: var(--ink);
  padding: 0.05em 0.28em;
  border-radius: 4px;
  font-weight: 650;
}
.prose ul > li::marker { color: var(--blue); font-weight: 700; }
.prose ol > li::marker { color: var(--blue); font-weight: 700; }
.page-hero .lede {
  position: relative;
  padding-inline-start: 14px;
  border-inline-start: 3px solid var(--blue);
}

/* --- Keep reading / related cards --- */
.read-next {
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(43, 107, 255, 0.07), transparent 55%),
    var(--paper);
  border-block: 1px solid var(--line);
  padding-block: 40px;
}
.read-next > .wrap > h2 {
  font: 800 clamp(1.25rem, 2.2vw, 1.55rem)/1.2 var(--disp);
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.read-next > .wrap > h2::before {
  content: "Next guides";
  font: 650 0.7rem/1 var(--sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}
html[dir="rtl"] .read-next > .wrap > h2::before {
  content: "أدلة تالية";
  letter-spacing: 0;
  text-transform: none;
}
.section > .wrap > h2 {
  font: 800 clamp(1.25rem, 2.2vw, 1.55rem)/1.2 var(--disp);
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 16px;
}
.read-grid,
ul.related {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
ul.related li { margin: 0; }
.read-card,
ul.related a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 72px;
  padding: 16px 16px 16px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-inline-start: 3px solid var(--blue);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
}
.read-card:hover,
ul.related a:hover {
  background: #eef3ff;
  border-color: rgba(43, 107, 255, 0.35);
  color: var(--ink);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(14, 20, 27, 0.06);
}
.read-title,
ul.related a {
  font: 700 0.98rem/1.3 var(--disp);
  letter-spacing: -0.015em;
}
ul.related a { width: 100%; }
.read-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.read-label {
  font: 600 0.68rem/1 var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}
.read-go {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.read-card:hover .read-go,
ul.related a:hover .read-go {
  background: var(--blue);
  color: #fff;
  transform: translateX(2px);
}
html[dir="rtl"] .read-card:hover .read-go,
html[dir="rtl"] ul.related a:hover .read-go {
  transform: translateX(-2px);
}
html[dir="rtl"] .read-label { letter-spacing: 0; text-transform: none; }
@media (max-width: 560px) {
  .read-grid, ul.related { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .read-card, ul.related a, .read-go { transition: none; }
  .read-card:hover, ul.related a:hover { transform: none; }
}
