/* ─── ARTICLE PAGE — pagina dettaglio news ────────────────────────────
   Nessuna dipendenza da Bootstrap. Usa i token di shell.css.
──────────────────────────────────────────────────────────────────── */

/* ══════════════════════════════════════════════════
   READING PROGRESS BAR
══════════════════════════════════════════════════ */
.ar-progress {
  position: fixed; top: 0; left: 0; z-index: 2000;
  width: 0; height: 3px;
  background: var(--teal);
  transition: width .1s linear;
  pointer-events: none;
}

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.ar-hero {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
/* larghezza e padding laterali: .container di Bootstrap (stessa della home) */
.ar-hero__body {
  position: relative; z-index: 2;
  padding-top: 38px; padding-bottom: 32px;
}

/* Breadcrumb */
.ar-hero__breadcrumb {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  font-family: var(--f-b); font-size: 12px;
  color: rgba(255,255,255,.38); margin-bottom: 16px;
}
.ar-hero__breadcrumb a {
  color: rgba(255,255,255,.38); text-decoration: none; transition: color .2s;
}
.ar-hero__breadcrumb a:hover { color: var(--teal); }
.ar-hero__breadcrumb-sep { opacity: .3; }

.ar-hero__cat { margin-bottom: 14px; }

.ar-hero__h1 {
  font-family: var(--f-d);
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  font-weight: 700; color: #fff;
  line-height: 1.07; letter-spacing: -.028em;
  max-width: none; margin-bottom: 18px;
}
.ar-hero__meta {
  display: flex; align-items: center; flex-wrap: wrap;
  font-family: var(--f-b); font-size: 13px;
  color: rgba(255,255,255,.46);
}
.ar-hero__meta-sep  { margin: 0 10px; opacity: .28; }
.ar-hero__meta a    { color: rgba(255,255,255,.52); text-decoration: none; transition: color .2s; }
.ar-hero__meta a:hover { color: var(--teal); }
.ar-hero__readtime  { display: inline-flex; align-items: center; gap: 5px; }

/* ── Meta ricca: firma in evidenza + strip dati con icone ─────────────
   Gerarchia: l'autore è l'unica voce ad alto contrasto; data, tempo di
   lettura e letture lo seguono, distinte dall'icona.
   Tutto su una sola riga, allineato sulla linea di base del testo. */
.ar-hero__meta--rich {
  display: flex; align-items: baseline; flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 20px;
}

/* Firma — kicker e nome sulla stessa riga */
.ar-byline {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
  padding-left: 13px;
  border-left: 2px solid var(--teal);
}
.ar-byline__kicker {
  font-family: var(--f-b);
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .16em;
  color: rgba(255,255,255,.34);
}
.ar-byline__name {
  font-family: var(--f-d);
  font-size: 16px; font-weight: 700;
  letter-spacing: -.012em; line-height: 1.15;
  color: #fff;
}

/* Strip dati */
.ar-stats {
  display: flex; align-items: baseline; flex-wrap: wrap;
  gap: 8px 20px;
}
.ar-stat {
  position: relative;
  display: inline-flex; align-items: baseline; gap: 7px;
  font-family: var(--f-b); font-size: 13px; line-height: 1;
  color: rgba(255,255,255,.42);
}
/* hairline al posto dei puntini: separa senza aggiungere rumore */
.ar-stat + .ar-stat::before {
  content: ''; position: absolute; left: -10px;
  top: -1px; height: 14px;
  width: 1px;
  background: rgba(255,255,255,.14);
}
/* l'icona non ha linea di base propria: la si abbassa per farla sedere
   sulla stessa riga del testo accanto */
.ar-stat__ico {
  display: inline-flex;
  transform: translateY(2px);
  color: var(--teal); opacity: .75;
}
.ar-stat__val {
  color: rgba(255,255,255,.9); font-weight: 600;
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1;
}
.ar-stat__unit { color: rgba(255,255,255,.42); }
.ar-hero__fotodi {
  display: block; margin-top: 10px;
  font-family: var(--f-b); font-size: 11px;
  font-style: italic; color: rgba(255,255,255,.28);
}

/* ══════════════════════════════════════════════════
   LAYOUT — 2 colonne desktop, 1 colonna mobile
══════════════════════════════════════════════════ */
.ar-layout { background: var(--paper); padding: 52px 0 80px; }
.ar-layout__inner {
  display: grid;
  /* minmax(0,·) e non 1fr: il minimo automatico di una traccia 1fr è il
     min-content del suo contenuto, e i banner AdSense in modalità full-width
     mobile si auto-impostano width:100vw + margin-left negativo per sfondare
     il padding del container. Con 1fr quella misura allargava la traccia
     (351 → 363px) e tutto il contenuto perdeva il margine destro. */
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 60px; align-items: start;
}
/* le colonne non devono allargarsi oltre la loro traccia:
   senza questo, una tabella larga (nowrap) sfonda il layout */
.ar-main, .ar-sidebar { min-width: 0; }

/* ══════════════════════════════════════════════════
   FOTO ARTICOLO (visibile a inizio contenuto)
══════════════════════════════════════════════════ */
.ar-article-photo {
  margin: 0 0 36px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(0,0,0,.13);
}
.ar-article-photo__frame { position: relative; display: block; }
.ar-article-photo img {
  width: 100%; display: block;
  /*aspect-ratio: 16 / 9;*/
  object-fit: cover; object-position: center 35%;
}
/* Tasto "Galleria" in basso a destra sulla prima foto */
.ar-photo-gallery-btn {
  position: absolute; right: 14px; bottom: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 15px; border: 0; border-radius: 100px; cursor: pointer;
  font-family: var(--f-b); font-size: 13px; font-weight: 700; line-height: 1;
  color: #fff; background: rgba(14,12,11,.82);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  box-shadow: 0 4px 18px rgba(0,0,0,.32);
  transition: background .2s, transform .2s;
}
.ar-photo-gallery-btn:hover { background: var(--teal); transform: translateY(-2px); }
.ar-photo-gallery-btn svg { flex-shrink: 0; }
.ar-photo-gallery-btn__count {
  background: rgba(255,255,255,.22); border-radius: 100px;
  padding: 2px 8px; font-size: 12px;
}
@media (max-width: 600px) {
  .ar-photo-gallery-btn { right: 10px; bottom: 10px; padding: 8px 13px; font-size: 12px; }
}
.ar-article-photo__caption {
  font-family: var(--f-b); font-size: 11px;
  color: var(--muted); font-style: italic;
  padding: 8px 14px;
  background: var(--warm);
  text-align: right;
}

/* ══════════════════════════════════════════════════
   CORPO ARTICOLO
══════════════════════════════════════════════════ */
.ar-body {
  font-family: var(--f-b);
  font-size: 18px; line-height: 1.74;
  color: var(--ink);

  word-break: break-word; overflow-wrap: break-word;
}
.ar-body a    { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.ar-body strong { font-weight: 700; }
.ar-body em   { font-style: italic; }

/* pill di copyright inserita nel testo */
.ar-body .copyright {
  display: block;
  font-family: var(--f-d); font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; color: var(--muted);
  background: var(--warm); border-left: 2px solid var(--teal);
  padding: 5px 12px; margin: .7em 0;
}

.ar-body-ad { margin: 32px 0; text-align: center; }

/* ══════════════════════════════════════════════════
   ALLEGATO
══════════════════════════════════════════════════ */
.ar-allegato {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 18px 0 28px;
  font-family: var(--f-d); font-size: 13px; font-weight: 600;
  color: var(--ink); background: var(--warm);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 10px 18px; text-decoration: none;
  transition: border-color .2s, color .2s;
}
.ar-allegato:hover { border-color: var(--teal); color: var(--teal); }
.ar-allegato svg { flex-shrink: 0; }

/* ══════════════════════════════════════════════════
   COPYRIGHT (riga fissa a fine articolo)
══════════════════════════════════════════════════ */
.ar-copyright {
  margin: 18px 0 4px;
  font-family: var(--f-d); font-size: 12px; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; color: var(--muted);
}
.ar-copyright span { color: var(--ink); }

/* ══════════════════════════════════════════════════
   SHARE BAR
══════════════════════════════════════════════════ */
.ar-share {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  margin: 40px 0; padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ar-share__label {
  font-family: var(--f-d); font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); margin-right: 4px; white-space: nowrap;
}
.ar-share__btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-d); font-size: 12px; font-weight: 600;
  padding: 8px 16px; border-radius: 100px;
  border: 1px solid var(--border); background: transparent;
  color: var(--ink); cursor: pointer;
  text-decoration: none; transition: all .2s;
}
.ar-share__btn:hover { border-color: var(--teal); color: var(--teal); }
.ar-share__btn svg  { flex-shrink: 0; width: 14px; height: 14px; }
.ar-share__copied {
  font-family: var(--f-d); font-size: 11px; font-weight: 600;
  color: var(--teal); display: none;
}
.ar-share__copied.show { display: inline; }

