/* ============================================================
   KYOOL NEWS — STYLES MAGAZINE (WEB + MOBILE) — FULL FILE
   Clean, responsive, no broken blocks, no invalid syntax.
   ============================================================ */

:root {
  --kyool-blue: #24c7eb;
  --bg0: #060a10;
  --bg1: rgba(0,0,0,.25);
  --line: rgba(255,255,255,.12);
  --text: rgba(255,255,255,.9);
  --muted: rgba(255,255,255,.72);
  --topbarH: 78px;
}

/* Reset light */
* { box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ============================================================
   CONTAINERS
   ============================================================ */

.page {
  background: radial-gradient(900px 500px at 60% 20%, rgba(36,199,235,.14), transparent 70%),
              radial-gradient(700px 500px at 20% 60%, rgba(36,199,235,.10), transparent 72%),
              linear-gradient(180deg, #05070b 0%, #08121b 55%, #05070b 100%);
  color: var(--text);
  min-height: 100vh;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

/* ============================================================
   TOPBAR (si tu as déjà une topbar globale ailleurs, ignore)
   ============================================================ */

.topbar-spacer {
  height: var(--topbarH);
}

/* ============================================================
   NEWS LIST PAGE (news.html)
   ============================================================ */

.news-hero {
  position: relative;
  padding: 0;
  margin-top: calc(var(--topbarH) * -1);
  overflow: hidden;
}

.news-hero-image {
  width: 100%;
  height: 520px;
  position: relative;
}

.news-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.news-hero-overlay {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(to top, rgba(0,0,0,.90) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,0) 100%);
  padding: 70px 0 40px;
}

.news-hero-title {
  font-size: clamp(34px, 5vw, 72px);
  margin: 0;
  color: #fff;
  font-weight: 800;
  letter-spacing: -1px;
  text-shadow: 0 6px 18px rgba(0,0,0,.55);
  text-align: center;
}

.news-intro {
  padding: 56px 0 34px;
  background: linear-gradient(180deg, rgba(0,0,0,.35), transparent);
}

.news-intro-content {
  width: min(1100px, 100%);
  margin: 0 auto;
  text-align: left;
}

.news-intro-content p {
  margin: 0 0 16px;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.7;
  color: rgba(255,255,255,.88);
}

.news-cta {
  margin-top: 26px;
  padding: 20px 22px;
  border-radius: 18px;
  background: rgba(36,199,235,.12);
  border: 1px solid rgba(36,199,235,.28);
  color: rgba(255,255,255,.95);
  font-size: clamp(16px, 1.6vw, 18px);
}

.news-cta a {
  color: var(--kyool-blue);
  font-weight: 800;
  text-decoration: none;
}

.news-cta a:hover { text-decoration: underline; }

/* Filters */
.news-filters {
  padding: 22px 0;
  background: rgba(0,0,0,.18);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.filters-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-group label {
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 700;
}

.filter-select {
  padding: 9px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: all .25s ease;
}

.filter-select:hover {
  border-color: rgba(36,199,235,.7);
  background: rgba(36,199,235,.10);
}

.filter-select:focus {
  outline: none;
  border-color: var(--kyool-blue);
  box-shadow: 0 0 0 3px rgba(36,199,235,.20);
}

.filter-select option {
  background: #12151c;
  color: #fff;
}

.filter-count {
  margin-left: auto;
  padding: 9px 14px;
  border-radius: 10px;
  background: rgba(36,199,235,.14);
  color: var(--kyool-blue);
  font-weight: 900;
  font-size: 13px;
}

/* Grid cards */
.news-grid-section {
  padding: 44px 0 86px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.article-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.10);
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 52px rgba(36,199,235,.22);
  border-color: rgba(36,199,235,.45);
}

.article-image {
  position: relative;
  width: 100%;
  padding-top: 140%;
  overflow: hidden;
  background: rgba(0,0,0,.40);
}

.article-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform .28s ease;
}

.article-card:hover .article-image img {
  transform: scale(1.06);
}

.article-image-title {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 14px;
  background: linear-gradient(to top, rgba(0,0,0,.95) 0%, rgba(0,0,0,.70) 55%, rgba(0,0,0,0) 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0,0,0,.60);
}

.article-info {
  padding: 14px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.22);
}

