/* ═══════════════════════════════════════════════════════════════════════
   Averya — articles hub + article reading page.
   Scoped to .art* / .artc* only. Loaded by articles.html and the five
   article-*.html pages; nothing here touches the rest of the site.

   The card cover deliberately reuses the PREMIUM EMBLEM language already
   approved on the homepage service cards (lit glass medallion + line icon +
   accent glow + rings on a faint navy grid). The mini-UI-mockup style was
   rejected once on this site; it is not coming back through a side door.
   ═══════════════════════════════════════════════════════════════════════ */

.art-section,
.artc-section {
  --art-dark: linear-gradient(180deg, #101424, #070a14);
  --art-ease: cubic-bezier(.22, 1, .36, 1);
  --art-hair: rgba(0, 0, 0, .08);
}

/* ═════════════════════ hub ═════════════════════ */
.art-section { padding: 8px 0 84px; background: var(--canvas); }
@media (max-width: 560px) { .art-section { padding-bottom: 56px; } }

/* ── cover art (shared by hub cards and article headers) ──
   Amplified 2026-07-27: aurora wash in the article's accent + the brand blue,
   a pixel-square cluster echoing the logo's trailing cubes, a gloss sweep on
   the glass tile and a floor bloom. All static paint — no animation. */
.art-cover {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(72% 110% at 84% -12%, color-mix(in srgb, var(--c) 30%, transparent), transparent 62%),
    radial-gradient(55% 85% at 6% 112%, rgba(59, 137, 255, .20), transparent 66%),
    radial-gradient(42% 60% at 28% 18%, rgba(122, 92, 255, .13), transparent 72%),
    var(--art-dark);
  isolation: isolate;
}
@supports not (color: color-mix(in srgb, red, blue)) {
  .art-cover { background: var(--art-dark); }
}
.art-cover::after {
  /* faint navy grid, same texture as the homepage emblems sit on */
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(70% 70% at 50% 45%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 70% at 50% 45%, #000 30%, transparent 100%);
}

/* Real cover image fills the frame; the aurora background doubles as the
   loading placeholder. The grid/emblem chrome switches off under a photo. */
.art-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.art-cover--img::after { display: none; }

.art-em { position: absolute; inset: 0; display: grid; place-items: center; }

/* Pixel-square cluster — the Averya mark's trailing cubes, in the accent.
   One 9px square plus box-shadow copies; physical top-right like the logo. */
.art-em::before {
  content: '';
  position: absolute;
  top: 26%;
  right: 22%;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--c);
  opacity: .9;
  pointer-events: none;
  box-shadow:
    16px -14px 0 -1px color-mix(in srgb, var(--c) 70%, #fff),
    32px -26px 0 -3px var(--c),
    -8px -24px 0 -3px color-mix(in srgb, var(--c) 55%, transparent),
    46px -10px 0 -4px color-mix(in srgb, var(--c) 45%, transparent),
    28px 4px 0 -4px color-mix(in srgb, var(--c) 60%, transparent);
  filter: drop-shadow(0 0 9px color-mix(in srgb, var(--c) 55%, transparent));
}
@supports not (color: color-mix(in srgb, red, blue)) {
  .art-em::before { box-shadow: 16px -14px 0 -1px var(--c), 32px -26px 0 -3px var(--c); }
}

/* Floor bloom under the emblem — grounds the tile instead of floating it. */
.art-em::after {
  content: '';
  position: absolute;
  bottom: 7%;
  left: 50%;
  transform: translateX(-50%);
  width: 46%;
  height: 13%;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, color-mix(in srgb, var(--c) 24%, transparent), transparent 72%);
  filter: blur(9px);
  pointer-events: none;
}
.art-glow {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  top: -22%;
  inset-inline-end: -14%;
  border-radius: 50%;
  filter: blur(48px);
  opacity: .5;
  background: var(--c);
  pointer-events: none;
}
.art-ring {
  position: absolute;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  border: 1px solid var(--c);
  opacity: .22;
  pointer-events: none;
}
.art-ring.r2 { width: 202px; height: 202px; opacity: .10; }
.art-mark {
  position: relative;
  width: 92px;
  height: 92px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .30),
    0 22px 44px -20px rgba(0, 0, 0, .72);
  transition: transform .5s var(--art-ease);
}
.art-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 52px -10px var(--c);
  opacity: .7;
}
/* Gloss sweep across the glass tile — one static diagonal highlight. */
.art-mark::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(118deg, transparent 32%, rgba(255, 255, 255, .16) 46%, transparent 58%);
}
.art-mark svg {
  position: relative;
  width: 44px;
  height: 44px;
  stroke: var(--c);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .4));
}

