/* ============================================================
   Saopštenje: editorial timeline
   Light, NYT-inspired: serif text, sans labels, generous space
   ============================================================ */

:root {
  --paper: #fcfcfa;
  --paper-2: #f3f1ea;
  --ink: #131210;
  --ink-soft: #34312b;
  --muted: #767169;
  --rule: #e7e2d7;
  --hair: #e7e2d7;
  --accent: #14635b;       /* deep teal, for text labels (good contrast) */
  --accent-2: #1d8579;     /* brighter teal, for graphical pops */
  --maxw: 44rem;           /* reading measure ~704px */
  --gutter: clamp(1.1rem, 5vw, 2rem);

  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --display: "Fraunces", Georgia, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  overflow-x: clip; /* backstop against any sub-pixel margin-note overflow */
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.72;
  font-feature-settings: "kern" 1, "liga" 1, "onum" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) 5rem;
}

/* ---------- reading progress ---------- */
.progress {
  position: fixed; inset: 0 0 auto 0;
  height: 3px; background: transparent; z-index: 60;
}
.progress__bar {
  display: block; height: 100%; width: 0%;
  background: var(--accent-2);
  transition: width 90ms linear;
}

/* ---------- sticky mini-masthead ---------- */
.mini {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; gap: .5rem;
  padding: .7rem var(--gutter);
  background: rgba(252, 252, 250, .94);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--hair);
  font-family: var(--sans);
  transform: translateY(-110%);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.mini.is-shown { transform: translateY(0); }
.mini__label { font-weight: 700; letter-spacing: .02em; font-size: .82rem; }
.mini__sep { color: var(--muted); }
.mini__sub { color: var(--accent); font-weight: 700; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; }

/* ---------- masthead ---------- */
.masthead { padding: clamp(3rem, 9vw, 5.5rem) 0 1.6rem; }

.kicker {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .74rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 1.1rem;
}

.headline {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.3rem, 7.2vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0 0 1.1rem;
  text-wrap: balance;
}

.dek {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 3.4vw, 1.5rem);
  line-height: 1.5;
  color: var(--ink-soft);
  font-style: italic;
  margin: 0 0 1.8rem;
  max-width: 38rem;
}

.byline {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .35rem .9rem;
  font-family: var(--sans);
  font-size: .92rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--ink);
}
.byline__name { font-weight: 700; letter-spacing: .01em; }
.byline time { color: var(--muted); }

/* ---------- key-points summary ---------- */
.summary {
  margin: 2.2rem 0 0;
  padding: 1.4rem 1.55rem 1.5rem;
  background: var(--paper-2);
  border: 1px solid var(--hair);
  border-radius: 4px;
}
.summary__label {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 .95rem;
}
.summary__list { list-style: none; margin: 0; padding: 0; }
.summary__list li {
  position: relative;
  padding-left: 1.45rem;
  margin: 0 0 .8rem;
  font-size: 1.04rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.summary__list li:last-child { margin-bottom: 0; }
.summary__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 7px; height: 7px;
  background: var(--accent-2);
  border-radius: 1px;
}
.summary__list strong { color: var(--ink); font-weight: 600; }

/* ---------- prose ---------- */
.prose p { margin: 0 0 1.25rem; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { font-weight: 600; }
.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  text-decoration-color: rgba(20, 99, 91, .4);
  transition: color .15s ease, text-decoration-color .15s ease;
}
.prose a:hover { text-decoration-color: var(--accent); }

.lead { margin-top: 2rem; }
.lead p:first-of-type { font-size: 1.26rem; }

.dropcap::first-letter {
  font-family: var(--display);
  float: left;
  font-size: 4.4rem;
  line-height: .82;
  font-weight: 900;
  padding: .35rem .6rem 0 0;
  color: var(--ink);
}

/* ---------- evidence note ---------- */
.note {
  margin: 2.4rem 0;
  padding: 1.2rem 1.4rem;
  background: var(--paper-2);
  border-left: 3px solid var(--accent-2);
  border-radius: 2px;
}
.note__mark {
  display: inline-block;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .68rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: .5rem;
}
.note p { margin: 0; font-size: 1.04rem; line-height: 1.6; color: var(--ink-soft); }

/* ---------- section headings ---------- */
.section { margin: 3.4rem 0 0; }
.section__kicker {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 .5rem;
}
.section__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.6rem, 4.6vw, 2.2rem);
  line-height: 1.12;
  margin: 0 0 1.2rem;
  letter-spacing: -0.005em;
}
.section--close { margin-top: 3rem; }

/* ---------- timeline ---------- */
.timeline {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: .4rem; bottom: .4rem;
  left: 7px;
  width: 2px;
  background: linear-gradient(var(--hair), var(--hair));
}