/* ══════════════════════════════════════════════════
   COPYRIGHT
══════════════════════════════════════════════════ */
.ar-copyright {
  font-family: var(--f-b); font-size: 12px; font-weight: 600;
  letter-spacing: .3px; color: var(--muted); margin-bottom: 36px;
}

/* ══════════════════════════════════════════════════
   BOX AUTORI (fino a 3 affiancati su desktop)
══════════════════════════════════════════════════ */
.ar-authors {
  display: flex; flex-direction: row; flex-wrap: wrap;
  gap: 12px; margin-bottom: 40px;
}
.ar-author {
  display: flex; align-items: center; gap: 14px;
  flex: 1 1 calc(33.333% - 8px); min-width: 180px;
  background: var(--warm); border-radius: 10px; padding: 16px 20px;
}
.ar-author__photo {
  width: 52px; height: 52px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0; background: var(--border);
}
.ar-author__photo img { width: 100%; height: 100%; object-fit: cover; }
.ar-author__role {
  font-family: var(--f-d); font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 3px;
}
.ar-author__name {
  font-family: var(--f-d); font-size: 15px; font-weight: 700; color: var(--ink);
}
.ar-author a { text-decoration: none; color: inherit; }
.ar-author a:hover .ar-author__name { color: var(--teal); }