/* ── featured article ── */
.art-feat {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 20px;
  margin-bottom: 34px;
  border-radius: 28px;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .9),
    0 18px 44px -30px rgba(16, 20, 36, .5);
  transition: transform .55s var(--art-ease), box-shadow .55s var(--art-ease);
}
.art-feat .art-cover { aspect-ratio: 16 / 11; border-radius: 20px; }
/* Larger canvas than the grid cards, so the same glow reads heavier — pull it back. */
.art-feat .art-glow { opacity: .40; }
.art-feat .art-mark { width: 108px; height: 108px; border-radius: 30px; }
.art-feat .art-mark svg { width: 52px; height: 52px; }
@media (hover: hover) {
  .art-feat:hover { box-shadow: inset 0 1px 0 rgba(255, 255, 255, .95), 0 34px 66px -28px rgba(16, 20, 36, .6); }
  .art-feat:hover .art-mark { transform: translateY(-5px); }
}
.art-feat:focus-visible { outline: 2px solid var(--primary); outline-offset: 4px; }
@media (max-width: 900px) {
  .art-feat { grid-template-columns: 1fr; gap: 22px; padding: 16px; }
}

.art-feat-body { padding-inline: 6px 16px; }
@media (max-width: 900px) { .art-feat-body { padding: 0 8px 10px; } }

/* ── card grid ── */
.art-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 760px) { .art-grid { grid-template-columns: 1fr; } }

.art-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 14px 14px 20px;
  border-radius: 28px;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .9),
    0 18px 44px -30px rgba(16, 20, 36, .5);
  transition: transform .55s var(--art-ease), box-shadow .55s var(--art-ease);
}
.art-card .art-cover { margin-bottom: 16px; }
@media (hover: hover) {
  .art-card:hover {
    transform: translateY(-4px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .95), 0 34px 66px -28px rgba(16, 20, 36, .6);
  }
  .art-card:hover .art-mark { transform: translateY(-5px); }
}
.art-card:focus-visible { outline: 2px solid var(--primary); outline-offset: 4px; }
.art-card-body { padding-inline: 6px; display: flex; flex-direction: column; flex: 1 1 auto; }

/* ── card text ── */
.art-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 11px;
}
/* Rubik, not the mono stack: JetBrains Mono has no Hebrew, so the label fell
   back mid-string and the tracking meant for Latin caps spaced the Hebrew out.
   Uppercase is a no-op in Hebrew too, so both are dropped. */
.art-cat {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -.005em;
  color: var(--c);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--c) 34%, transparent);
  background: color-mix(in srgb, var(--c) 8%, transparent);
}
@supports not (color: color-mix(in srgb, red, blue)) {
  .art-cat { border-color: rgba(37, 99, 235, .3); background: rgba(37, 99, 235, .07); }
}
.art-read {
  font-family: var(--font-ui);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink-muted);
  font-variant-numeric: tabular-nums;
}

.art-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.22;
  color: var(--ink);
  margin: 0 0 10px;
  font-size: clamp(19px, 2.1vw, 23px);
  text-wrap: balance;
}
.art-feat .art-title { font-size: clamp(24px, 3.1vw, 36px); margin-bottom: 14px; }

.art-exc {
  margin: 0 0 16px;
  font-size: 14.5px;
  line-height: 1.68;
  color: var(--ink-soft);
}
.art-feat .art-exc { font-size: clamp(15px, 1.6vw, 17px); max-width: 52ch; }