.article-theme {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(36,199,235,.16);
  color: var(--kyool-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.article-journalist {
  color: rgba(255,255,255,.78);
  font-size: 13px;
}

.article-journalist strong {
  color: rgba(255,255,255,.95);
}

.no-results {
  text-align: center;
  padding: 60px 18px;
  color: rgba(255,255,255,.72);
  font-size: 18px;
}

/* ============================================================
   ARTICLE PAGE (news-article.html)
   ============================================================ */

.article-nav-top {
  padding: 18px 0;
  background: rgba(0,0,0,.18);
  border-bottom: 1px solid var(--line);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.70);
}

.breadcrumb a {
  color: var(--kyool-blue);
  text-decoration: none;
  font-weight: 800;
}

.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: rgba(255,255,255,.45); }

.article-hero {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  margin-top: calc(var(--topbarH) * -1);
}

.article-hero-image,
.article-hero-image img {
  width: 100%;
  height: 100%;
}

.article-hero-image img {
  object-fit: cover;
  filter: saturate(1.05);
}

.article-hero-overlay {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.65) 55%, rgba(0,0,0,0) 100%);
  padding: 80px 0 44px;
}

.article-hero-title {
  font-size: clamp(26px, 3.6vw, 52px);
  margin: 0;
  color: #fff;
  font-weight: 900;
  line-height: 1.05;
  text-shadow:
    0 6px 22px rgba(0,0,0,.75),
    0 0 44px rgba(36,199,235,.30);
  text-align: left;
}

.article-hero-title .blue {
  color: var(--kyool-blue);
}

.article-content {
  padding: 52px 0 30px;
}

.article-wrap {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  overflow: visible; /* important: allow large blocks */
}

.article-header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.article-meta {
  display: flex;
  gap: 18px 22px;
  flex-wrap: wrap;
  align-items: center;
}

.meta-label {
  color: rgba(255,255,255,.58);
  font-size: 13px;
  font-weight: 800;
}

.meta-value {
  color: rgba(255,255,255,.95);
  font-weight: 800;
  font-size: 14px;
}

.theme-badge {
  padding: 6px 12px;
  border-radius: 10px;
  background: rgba(36,199,235,.18);
  color: var(--kyool-blue);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
}

.article-body {
  overflow: visible;
}

.article-body p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255,255,255,.88);
}

.article-body h2 {
  font-size: 28px;
  margin: 42px 0 18px;
  color: var(--kyool-blue);
  font-weight: 900;
}

.article-body h3 {
  font-size: 22px;
  margin: 30px 0 14px;
  color: rgba(255,255,255,.95);
  font-weight: 900;
}

/* Quotes */
.article-body blockquote,
.article-body .quote {
  position: relative;
  padding: 26px 28px 26px 90px;
  margin: 34px 0;
  background: rgba(36,199,235,.08);
  border-left: 5px solid var(--kyool-blue);
  border-radius: 0 16px 16px 0;
  font-size: 19px;
  font-style: italic;
  color: rgba(255,255,255,.95);
}

.article-body blockquote::before,
.article-body .quote::before {
  content: '"';
  position: absolute;
  left: 18px;
  top: 8px;
  font-size: 76px;
  font-weight: 900;
  color: var(--kyool-blue);
  opacity: 0.30;
  line-height: 1;
  font-family: Georgia, serif;
}

/* ============================================================
   PHOTO LAYOUTS (Magazine)
   ============================================================ */