/* ══════════════════════════════════════════════════
   COMMENTI
══════════════════════════════════════════════════ */
.ar-comments-section { margin-top: 8px; }

.ar-comment-toggle {
  display: block; width: 100%; text-align: center;
  font-family: var(--f-d); font-size: 14px; font-weight: 700;
  padding: 16px; border-radius: 10px;
  background: var(--ink); color: #fff;
  border: none; cursor: pointer; transition: background .2s;
  margin-bottom: 16px;
}
.ar-comment-toggle:hover { background: var(--dark-2); }

.ar-comment-form { display: none; }
.ar-comment-form.open { display: block; }
.ar-comment-form form {
  background: var(--warm); border-radius: 10px;
  padding: 24px; margin-bottom: 20px;
}
.ar-form-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-bottom: 14px;
}
.ar-field { display: flex; flex-direction: column; gap: 5px; }
.ar-field label {
  font-family: var(--f-d); font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; color: var(--muted);
}
.ar-field input,
.ar-field textarea {
  font-family: var(--f-b); font-size: 14px; color: var(--ink);
  background: #fff; border: 1px solid var(--border);
  border-radius: 7px; padding: 10px 14px; outline: none;
  width: 100%; box-sizing: border-box; transition: border-color .2s;
}
.ar-field input:focus,
.ar-field textarea:focus { border-color: var(--teal); }
.ar-field textarea { resize: vertical; min-height: 90px; }
.ar-field--full { grid-column: 1 / -1; }