.art-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary);
}
.art-more svg { transition: transform .4s var(--art-ease); }
:dir(rtl) .art-more svg { transform: scaleX(-1); }
@media (hover: hover) {
  .art-card:hover .art-more svg,
  .art-feat:hover .art-more svg { transform: translateX(4px); }
  :dir(rtl) .art-card:hover .art-more svg,
  :dir(rtl) .art-feat:hover .art-more svg { transform: scaleX(-1) translateX(4px); }
}

/* ── closing band ── */
.art-cta {
  margin-top: 46px;
  padding: 40px 34px;
  border-radius: 32px;
  text-align: center;
  background: var(--art-dark);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.art-cta::before {
  content: '';
  position: absolute;
  inset-inline: -10%;
  top: -60%;
  height: 200%;
  pointer-events: none;
  background:
    radial-gradient(38% 42% at 26% 62%, rgba(37, 99, 235, .40), transparent 70%),
    radial-gradient(34% 38% at 76% 46%, rgba(6, 182, 212, .26), transparent 72%);
  filter: blur(10px);
}
.art-cta-t {
  position: relative;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(21px, 2.7vw, 30px);
  letter-spacing: -.025em;
  line-height: 1.28;
  color: #fff;
  margin: 0 0 12px;
  text-wrap: balance;
}
.art-cta-p {
  position: relative;
  margin: 0 auto 22px;
  max-width: 54ch;
  font-size: 15px;
  line-height: 1.66;
  color: rgba(255, 255, 255, .80);
}
.art-cta .btn { position: relative; }
@media (max-width: 560px) { .art-cta { padding: 30px 20px; border-radius: 26px; } }

/* ═════════════════════ article reading page ═════════════════════ */

/* Reading progress. A 3px rail under the fixed nav, driven from JS with a
   transform (never width — width relayouts the bar every frame). */
.artc-progress {
  position: fixed;
  top: 0;
  inset-inline: 0;
  height: 3px;
  z-index: 60;
  pointer-events: none;
  background: transparent;
}
.artc-progress i {
  display: block;
  height: 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: var(--em-gradient);
  box-shadow: 0 0 12px rgba(37, 99, 235, .5);
}
:dir(rtl) .artc-progress i { transform-origin: 100% 50%; }

.artc-section { padding: 0 0 76px; background: var(--canvas); }

.artc-crumbs {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  font-size: 12.5px;
  color: var(--ink-muted);
}
.artc-crumbs a { color: var(--ink-muted); text-decoration: none; }
.artc-crumbs a:hover { color: var(--primary); text-decoration: underline; }
.artc-crumbs span { color: var(--ink-faint); }

.artc-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4.1vw, 52px);
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--ink);
  margin: 0 0 18px;
  /* A 52px headline running the full 1280px container is far past a readable
     measure; cap it so it wraps at roughly two lines. */
  max-width: 900px;
  text-wrap: balance;
}
.artc-h1 em {
  font-style: normal;
  background: var(--em-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.artc-lead {
  font-size: clamp(16px, 1.9vw, 20px);
  line-height: 1.62;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 22px;
  font-weight: 500;
}
.artc-byline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-bottom: 26px;
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-muted);
  font-variant-numeric: tabular-nums;
}
.artc-byline img { height: 22px; width: auto; display: block; }
.artc-byline b { font-weight: 700; color: var(--ink-soft); }

.artc-cover {
  border-radius: 26px;
  aspect-ratio: 21 / 8;
  margin-bottom: 40px;
}
/* The card-sized glow (72% of a 16:10 tile) becomes a flood on a 21:8 banner —
   it washed the navy out to a flat orange field. Keep it a corner bloom. */
