/* =========================================================
   TALENT D'OR FC — Actualités (liste + détail)
   ========================================================= */

/* ---------------- Liste ---------------- */
.news-wrap { padding: 46px 0 40px; }
.gal-filters--flow { position: static; background: transparent; border-bottom: 0; backdrop-filter: none; padding: 0 0 28px; }

.news { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.news-card {
  background: #fff; border-radius: 8px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(8,18,38,.08); display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.news-card:hover { transform: translateY(-6px); box-shadow: 0 16px 34px rgba(8,18,38,.16); }
.news-card__img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bg-soft); }
.news-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.news-card:hover .news-card__img img { transform: scale(1.07); }
.news-card__ph { width: 100%; height: 100%; display: grid; place-items: center; font-size: 2.6rem; opacity: .35; }
.news-card__date {
  position: absolute; top: 14px; left: 14px; font-family: var(--cond); text-transform: uppercase;
  letter-spacing: .06em; background: var(--gold); color: var(--navy-dark);
  padding: 5px 12px; border-radius: 3px; font-size: .82rem; font-weight: 700;
}
.news-card__flag {
  position: absolute; top: 14px; right: 14px; font-family: var(--cond); text-transform: uppercase;
  letter-spacing: .06em; background: var(--navy); color: #fff;
  padding: 5px 12px; border-radius: 3px; font-size: .78rem; font-weight: 700;
}
.news-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.news-card__cat { font-family: var(--cond); font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold-dark); font-weight: 700; }
.news-card__body h3 { font-family: var(--display); text-transform: uppercase; color: var(--navy); margin: 8px 0 10px; font-size: 1.28rem; line-height: 1.05; }
.news-card__body p { color: var(--muted); font-size: .94rem; flex: 1; }
.news-card__more { margin-top: 18px; font-family: var(--cond); text-transform: uppercase; letter-spacing: .05em; color: var(--navy); font-weight: 700; font-size: .95rem; display: inline-flex; gap: 6px; }
.news-card:hover .news-card__more { color: var(--gold-dark); }

@media (max-width: 1000px) { .news { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px)  { .news { grid-template-columns: 1fr; } }

/* État vide */
.news-none { text-align: center; padding: 60px 20px 70px; color: var(--muted); }
.news-none__ic { font-size: 2.6rem; margin-bottom: 12px; }
.news-none b { display: block; font-family: var(--display); text-transform: uppercase; color: var(--navy); font-size: 1.3rem; margin-bottom: 8px; }
.news-none p { max-width: 460px; margin: 0 auto; }

/* =========================================================
   DÉTAIL D'UNE ACTUALITÉ
   ========================================================= */
.art-head { position: relative; background: var(--midnight); overflow: hidden; }
.art-head img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .6; }
.art-head::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,14,32,.94) 8%, rgba(6,14,32,.45) 55%, rgba(6,14,32,.2)); }
.art-head__in { position: relative; z-index: 2; width: 100%; padding: clamp(40px, 6vw, 72px) 24px clamp(28px, 4vw, 44px); color: #fff; }
/* Avec couverture : vrai bandeau image, titre ancré en bas */
.art-head--cover { min-height: min(56vw, 420px); display: flex; align-items: flex-end; }
.art-back { display: inline-block; color: rgba(255,255,255,.75); font-family: var(--cond); text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; margin-bottom: 18px; }
.art-back:hover { color: var(--gold); }
.art-cat {
  display: inline-block; font-family: var(--cond); font-weight: 700; font-size: .74rem;
  letter-spacing: .16em; text-transform: uppercase; background: var(--gold); color: var(--navy);
  padding: 6px 12px; border-radius: 2px; margin-bottom: 14px;
}
.art-head h1 { font-size: clamp(2rem, 4.6vw, 3.6rem); color: #fff; text-transform: uppercase; max-width: 900px; }
.art-meta { display: flex; gap: 8px 18px; flex-wrap: wrap; margin-top: 18px; font-family: var(--cond); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.65); }
.art-meta span { display: inline-flex; align-items: center; gap: 7px; }
.art-meta .ico { width: 15px; height: 15px; color: var(--gold); }

.art-wrap { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(28px, 5vw, 56px); align-items: start; }
.art-chapo { font-size: 1.18rem; line-height: 1.6; color: var(--ink); border-left: 4px solid var(--gold); padding-left: 20px; margin-bottom: 28px; }
.art-body p { color: var(--muted); margin-bottom: 18px; font-size: 1.02rem; line-height: 1.7; }
.art-body h2, .art-body h3 { font-family: var(--display); text-transform: uppercase; color: var(--navy); margin: 34px 0 14px; }
.art-body h2 { font-size: 1.5rem; }
.art-body h3 { font-size: 1.2rem; }
/* Rétablit les marqueurs de liste (le reset global « ul{list-style:none} »
   des menus les supprimait dans le contenu riche). */
.art-body ul { list-style: disc; color: var(--muted); margin: 0 0 18px 22px; padding-left: 4px; }
.art-body ol { list-style: decimal; color: var(--muted); margin: 0 0 18px 22px; padding-left: 4px; }
.art-body li { margin-bottom: 8px; }
.art-body li::marker { color: var(--gold-dark); }
.art-body a { color: var(--navy); border-bottom: 2px solid var(--gold); font-weight: 600; }
.art-body a:hover { color: var(--gold-dark); }
.art-body blockquote { border-left: 4px solid var(--line); padding-left: 18px; color: var(--muted); font-style: italic; margin: 0 0 18px; }

.art-fig { margin-top: 32px; }
.art-fig img { width: 100%; border-radius: 4px; display: block; }
.art-fig figcaption { font-size: .82rem; color: var(--muted); margin-top: 10px; font-style: italic; border-left: 3px solid var(--line); padding-left: 12px; }
.art-video { position: relative; aspect-ratio: 16/9; border-radius: 4px; overflow: hidden; background: #000; }
.art-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Galerie photos de l'article (réutilise .gal-grid / .gal-item de galerie.css) */
.art-gal { margin-top: 34px; }
.art-gal__t { font-family: var(--display); text-transform: uppercase; color: var(--navy); font-size: 1.5rem; margin: 0 0 16px; }
.art-gal .gal-grid { columns: 3; }
@media (max-width: 760px) { .art-gal .gal-grid { columns: 2; } }
@media (max-width: 460px) { .art-gal .gal-grid { columns: 1; } }

/* Colonne latérale */
.art-side { position: sticky; top: 100px; display: grid; gap: 16px; }
.art-box { background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--gold); border-radius: 4px; padding: 22px; }
.art-box h3 { font-size: 1rem; text-transform: uppercase; color: var(--navy); margin-bottom: 14px; }
.art-share { display: flex; gap: 10px; }
.art-share__b { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 4px; color: var(--navy); background: #fff; cursor: pointer; transition: .2s; }
.art-share__b:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.art-share__b.is-ok { background: var(--gold); border-color: var(--gold); }
.art-share__b .ico { width: 18px; height: 18px; }
.art-more { display: grid; gap: 14px; }
.art-mini { display: flex; gap: 12px; align-items: center; }
.art-mini img { width: 68px; height: 52px; object-fit: cover; border-radius: 3px; flex: 0 0 auto; }
.art-mini b { display: block; font-family: var(--cond); font-weight: 600; font-size: .92rem; color: var(--navy); line-height: 1.25; }
.art-mini i { font-style: normal; font-family: var(--cond); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dark); }
.art-mini:hover b { color: var(--gold-dark); }

@media (max-width: 980px) {
  .art-wrap { grid-template-columns: 1fr; }
  .art-side { position: static; }
}