.tl-item {
  position: relative;
  padding: 0 0 2.6rem 2.4rem;
}
.tl-item:last-child { padding-bottom: .5rem; }

.tl-item::before {  /* dot */
  content: "";
  position: absolute;
  left: 0; top: .5rem;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--ink);
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
  z-index: 1;
}
.tl-item.is-active::before { background: var(--accent-2); border-color: var(--accent-2); transform: scale(1.05); }
.tl-item--accent::before { border-color: var(--accent-2); }
.tl-item--accent.is-active::before { background: var(--accent-2); }
.tl-item--plain::before { border-style: dashed; border-color: var(--muted); width: 14px; height: 14px; }

.tl-date {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .76rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 .35rem;
}
.tl-item--plain .tl-date { color: var(--muted); }
.tl-head {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.42rem;
  line-height: 1.18;
  margin: 0 0 .7rem;
}
.tl-item .prose p { font-size: 1.1rem; line-height: 1.66; }

/* ---------- blockquote (the message) ---------- */
.quote {
  margin: 1.2rem 0;
  padding: 1.1rem 1.3rem;
  background: #fff;
  border: 1px solid var(--hair);
  border-left: 3px solid var(--ink);
  border-radius: 2px;
  font-family: var(--serif);
}
.quote p {
  margin: 0 0 .6rem;
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.55;
}
.quote cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .01em;
}

/* ---------- elapsed-time pill (shows how long it dragged on) ---------- */
.tl-elapsed {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .69rem;
  letter-spacing: .02em;
  color: var(--muted);
  background: var(--paper-2);
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: .14rem .62rem;
  margin: 0 0 .85rem;
}