/* Single full-width image */
.article-photo {
  margin: 36px 0;
  border-radius: 18px;
  overflow: hidden;
  border: 3px solid rgba(36,199,235,.55);
  background: rgba(0,0,0,.25);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.article-photo:hover {
  border-color: rgba(255,255,255,.55);
  box-shadow: 0 0 32px rgba(36,199,235,.35);
  transform: translateY(-2px);
}

.article-photo img {
  width: 100%;
  height: auto;
}

/* Standard landscape ratio */
.article-photo.standard img {
  aspect-ratio: 1920 / 1080;
  object-fit: cover;
}

/* Wide banner */
.article-photo.wide-landscape img {
  aspect-ratio: 1920 / 720;
  object-fit: cover;
}

/* DUO vertical cards */
.photo-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 36px 0;
}

.photo-duo-item {
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid rgba(36,199,235,.55);
  background: rgba(0,0,0,.22);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.photo-duo-item:hover {
  border-color: rgba(255,255,255,.55);
  box-shadow: 0 0 32px rgba(36,199,235,.35);
  transform: translateY(-3px);
}

.photo-duo-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1500 / 2100;
  object-fit: cover;
}

/* ============================================================
   SIGNATURE JOURNALISTE
   ============================================================ */

.article-signature {
  margin: 54px 0 0;
  padding: 34px 0 0;
  border-top: 2px solid rgba(36,199,235,.22);
  text-align: right;
}

.signature-line {
  width: 160px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--kyool-blue));
  margin: 0 0 18px auto;
}

.signature-text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
  font-style: italic;
  margin: 0;
}

.signature-text strong {
  color: var(--kyool-blue);
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  display: block;
  margin-bottom: 4px;
}

/* ============================================================
   PARTAGE / RATING / REPORT
   ============================================================ */

.article-actions {
  padding: 44px 0;
  background: rgba(0,0,0,.16);
  border-top: 1px solid var(--line);
}

.article-actions h3 {
  font-size: 20px;
  margin: 0 0 18px;
  color: rgba(255,255,255,.95);
  font-weight: 900;
}

.share-section,
.rating-section,
.report-section {
  margin-bottom: 32px;
}

.share-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.30);
}

.rating-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.rating-btn {
  flex: 1;
  min-width: 180px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 2px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: grid;
  place-items: center;
  gap: 6px;
}

.rating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.30);
}

.rating-icon { font-size: 28px; }

.report-form {
  margin-top: 14px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(0,0,0,.26);
  border: 1px solid rgba(255,255,255,.10);
}

.report-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  resize: vertical;
}
/* ===============================
   PROMO TRIO (PHOTOS 10-11-12) — PROPRE & RESPONSIVE
   =============================== */

.promo-photo-section-wrapper{
  padding: 60px 0;
  background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(36,199,235,.05) 100%);
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.promo-trio-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 14px;
  text-align: center;
}

.promo-title{
  font-size: clamp(22px, 2.8vw, 34px);
  margin: 0 0 26px;
  color: var(--kyool-blue);
  font-weight: 800;
}

/* 3 affiches côte à côte (desktop) */
.promo-trio{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin: 0 auto 26px;
}

.promo-trio-item{
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(36,199,235,.35);
  background: rgba(0,0,0,.25);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.promo-trio-item:hover{
  transform: translateY(-4px);
  border-color: var(--kyool-blue);
  box-shadow: 0 10px 30px rgba(36,199,235,.25);
}

.promo-trio-item img{
  width: 100%;
  height: auto;
  aspect-ratio: 1500 / 2100; /* format affiche */
  object-fit: cover;
  display: block;
}

/* Bouton */
.promo-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  background: rgba(36,199,235,.15);
  border: 1px solid rgba(36,199,235,.35);
  color: #fff;
  transition: all .25s ease;
}

.promo-btn:hover{
  transform: translateY(-2px);
  background: rgba(36,199,235,.22);
  box-shadow: 0 10px 30px rgba(36,199,235,.18);
}

.promo-btn .arrow{
  font-size: 18px;
  color: var(--kyool-blue);
}

/* TABLET: 3 colonnes mais plus compact */
@media (max-width: 900px){
  .promo-trio{
    gap: 14px;
  }
}