.artc-cover .art-glow { width: 34%; opacity: .34; top: -34%; inset-inline-end: -4%; }
.artc-cover .art-mark { width: 116px; height: 116px; border-radius: 32px; }
.artc-cover .art-mark svg { width: 56px; height: 56px; }
.artc-cover .art-ring { width: 190px; height: 190px; }
.artc-cover .art-ring.r2 { width: 260px; height: 260px; }
@media (max-width: 760px) {
  .artc-cover { aspect-ratio: 16 / 10; border-radius: 20px; margin-bottom: 28px; }
  .artc-cover .art-mark { width: 90px; height: 90px; border-radius: 26px; }
  .artc-cover .art-mark svg { width: 44px; height: 44px; }
  .artc-cover .art-ring { width: 146px; height: 146px; }
  .artc-cover .art-ring.r2 { width: 198px; height: 198px; }
}

/* ── wide reading layout: prose column + sticky side rail ──
   The old single 68ch centered column read well but wasted the page; the
   owner asked the article to OWN its width. The prose now fills the main
   grid column and the reclaimed space carries a working rail: in-page nav,
   the four real brand numbers, and the call to action. */
.artc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 56px;
  align-items: start;
  margin-top: 40px;
}
.artc-main { min-width: 0; }

.artc-rail {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* Rubik, not mono: the mono stack has no Hebrew, so the label fell back
   mid-font and the Latin tracking spaced the Hebrew out. */
.artc-rail-t {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-muted);
  margin: 0 0 12px;
}
.artc-toc,
.artc-nums {
  padding: 20px 20px 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--art-hair);
  box-shadow: 0 10px 30px -24px rgba(16, 20, 36, .35);
}
.artc-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.artc-toc a {
  display: block;
  padding: 7px 10px;
  border-radius: 10px;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--ink-soft);
  text-decoration: none;
  border-inline-start: 2px solid transparent;
  transition: background .2s, color .2s, border-color .2s;
}
.artc-toc a:hover {
  background: rgba(37, 99, 235, .06);
  color: var(--primary);
  border-inline-start-color: var(--primary);
}
.artc-nums { display: flex; flex-direction: column; }
.artc-num {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 9px 2px;
}
.artc-num + .artc-num { border-top: 1px solid rgba(0, 0, 0, .05); }
.artc-num b {
  flex: 0 0 auto;
  min-width: 74px;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -.02em;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}
.artc-num span { font-size: 12.5px; line-height: 1.45; color: var(--ink-muted); }
.artc-rail-cta { width: 100%; text-align: center; }

@media (max-width: 1020px) {
  .artc-layout { grid-template-columns: 1fr; gap: 34px; margin-top: 28px; }
  .artc-rail { position: static; top: auto; }
  /* A table of contents below the article it navigates is noise — drop it;
     the numbers and the CTA still earn their place at the end. */
  .artc-toc { display: none; }
}

/* ── prose ── */
.artc-body { max-width: none; margin-inline: 0; }
.artc-body h2 {
  /* TOC anchors land under the fixed nav without this. */
  scroll-margin-top: 104px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(21px, 2.5vw, 29px);
  line-height: 1.25;
  letter-spacing: -.025em;
  color: var(--ink);
  margin: 46px 0 14px;
  text-wrap: balance;
}
.artc-body h3 {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: clamp(16.5px, 1.8vw, 19px);
  line-height: 1.35;
  color: var(--ink);
  margin: 30px 0 10px;
}
.artc-body p {
  margin: 0 0 18px;
  font-size: clamp(16px, 1.75vw, 18px);
  line-height: 1.85;
  color: var(--ink-soft);
}
.artc-body strong { color: var(--ink); font-weight: 700; }
.artc-body a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.artc-body a:hover { text-decoration-thickness: 2px; }

.artc-body ul, .artc-body ol { margin: 0 0 20px; padding-inline-start: 1.35em; }
.artc-body li {
  margin-bottom: 9px;
  font-size: clamp(15.5px, 1.7vw, 17px);
  line-height: 1.75;
  color: var(--ink-soft);
}
.artc-body li::marker { color: var(--primary); font-weight: 700; }

/* Pull quote — the one editorial flourish. Uses the site's em-gradient bar. */
.artc-pull {
  margin: 32px 0;
  padding-inline-start: 22px;
  border-inline-start: 3px solid transparent;
  border-image: var(--em-gradient) 1;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.42;
  letter-spacing: -.02em;
  color: var(--ink);
  text-wrap: balance;
}