/* ---------- accountability side notes ---------- */
/* Mobile-first: a clear, tappable disclosure card (icon + title + hint). */
.sidenote {
  margin: 1.2rem 0 .2rem;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(18,18,16,.04), 0 12px 28px -22px rgba(18,18,16,.45);
}
.sidenote__label {
  display: flex;
  align-items: center;
  gap: .75rem;
  cursor: pointer;
  list-style: none;
  padding: .8rem .85rem;
  transition: background .2s ease;
  -webkit-tap-highlight-color: transparent;
}
.sidenote__label:hover { background: rgba(20,99,91,.04); }
.sidenote__label::-webkit-details-marker { display: none; }
.sidenote__icon {
  flex: none;
  width: 2.3rem; height: 2.3rem;
  border-radius: 10px;
  background: rgba(20,99,91,.10);
  display: flex; align-items: center; justify-content: center;
}
.sidenote__icon svg { width: 1.15rem; height: 1.15rem; color: var(--accent); }
.sidenote__labeltext { display: flex; flex-direction: column; gap: .12rem; flex: 1 1 auto; min-width: 0; }
.sidenote__title {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .68rem;
  font-weight: 700;
  color: var(--ink);
}
.sidenote__hint {
  font-family: var(--sans);
  font-size: .8rem;
  line-height: 1.35;
  color: var(--muted);
}
.sidenote[open] .sidenote__hint { display: none; }
.sidenote__chev {
  flex: none;
  width: .5rem; height: .5rem;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform .25s ease;
  margin: -2px .25rem 0 0;
}
.sidenote[open] .sidenote__chev { transform: rotate(-135deg); margin-top: 2px; }
.sidenote p {
  margin: 0;
  padding: .75rem .95rem .9rem;
  border-top: 1px solid var(--hair);
  font-family: var(--sans);
  font-size: .92rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* Wide screens: minimal right-margin marginalia, always open. */
@media (min-width: 1200px) {
  .sidenote {
    position: absolute;
    top: .3rem;
    left: 100%;
    width: min(13rem, calc(50vw - 26rem));
    margin: 0 0 0 2.2rem;
    background: transparent;
    border: 0;
    border-left: 2px solid var(--hair);
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
  }
  .sidenote__label { padding: 0 0 .25rem 1rem; gap: 0; cursor: default; pointer-events: none; }
  .sidenote__label:hover { background: transparent; }
  .sidenote__icon, .sidenote__hint, .sidenote__chev { display: none; }
  .sidenote__title { color: var(--accent); font-size: .62rem; letter-spacing: .1em; }
  .sidenote p { padding: 0 0 0 1rem; font-size: .82rem; border-top: 0; }
  .tl-item--accent .sidenote { border-left-color: var(--accent-2); }
}

/* ---------- exhibit / comparison ---------- */
.exhibit {
  margin: 3.6rem 0 0;
  padding: 2rem var(--gutter);
  background: var(--paper-2);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  /* break out of the reading column a touch */
  width: 100%;
}
.exhibit__lead { margin: 0 0 1.4rem; color: var(--ink-soft); }
.compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
  border-radius: 3px;
  overflow: hidden;
}
.compare__col { background: #fff; padding: 1.1rem 1.15rem 1.3rem; }
.compare__label {
  font-family: var(--sans);
  font-weight: 700;
  font-size: .76rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  margin: 0 0 .6rem;
  padding-bottom: .55rem;
  border-bottom: 1px solid var(--hair);
  /* reserve two lines so headers, underlines and first items align across columns */
  min-height: 2.7rem;
  display: flex;
  align-items: flex-start;
}
.compare__body {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.compare__evidence {
  margin: 1.6rem 0 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink);
}
/* itemized claims, highlighted like a marker; color = who put the item forward */
.claimlist { list-style: none; margin: 0; padding: 0; }
.claim {
  margin: 0 0 0.5rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--ink);
}
.claim:last-child { margin-bottom: 0; }
.mk {
  padding: 0.05em 0.3em;
  border-radius: 0.14em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.mk--ivan { background: rgba(29, 133, 121, 0.30); }
.mk--lazar { background: rgba(43, 92, 173, 0.30); }
.mk--kampanja { background: rgba(124, 116, 107, 0.26); }
/* two people: two distinct flat colors, hard split down the middle */
.mk--both { background: linear-gradient(90deg, rgba(29, 133, 121, 0.42) 0 50%, rgba(43, 92, 173, 0.40) 50% 100%); }

/* interactive verdict layer: flag gear that material evidence shows was never damaged */
.verdict-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.2rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 0.42rem 0.9rem;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.verdict-toggle::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--muted);
  transition: background 0.15s ease;
}
.verdict-toggle[aria-pressed="true"] { border-color: var(--accent-2); color: var(--ink); }
.verdict-toggle[aria-pressed="true"]::before { background: var(--accent-2); }
.verdict-toggle:hover { border-color: var(--accent); }
.claim__tag {
  display: none;
  margin-top: 0.12rem;
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8a2f2f;
}
.compare.show-verdict .claim--phantom .mk {
  text-decoration: line-through;
  text-decoration-color: rgba(138, 47, 47, 0.6);
  text-decoration-thickness: 2px;
  opacity: 0.72;
}
.compare.show-verdict .claim--phantom .claim__tag { display: block; }
.compare__none {
  margin: 0.7rem 0 0;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--muted);
}
.compare__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
  margin: 1.2rem 0 0;
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--muted);
}
.legend__title { font-weight: 700; color: var(--ink-soft); }
.legend__item { display: inline-flex; align-items: center; gap: 0.4rem; }
.legend__dot {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  flex: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.legend__dot--ivan { background: #1d8579; }
.legend__dot--lazar { background: #2b5cad; }
.legend__dot--kampanja { background: #7c746b; }
.legend__dot--split { background: linear-gradient(90deg, #1d8579 0 50%, #2b5cad 50% 100%); }
.compare__note {
  margin: 1rem 0 0;
  font-family: var(--sans);
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
}
/* fourth, non-public source: set on white so it reads as a separate exhibit */
.compare__addendum {
  margin: 1.4rem 0 0;
  padding: 1.1rem 1.25rem;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02), 0 14px 32px -28px rgba(0, 0, 0, 0.5);
}
.compare__addendum-label {
  margin: 0 0 0.35rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.compare__addendum p:last-child {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
/* embedded Instagram posts (their public statements), slideable in place */
.igembed {
  margin: 1.7rem auto;
  max-width: 460px;
}
.igembed iframe {
  display: block;
  width: 100%;
  height: 680px;
  border: 1px solid var(--hair);
  border-radius: 12px;
  background: #fff;
}
.igembed__cap {
  margin: 0.55rem 0 0;
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}
.igembed__cap a { color: var(--accent); }
/* gentle set-apart aside (soft tint, rounded, no border, no left bar) */
.aside-soft {
  margin: 1.7rem 0 0;
  padding: 1.15rem 1.3rem;
  background: var(--paper-2);
  border-radius: 14px;
}
.aside-soft__label {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.45rem;
}
.aside-soft p:last-child { margin: 0; }

/* ---------- tribute ---------- */
.tribute {
  margin: 3.6rem 0 0;
  padding: 2.2rem 1.8rem;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 4px;
  box-shadow: 0 1px 0 rgba(0,0,0,.02), 0 18px 40px -34px rgba(0,0,0,.5);
}
.tribute__kicker {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 .4rem;
}
.tribute__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  margin: 0 0 1.1rem;
  line-height: 1.05;
}

/* ---------- footer ---------- */
.footer {
  margin-top: 4rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--ink);
}
.footer__sign {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 0 .15rem;
}
.footer__date { font-family: var(--sans); font-size: .9rem; color: var(--muted); margin: 0 0 1rem; }
.footer__note { font-family: var(--sans); font-size: .82rem; line-height: 1.5; color: var(--muted); margin: 0; max-width: 34rem; }

/* ---------- back to top ---------- */
.totop {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 55;
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  border: 1px solid var(--hair);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  color: var(--ink);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 6px 22px -12px rgba(0,0,0,.5);
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.totop.is-shown { opacity: 1; transform: translateY(0); pointer-events: auto; }
.totop:hover { background: #fff; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 620px) {
  body { font-size: 1.1rem; }
  .compare { grid-template-columns: 1fr; }
  .compare__label { min-height: 0; }
  .compare__col + .compare__col { border-top: 1px solid var(--hair); }
  .exhibit { padding: 1.6rem var(--gutter); }
  .tribute { padding: 1.6rem 1.3rem; }
  .lead p:first-of-type { font-size: 1.18rem; }
  .igembed iframe { height: 520px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .tl-item::before, .mini, .totop, .progress__bar { transition: none; }
}

/* ---------- chat screenshots (evidence) ---------- */
.chatshot {
  margin: 1.7rem auto;
  max-width: 320px;
}
/* wide (landscape) screenshots fill the reading column instead of phone width */
.chatshot--wide {
  max-width: 100%;
}
/* source row under a figure: a quiet "watch the clip" button + a plain source link */
.tl-sources {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem 1rem;
  margin: 1rem 0 0;
}
.medialink {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--hair);
  border-radius: 999px;
  background: var(--paper);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.medialink svg { width: 1.05em; height: 1.05em; flex: none; }
.medialink:hover { border-color: var(--accent); background: var(--paper-2); }
.tl-source-link {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--hair);
}
.tl-source-link:hover { color: var(--accent); border-color: var(--accent); }
.chatshot__media {
  display: block;
  position: relative;
  line-height: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--hair);
  background: #111;
  box-shadow: 0 1px 2px rgba(18, 18, 16, 0.05), 0 20px 44px -28px rgba(18, 18, 16, 0.6);
  cursor: zoom-in;
}
.chatshot__media img {
  display: block;
  width: 100%;
  height: auto;
}
.chatshot__zoom {
  position: absolute;
  right: 0.55rem;
  bottom: 0.55rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  padding: 0.28rem 0.58rem;
  border-radius: 999px;
  opacity: 0.92;
  transition: opacity 0.15s ease;
}
.chatshot__media:hover .chatshot__zoom { opacity: 1; }
.chatshot__cap {
  margin: 0.6rem 2px 0;
  font-family: var(--sans);
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--muted);
  text-align: center;
}
.chatshot__label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.64rem;
  font-weight: 700;
  color: var(--accent);
  margin-right: 0.4rem;
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  background: rgba(8, 8, 8, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img {
  display: block;
  max-width: min(1040px, 100%);
  width: auto;
  height: auto;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
}
.lightbox__close {
  position: fixed;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.26); }
@media (prefers-reduced-motion: reduce) {
  .lightbox, .chatshot__zoom { transition: none; }
}

/* ---------- full-bleed Mionica hero (scroll reveal) ---------- */
.hero {
  position: relative;
  left: 50%;
  width: 100vw;
  margin: 2.6rem 0 0;
  margin-left: -50vw;
  height: min(86vh, 820px);
  min-height: 360px;
  overflow: hidden;
  background: var(--paper-2);
}
.hero__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
/* Dissolve into the page at top and bottom so the image emerges softly and the
   article text peeks through. Bottom is stronger; top is a gentle fade. */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}
.hero::before {
  top: 0;
  height: 24%;
  background: linear-gradient(to top, rgba(252, 252, 250, 0) 0%, var(--paper) 100%);
}
.hero::after {
  bottom: 0;
  height: 45%;
  background: linear-gradient(
    to bottom,
    rgba(252, 252, 250, 0) 0%,
    rgba(252, 252, 250, 0.55) 55%,
    var(--paper) 100%
  );
}
.hero__cap {
  position: absolute;
  z-index: 2;
  left: clamp(1rem, 5vw, 3rem);
  bottom: clamp(1.1rem, 4vh, 2.4rem);
  max-width: min(30rem, 86%);
  margin: 0;
  padding: 0.62rem 0.85rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  line-height: 1.45;
  color: #fff;
  background: rgba(18, 18, 16, 0.55);
  backdrop-filter: blur(6px);
  border-radius: 10px;
}
@media (max-width: 620px) {
  .hero { height: min(74vh, 620px); }
  .hero__cap { font-size: 0.76rem; }
}

/* focus visibility */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

::selection { background: rgba(29,133,121,.18); }