/* MOBILE: 3 affiches sur une ligne, scroll horizontal (propre, pas 3 pages) */
@media (max-width: 600px){
  .promo-trio{
    grid-auto-flow: column;
    grid-auto-columns: 70%;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .promo-trio::-webkit-scrollbar{ display: none; }
  .promo-trio{ scrollbar-width: none; }

  .promo-trio-item{
    scroll-snap-align: start;
  }
}

/* ============================================================
   NAV BOTTOM
   ============================================================ */

.article-nav-bottom {
  padding: 36px 0 44px;
  background: rgba(0,0,0,.18);
  border-top: 1px solid rgba(255,255,255,.10);
}

.nav-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-btn {
  display: inline-block;
  text-decoration: none;
  min-width: 200px;
  text-align: center;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(36,199,235,.14);
  border: 1px solid rgba(36,199,235,.30);
  color: rgba(255,255,255,.95);
  font-weight: 900;
}

.nav-btn:hover {
  background: rgba(36,199,235,.20);
  border-color: rgba(36,199,235,.55);
}

/* ============================================================
   RESPONSIVE — NEWS GRID + HERO
   ============================================================ */

@media (max-width: 1400px) {
  .news-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1024px) {
  .news-grid { grid-template-columns: repeat(3, 1fr); }
  .news-hero-image { height: 440px; }
  .article-hero { height: 440px; }
}

@media (max-width: 768px) {
  .container { width: calc(100% - 28px); }

  .news-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .news-hero-image { height: 340px; }
  .article-hero { height: 340px; }

  .filters-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-count { margin-left: 0; }

  .photo-duo {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .article-signature { text-align: center; }
  .signature-line { margin: 0 auto 18px; }

  .share-buttons { flex-direction: column; }
  .nav-buttons { flex-direction: column; }
}

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

  .news-hero-title { font-size: clamp(28px, 9vw, 42px); }

  .article-body p { font-size: 16px; line-height: 1.8; }

  .article-body blockquote,
  .article-body .quote {
    padding: 22px 16px 22px 74px;
    font-size: 17px;
  }

  .article-body blockquote::before,
  .article-body .quote::before {
    font-size: 58px;
    left: 12px;
  }

  .rating-buttons { flex-direction: column; }

  }

  .promo-item img {
    height: 240px;
  }
}
/* ═══════════════════════════════════════════════════════════
   CORRECTIF CIBLÉ - 4 problèmes à corriger
   À AJOUTER à la fin de news-styles.css
   SANS toucher aux photos 10-11-12 qui marchent !
   ═══════════════════════════════════════════════════════════ */

/* 1. TITRE HERO - Bleu + sur une ligne + plus haut */
.article-hero-title {
  font-size: clamp(28px, 4vw, 48px);
  margin: 0;
  color: var(--kyool-blue) !important;  /* BLEU ! */
  font-weight: 700;
  line-height: 1.1;
  text-align: left;
  text-shadow: 
    0 4px 20px rgba(0,0,0,.8),
    0 0 40px rgba(36,199,235,.5);
  max-width: none;
  padding: 0 40px;
  white-space: nowrap !important;  /* Sur UNE seule ligne */
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Hero overlay - Plus haut pour voir le titre */
.article-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.95) 0%, rgba(0,0,0,.7) 60%, rgba(0,0,0,0) 100%);
  padding: 80px 0 40px !important;  /* Plus de padding en haut */
}

/* 2. MASCOTTES - Remettre l'animation et la visibilité */
.chapter-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 60px 0 30px;
  padding-left: 80px;
}

.chapter-title::before {
  content: '';
  position: absolute;
  left: 0;
  width: 60px !important;
  height: 60px !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  animation: bounce 2s ease-in-out infinite !important;
  display: block !important;  /* Force l'affichage */
  opacity: 1 !important;  /* Force visible */
}