.ar-field-privacy {
  grid-column: 1 / -1;
  display: flex; align-items: flex-start; gap: 8px;
  font-family: var(--f-b); font-size: 13px; color: var(--muted);
  margin-top: 4px;
}
.ar-field-privacy input[type="checkbox"] { flex-shrink: 0; margin-top: 3px; }
.ar-field-privacy a { color: var(--teal); }

.ar-honeypot { display: none !important; position: absolute; left: -9999px; }

.ar-submit {
  font-family: var(--f-d); font-size: 13px; font-weight: 700;
  color: var(--ink); background: var(--teal);
  border: none; border-radius: 100px;
  padding: 12px 28px; cursor: pointer; transition: all .2s;
  margin-top: 16px; display: inline-block;
}
.ar-submit:hover { background: var(--teal-d); transform: translateY(-1px); }

/* Commenti esistenti */
.ar-comments-list { margin-top: 28px; }
.ar-comments-title {
  font-family: var(--f-d); font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted);
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.ar-comment-item { padding: 14px 0; border-bottom: 1px solid var(--border); }
.ar-comment-item:last-child { border-bottom: none; }
.ar-comment-item__name {
  font-family: var(--f-d); font-size: 14px; font-weight: 700;
  color: var(--ink); margin-bottom: 5px;
}
.ar-comment-item__text {
  font-family: var(--f-b); font-size: 14px;
  color: #555; line-height: 1.55;
}

/* ══════════════════════════════════════════════════
   SIDEBAR
══════════════════════════════════════════════════ */
.ar-sidebar-sticky { position: sticky; top: 100px; }

/* Gallery thumbnails */
.ar-gallery-box {
  background: var(--warm); border-radius: 10px;
  padding: 18px; margin-bottom: 24px;
}
.ar-gallery-box__title {
  font-family: var(--f-d); font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.ar-gallery-box__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px;
}
.ar-gallery-box__thumb {
  aspect-ratio: 1; overflow: hidden; border-radius: 3px; cursor: pointer;
}
.ar-gallery-box__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(28%);
  transition: filter .3s, transform .4s var(--ease);
}
.ar-gallery-box__thumb:hover img { filter: none; transform: scale(1.1); }

/* ══════════════════════════════════════════════════
   GALLERY INLINE — box "Fotogallery" dentro il testo.
   Sotto i 1100px .ar-sidebar scende in fondo alla pagina e la
   .ar-gallery-box lì dentro non la vede più nessuno: questo box
   compare a 2/3 dell'articolo solo in quel range (vedi leggi-news.php).
══════════════════════════════════════════════════ */
.ar-gallery-inline {
  display: none;
  width: 100%; margin: 28px 0; padding: 0;
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; cursor: pointer; text-align: left;
  font: inherit; color: inherit; appearance: none; -webkit-appearance: none;
  box-shadow: 0 1px 2px rgba(9,9,11,.04), 0 8px 24px rgba(9,9,11,.06);
}
.ar-gallery-inline__top {
  display: flex; align-items: center; gap: 12px; padding: 16px 16px 12px;
}
.ar-gallery-inline__ico {
  width: 40px; height: 40px; border-radius: 12px; background: var(--red);
  display: grid; place-items: center; color: #fff; flex: none;
}
.ar-gallery-inline__h3 {
  font-family: var(--f-d); font-size: 13px; font-weight: 900;
  letter-spacing: .06em; text-transform: uppercase; color: var(--ink);
}
.ar-gallery-inline__frame {
  display: block; position: relative; margin: 0 12px 12px;
  border-radius: 10px; overflow: hidden; aspect-ratio: 16/9;
}
.ar-gallery-inline__grid {
  position: absolute; inset: 0; display: grid;
  grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 1fr); gap: 4px;
}
.ar-gallery-inline__grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
@media (max-width: 1100px) {
  .ar-gallery-inline { display: block; }
  /* la gallery sta già inline nell'articolo: il box in sidebar sarebbe un doppione */
  .ar-gallery-box { display: none; }
}