/* Checklist / takeaway box */
.artc-box {
  margin: 34px 0;
  padding: 24px 26px;
  border-radius: 22px;
  background: var(--canvas-soft);
  border: 1px solid var(--art-hair);
}
.artc-box-t {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .01em;
  color: var(--ink);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.artc-box-t svg { flex: 0 0 auto; stroke: var(--primary); fill: none; stroke-width: 2; }
.artc-box ul { margin: 0; padding-inline-start: 1.2em; }
.artc-box li { font-size: 15px; margin-bottom: 8px; }
.artc-box li:last-child { margin-bottom: 0; }
@media (max-width: 560px) { .artc-box { padding: 18px 18px; border-radius: 18px; } }

/* ── figures: inline SVG diagrams inside the prose ── */
.artc-fig {
  margin: 38px 0;
  padding: 30px 26px 20px;
  border-radius: 22px;
  background: var(--canvas-soft);
  border: 1px solid var(--art-hair);
}
.artc-fig svg { width: 100%; height: auto; display: block; }
.artc-fig svg text { font-family: var(--font-body); }
/* Phones: shrinking a 760-unit viewBox to ~350px makes the labels ~6px.
   Keep the drawing legible and let the FIGURE scroll sideways instead —
   the page itself must never scroll horizontally. */
@media (max-width: 680px) {
  .artc-fig { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .artc-fig svg { min-width: 560px; }
}
.artc-fig figcaption {
  margin-top: 14px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-muted);
  text-align: center;
}
@media (max-width: 560px) { .artc-fig { padding: 20px 14px 14px; border-radius: 18px; } }

/* ── research numbers: verified external data, cited in place ── */
.artc-research-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 700px) { .artc-research-grid { grid-template-columns: 1fr; } }
.artc-stat {
  background: #fff;
  border: 1px solid var(--art-hair);
  border-radius: 18px;
  padding: 20px 18px 18px;
}
.artc-stat b {
  display: block;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: clamp(24px, 2.6vw, 30px);
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--c, var(--primary));
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.artc-stat span {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.artc-src {
  margin: 16px 2px 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-muted);
}

/* ── article footer: CTA + next reads ── */
.artc-foot { max-width: none; margin: 52px 0 0; }
.artc-foot-cta {
  padding: 30px 28px;
  border-radius: 26px;
  background: var(--canvas-soft);
  border: 1px solid var(--art-hair);
  text-align: center;
}
.artc-foot-cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(19px, 2.3vw, 25px);
  letter-spacing: -.025em;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 10px;
  text-wrap: balance;
}
.artc-foot-cta p {
  margin: 0 auto 20px;
  max-width: 46ch;
  font-size: 14.5px;
  line-height: 1.66;
  color: var(--ink-muted);
}

.artc-next { margin-top: 40px; }
.artc-next-t {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 14px;
}
.artc-next-list { display: grid; gap: 10px; }
.artc-next-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--art-hair);
  transition: transform .4s var(--art-ease), box-shadow .4s var(--art-ease), border-color .3s;
}
.artc-next-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, .3);
  box-shadow: 0 10px 26px -14px rgba(16, 20, 36, .4);
}
.artc-next-list a:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.artc-next-ic {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--art-dark);
}
.artc-next-ic svg { width: 19px; height: 19px; stroke: var(--c); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.artc-next-tx { flex: 1 1 auto; min-width: 0; }
.artc-next-tx b {
  display: block;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.35;
  letter-spacing: -.01em;
}
.artc-next-tx span { font-size: 12.5px; color: var(--ink-muted); }
.artc-next-list a > svg { flex: 0 0 auto; stroke: var(--ink-faint); fill: none; stroke-width: 2; }
:dir(rtl) .artc-next-list a > svg { transform: scaleX(-1); }

/* ── reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .art-feat, .art-card, .art-mark, .art-more svg,
  .artc-next-list a, .artc-progress i {
    transition-duration: .001ms !important;
  }
}