/* Animation bounce pour les mascottes */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Mascottes par chapitre */
.chapter-title:nth-of-type(1)::before {
  background-image: url('../media/mascot/kyool-mascot-1.png') !important;
}
.chapter-title:nth-of-type(2)::before {
  background-image: url('../media/mascot/kyool-mascot-2.png') !important;
}
.chapter-title:nth-of-type(3)::before {
  background-image: url('../media/mascot/kyool-mascot-3.png') !important;
}
.chapter-title:nth-of-type(4)::before {
  background-image: url('../media/mascot/kyool-mascot-4.png') !important;
}
.chapter-title:nth-of-type(5)::before {
  background-image: url('../media/mascot/kyool-mascot-5.png') !important;
}
.chapter-title:nth-of-type(6)::before {
  background-image: url('../media/mascot/kyool-mascot-6.png') !important;
}

/* 3. TRIO PHOTOS 6-7-8 - Remettre sur une ligne */
.photo-trio {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;  /* 3 colonnes */
  gap: 16px !important;
  margin: 40px 0 !important;
}

.photo-trio-item {
  margin: 0 !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  border: 3px solid var(--kyool-blue) !important;
  transition: all .3s ease !important;
  width: 100% !important;
}

.photo-trio-item img {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 1500 / 2100 !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform .3s ease !important;
}

.photo-trio-item:hover {
  border-color: #fff !important;
  box-shadow: 0 0 30px rgba(36,199,235,.6) !important;
  transform: translateY(-5px) !important;
}

/* Sur mobile, empiler les photos trio */
@media (max-width: 768px) {
  .photo-trio {
    grid-template-columns: repeat(2, 1fr) !important;  /* 2 colonnes sur tablette */
  }
}

@media (max-width: 480px) {
  .photo-trio {
    grid-template-columns: 1fr !important;  /* 1 colonne sur mobile */
  }
}

/* 4. BOUTONS DE PARTAGE - Remettre les couleurs */
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all .3s ease;
  border: 2px solid transparent;
  color: #fff !important;
}

.share-btn.linkedin {
  background: rgba(0, 119, 181, 0.15) !important;
  border-color: #0077b5 !important;
  color: #0077b5 !important;
}

.share-btn.linkedin:hover {
  background: #0077b5 !important;
  color: #fff !important;
}

.share-btn.facebook {
  background: rgba(24, 119, 242, 0.15) !important;
  border-color: #1877f2 !important;
  color: #1877f2 !important;
}

.share-btn.facebook:hover {
  background: #1877f2 !important;
  color: #fff !important;
}

.share-btn.twitter {
  background: rgba(0, 0, 0, 0.3) !important;
  border-color: #000 !important;
  color: #000 !important;
}

.share-btn.twitter:hover {
  background: #000 !important;
  color: #fff !important;
}

.share-btn.instagram {
  background: linear-gradient(45deg, rgba(240, 148, 51, 0.2), rgba(230, 104, 60, 0.2), rgba(225, 48, 108, 0.2)) !important;
  border-color: #e1306c !important;
  color: #e1306c !important;
}

.share-btn.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #e1306c) !important;
  color: #fff !important;
}

/* Bouton signaler un problème */
#reportBtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  background: rgba(255, 193, 7, 0.15) !important;
  border: 2px solid #ffc107 !important;
  color: #ffc107 !important;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
}

#reportBtn:hover {
  background: #ffc107 !important;
  color: #000 !important;
}

/* Section actions - Pas de fond blanc */
.article-actions {
  padding: 50px 0;
  background: rgba(0,0,0,.2) !important;  /* Fond sombre, pas blanc */
  border-top: 1px solid rgba(255,255,255,.1);
}

.article-actions h3 {
  font-size: 20px;
  margin: 0 0 20px;
  color: rgba(255,255,255,.95) !important;
}
/* ═══════════════════════════════════════════════════════════
   CORRECTIF 3 AJUSTEMENTS MINIMES
   À AJOUTER à la fin de news-styles.css
   ═══════════════════════════════════════════════════════════ */