/* CTA sostienici in sidebar */
.ar-sidebar-support {
  background: var(--dark); border-radius: 10px;
  padding: 24px 20px; text-align: center; margin-bottom: 24px;
}
.ar-sidebar-support__kicker {
  font-family: var(--f-d); font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 10px;
}
.ar-sidebar-support__text {
  font-family: var(--f-b); font-size: 13px;
  color: rgba(255,255,255,.4); line-height: 1.5; margin-bottom: 18px;
}
.ar-sidebar-support__btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--f-d); font-size: 12px; font-weight: 700;
  color: var(--ink); background: var(--teal);
  padding: 10px 20px; border-radius: 100px;
  text-decoration: none; transition: all .2s;
}
.ar-sidebar-support__btn:hover { background: #fff; }

.ar-sidebar-ad { margin-bottom: 20px; text-align: center; }

/* ══════════════════════════════════════════════════
   BOX INFORMAZIONI EVENTO (sidebar di leggi-eventi)
   Stessa famiglia dei box sidebar dell'articolo.
══════════════════════════════════════════════════ */
.ar-evinfo {
  background: var(--warm); border-radius: 10px;
  padding: 20px; margin-bottom: 24px;
}
.ar-evinfo__title {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  font-family: var(--f-d); font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.ar-evinfo__past {
  font-size: 9px; letter-spacing: 1px;
  color: var(--red); background: rgba(200,53,30,.1);
  border-radius: 4px; padding: 3px 7px;
}
.ar-evinfo__row {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 11px 0;
  border-top: 1px solid var(--border);
}
.ar-evinfo__row:first-of-type { border-top: 0; padding-top: 0; }
.ar-evinfo__ico {
  display: inline-flex; color: var(--teal);
  flex-shrink: 0; margin-top: 2px;
}
.ar-evinfo__label {
  display: block;
  font-family: var(--f-b); font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 2px;
}
.ar-evinfo__val {
  display: block;
  font-family: var(--f-b); font-size: 14px; line-height: 1.45;
  color: var(--ink); overflow-wrap: anywhere;
}
.ar-evinfo__val a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--teal); }
.ar-evinfo__val a:hover { color: var(--teal); }
.ar-evinfo__back {
  display: inline-block; margin-top: 16px;
  font-family: var(--f-d); font-size: 12px; font-weight: 700;
  color: var(--ink); text-decoration: none;
  transition: color .2s;
}
.ar-evinfo__back:hover { color: var(--teal); }