/* 1. TITRE ARTICLE - SUR l'image hero et en BLEU */
.article-hero-title {
  position: absolute !important;  /* Positionné sur l'image */
  bottom: 60px !important;  /* En bas de l'image hero */
  left: 40px !important;
  right: 40px !important;
  font-size: clamp(32px, 5vw, 56px) !important;
  margin: 0 !important;
  color: var(--kyool-blue) !important;  /* BLEU ! */
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-align: left !important;
  text-shadow: 
    0 4px 20px rgba(0,0,0,.9),
    0 0 40px rgba(36,199,235,.6) !important;
  z-index: 2 !important;
  white-space: normal !important;  /* Peut aller sur plusieurs lignes */
  max-width: 80% !important;
}

.article-hero-overlay {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: linear-gradient(to top, rgba(0,0,0,.95) 0%, rgba(0,0,0,.7) 50%, rgba(0,0,0,0) 100%) !important;
  padding: 120px 0 40px !important;  /* Espace pour le titre */
  z-index: 1 !important;
}

/* 2. BOUTON TWITTER (X) - Texte visible + contour blanc au hover */
.share-btn.twitter {
  background: rgba(0, 0, 0, 0.3) !important;
  border: 2px solid #333 !important;
  color: #fff !important;  /* Texte BLANC (visible) */
}

.share-btn.twitter:hover {
  background: #000 !important;
  border-color: #fff !important;  /* Contour BLANC au hover */
  color: #fff !important;
  box-shadow: 0 0 20px rgba(255,255,255,.3) !important;
}

/* 3. BOUTONS NAV BOTTOM - Remonter pour ne pas être cachés */
.article-nav-bottom {
  padding: 40px 0 80px !important;  /* Plus de padding en bas */
  background: rgba(0,0,0,.2) !important;
  border-top: 1px solid rgba(255,255,255,.1) !important;
  margin-bottom: 40px !important;  /* Espace avant le footer */
}

.nav-buttons {
  display: flex !important;
  gap: 20px !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  padding: 20px 0 !important;  /* Plus de padding */
  margin-bottom: 20px !important;  /* Marge en bas */
}

/* Sur mobile - encore plus d'espace */
@media (max-width: 768px) {
  .article-nav-bottom {
    padding: 30px 0 100px !important;  /* Beaucoup d'espace en bas sur mobile */
    margin-bottom: 0 !important;
  }
  
  .nav-buttons {
    flex-direction: column !important;
    padding: 20px 0 40px !important;
  }
  
  .article-hero-title {
    font-size: 28px !important;
    bottom: 40px !important;
    left: 20px !important;
    right: 20px !important;
    max-width: 90% !important;
  }
}
/* ═══════════════════════════════════════════════════════════
   CORRECTIF - Titre hero BEAUCOUP PLUS HAUT
   À AJOUTER à la fin de news-styles.css
   ═══════════════════════════════════════════════════════════ */

/* Titre article - MONTER DU TRIPLE */
.article-hero-title {
  bottom: 100px !important;  /* Monté du triple (60px → 180px) */
}

/* Sur mobile - aussi plus haut */
@media (max-width: 768px) {
  .article-hero-title {
    bottom: 120px !important;  /* Monté sur mobile aussi */
  }
}
/* FIX: éviter que le hero remonte sous la breadcrumb */
.article-hero{
  margin-top: 0 !important;
}

/* un petit “respir” entre breadcrumb et image */
.article-nav-top{
  position: relative;
  z-index: 5;
  background: rgba(0,0,0,.35); /* optionnel: pour bien lire le texte */
}

/* ajoute un espace si tu veux que ça descende un peu plus */
.article-hero{
  padding-top: 14px; /* ajuste: 8 / 14 / 20 selon ton goût */
}
/* ═══════════════════════════════════════════════════════════
   RÉDUIRE L'ESPACEMENT ENTRE LES PARAGRAPHES
   À AJOUTER à la fin de news-styles.css
   ═══════════════════════════════════════════════════════════ */
/* ESPACEMENT RÉDUIT - GARANTI DE MARCHER */
p {
  margin: 0 0 10px !important;
}

h2 {
  margin: 40px 0 20px !important;
}