/* ══════════════════════════════════════════════════
   ARTICOLI CORRELATI
══════════════════════════════════════════════════ */
.ar-related { background: var(--warm); padding: 72px 0; }
/* .ar-related__inner: larghezza e padding li mette .container di Bootstrap */
.ar-related__hdr {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 28px;
}
.ar-related__label {
  font-family: var(--f-d); font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted);
}
.ar-related__more {
  font-family: var(--f-d); font-size: 12px; font-weight: 600;
  color: var(--teal); text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px; transition: gap .2s;
}
.ar-related__more:hover { gap: 9px; }
.ar-related__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.ar-rel {
  background: var(--paper); border-radius: 8px; overflow: hidden;
  text-decoration: none; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s; cursor: pointer;
}
.ar-rel:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }
.ar-rel__img { aspect-ratio: 3/2; overflow: hidden; }
.ar-rel__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.ar-rel:hover .ar-rel__img img { transform: scale(1.05); }
.ar-rel__body { padding: 14px 16px 18px; flex: 1; }
.ar-rel__cat  { margin-bottom: 8px; }
.ar-rel__title {
  font-family: var(--f-d); font-size: 14px; font-weight: 700;
  color: var(--ink); line-height: 1.3; letter-spacing: -.01em;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .ar-layout__inner { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .ar-sidebar-sticky { position: relative; top: auto; }
  .ar-gallery-box__grid { grid-template-columns: repeat(5, 1fr); }
  .ar-related__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .ar-hero__body { padding-top: 28px; padding-bottom: 24px; }
  .ar-hero__h1 { font-size: clamp(1.55rem, 5.5vw, 2.1rem); line-height: 1.1; }
  .ar-layout { padding: 28px 0 56px; }
  .ar-layout__inner { gap: 32px; }
  .ar-body { font-size: 16px; line-height: 1.68; }
  .ar-body { max-width: 100%; }
  .ar-related { padding: 48px 0; }
  .ar-related__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ar-form-grid { grid-template-columns: 1fr; }
  .ar-authors { flex-direction: column; }
  .ar-author { flex: 1 1 100%; min-width: 0; }
  /* stessa riga di base, va a capo da sé quando lo spazio finisce */
  .ar-hero__meta--rich { gap: 10px 18px; margin-top: 18px; }
  .ar-stats { gap: 8px 18px; }
}
@media (max-width: 480px) {
  .ar-hero__meta-sep { display: none; }
  .ar-byline__name { font-size: 15px; }
  .ar-stat { font-size: 12.5px; }
  /* i dati vanno a capo: l'hairline finirebbe a inizio riga, restano icone + gap */
  .ar-stat + .ar-stat::before { display: none; }
  .ar-related__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .ar-gallery-box__grid { grid-template-columns: repeat(4, 1fr); }
  .ar-share { gap: 6px; }
}

/* ══════════════════════════════════════════════════
   FAQ — box "Risponde l'esperto" in sidebar
══════════════════════════════════════════════════ */
.faq-expert {
  background: var(--warm); border-radius: 10px;
  padding: 22px; margin-bottom: 24px; text-align: center;
}
.faq-expert__label {
  font-family: var(--f-d); font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
}
.faq-expert__photo {
  width: 120px; height: 120px; border-radius: 50%;
  object-fit: cover; margin: 0 auto 14px;
  border: 3px solid #fff; box-shadow: 0 6px 20px rgba(0,0,0,.1);
}
.faq-expert__cv {
  font-family: var(--f-b); font-size: 13px; line-height: 1.55;
  color: var(--muted); text-align: left; margin-bottom: 16px;
}
.faq-expert__btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--f-d); font-size: 12px; font-weight: 700;
  color: var(--ink); background: var(--teal);
  padding: 11px 22px; border-radius: 100px;
  text-decoration: none; transition: all .2s;
}
.faq-expert__btn:hover { background: var(--teal-d); transform: translateY(-1px); }

/* Captcha nel form commenti FAQ */
.ar-captcha { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.ar-captcha img { height: 34px; border-radius: 6px; }
.ar-captcha a { display: inline-flex; }

/* contenitore scrollabile attorno alle tabelle (aggiunto via PHP in
   leggi-news.php). Lo scroll orizzontale sta QUI, non sulla table, così
   la tabella può restare width:100% e riempire senza bordo/spazio extra */
.ar-table-wrap{max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 20px;}
.ar-body table{border: 1px solid #ddd;width: 100%;
border-collapse: collapse;
border-spacing: 0; font-size: 85%;}
/* le celle NON devono spezzare le parole (i nomi delle nazionali
   venivano rotti in verticale, lettera per lettera) */
.ar-body table td, .ar-body table th{white-space: nowrap; word-break: normal; overflow-wrap: normal;}
.ar-body table > thead:first-child > tr:first-child > td {
    border-top: 0;}
.ar-body table > thead > tr > td {border: 1px solid #ddd;
    border-bottom-width: 2px;padding: 5px;line-height: 1.42857143;
vertical-align: top;
}
.ar-body table > tbody > tr > td{border: 1px solid #ddd;padding: 5px;}
.ar-body table > tbody > tr:nth-of-type(2n+1) {
    background-color: #f9f9f9;
}