/* =============================================
   ACTUALITES.CSS — Styles spécifiques à actualites.html
   ============================================= */

/* ===== HERO ===== */
.page-hero-actu {
  background: linear-gradient(135deg, #0A1F5E 0%, #1B3C8C 50%, #C9941A 100%);
  padding: 8rem 0 4rem;
}
.breadcrumb-light { display: flex; align-items: center; gap: 0.5rem; justify-content: center; flex-wrap: wrap; }
.breadcrumb-light a { color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: color 0.2s; }
.breadcrumb-light a:hover { color: white; }
.breadcrumb-light .bc-sep  { color: rgba(255,255,255,0.4); font-size: 0.75rem; }
.breadcrumb-light .bc-active { color: rgba(255,255,255,0.85); font-size: 0.85rem; }

.actu-hero-icon {
  width: 72px; height: 72px; border-radius: 20px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  display: flex; align-items: center; justify-content: center;
  color: white; margin: 0 auto 1.5rem;
  animation: float-icon 3s ease-in-out infinite alternate;
}
.actu-hero-icon svg.lucide { width: 36px; height: 36px; }
@keyframes float-icon {
  from { transform: translateY(0); }
  to   { transform: translateY(-8px); }
}
.actu-hero-title {
  font-family: 'Playfair Display', serif; color: white;
  font-size: clamp(2.5rem, 5vw, 4rem); margin: 1rem 0 1.5rem; line-height: 1.1;
}
.actu-hero-title em { color: #F2B93B; font-style: italic; }
.actu-hero-desc { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* ===== FEED ACTUALITÉS ===== */
.actu-feed { display: flex; flex-direction: column; gap: 1.5rem; }

.af-item {
  display: grid; grid-template-columns: 80px 1fr; gap: 0;
  overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.af-item:hover { transform: translateY(-3px); box-shadow: 0 20px 60px rgba(27,60,140,0.12); }
.af-item--featured { border: 2px solid rgba(201,148,26,0.35) !important; }

.af-date-col {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1.5rem 0.75rem; background: var(--primary); gap: 0.15rem;
  min-width: 80px;
}
.af-date-col--gold { background: var(--gold); }
.af-date-col--red  { background: #EF4444; }
.af-month { font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 0.08em; }
.af-year  { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 800; color: white; line-height: 1; }

.af-content { padding: 1.75rem 2rem; }
.af-tags { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.af-source {
  font-size: 0.72rem; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em;
  background: var(--offwhite); border: 1px solid var(--border);
  border-radius: 50px; padding: 0.2rem 0.75rem;
}
.af-content h3 {
  font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700;
  color: var(--primary); line-height: 1.3; margin-bottom: 0.75rem;
}
.af-content p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; }
.af-quote {
  border-left: 3px solid var(--gold); margin: 1rem 0;
  padding: 0.65rem 1rem; background: rgba(201,148,26,0.05);
  border-radius: 0 8px 8px 0; font-style: italic;
  font-size: 0.88rem; color: var(--text-secondary);
}
.af-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; font-weight: 600; color: var(--primary);
  padding: 0.45rem 1rem; border-radius: 50px; margin-top: 1rem;
  background: rgba(27,60,140,0.06); border: 1px solid rgba(27,60,140,0.15);
  transition: all 0.25s; text-decoration: none;
}
.af-link:hover { background: rgba(27,60,140,0.12); }
.af-links-row { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1rem; }

.af-stats-row {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  margin-top: 1rem; padding: 1rem 1.25rem;
  background: rgba(201,148,26,0.06); border-radius: 12px;
}
.af-stat { text-align: center; }
.af-stat-n { display: block; font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 800; color: var(--gold); }
.af-stat-l { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; }

/* Badge rouge */
.badge-red {
  background: rgba(239,68,68,0.1); color: #DC2626;
  border: 1px solid rgba(239,68,68,0.25); border-radius: 50px;
  padding: 0.2rem 0.75rem; font-size: 0.75rem; font-weight: 600;
  display: inline-block;
}

/* ===== CITATIONS ===== */
.section-citations { background: linear-gradient(160deg, #0F2260 0%, #1B3C8C 100%); }
.section-citations-title {
  color: white; font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem); margin: 1rem 0;
}
.section-citations-title em { color: #F2B93B; font-style: italic; }
.citation-card {
  padding: 2.5rem 2rem; display: flex; flex-direction: column;
  background: rgba(255,255,255,0.07); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 20px;
}
.cit-text {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.05rem; color: rgba(255,255,255,0.92); line-height: 1.7;
  flex: 1; margin-bottom: 1.5rem;
}
.cit-attr { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1rem; }
.cit-name { display: block; font-weight: 700; color: #F2B93B; font-size: 0.88rem; }
.cit-ctx  { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 0.2rem; }
.text-gold { color: var(--gold); }

/* ===== REVUE DE PRESSE ===== */
.presse-card {
  position: relative; padding: 1.75rem; text-decoration: none;
  display: flex; flex-direction: column; gap: 0.5rem;
  transition: transform 0.3s ease;
  border-top: 3px solid transparent;
}
.presse-card:hover { transform: translateY(-4px); border-top-color: var(--gold); }
.pc-media {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gold);
}
.presse-card h4 {
  font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700;
  color: var(--primary); line-height: 1.4; flex: 1;
}
.pc-date { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }
.pc-arrow {
  position: absolute; top: 1.25rem; right: 1.25rem;
  color: var(--text-muted); transition: color 0.2s, transform 0.2s;
}
.presse-card:hover .pc-arrow { color: var(--gold); transform: translate(3px,-3px); }

/* ===== RÉSEAUX ===== */
.section-reseaux { background: linear-gradient(135deg, #0A1F5E 0%, #1B3C8C 100%); }
.section-reseaux-title {
  color: white; font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); margin: 1rem 0 0.5rem;
}
.section-reseaux-title em { color: #F2B93B; font-style: italic; }
.section-reseaux-desc { color: rgba(255,255,255,0.75); font-size: 1rem; }

.reseau-card {
  padding: 2rem 1.5rem; text-decoration: none;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 20px;
  transition: all 0.3s ease;
}
.reseau-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
.rc-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.5rem;
}
.rc--facebook { background: rgba(59,89,152,0.25); color: #7B9FDB; }
.rc--linkedin { background: rgba(10,102,194,0.25); color: #7BB7E3; }
.rc--x        { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }
.rc-name   { font-weight: 700; color: white; font-size: 0.95rem; }
.rc-handle { font-size: 0.78rem; color: rgba(255,255,255,0.55); }
.rc-action {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.78rem; font-weight: 600; color: #F2B93B;
  margin-top: 0.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  /* Hero */
  .page-hero-actu { padding: 6rem 0 3rem; }
  .actu-hero-title { font-size: clamp(2rem, 6vw, 3rem); }
  .actu-hero-desc { font-size: 0.95rem; }

  /* Feed */
  .af-content { padding: 1.5rem; }
  .af-content h3 { font-size: 1.1rem; }
  .af-links-row { gap: 0.5rem; }

  /* Citations */
  .citation-card { padding: 2rem 1.5rem; }
  .cit-text { font-size: 0.98rem; }

  /* Revue de presse */
  .presse-card { padding: 1.25rem; }
  .presse-card h4 { font-size: 0.95rem; }

  /* Réseaux */
  .reseau-card { padding: 1.5rem 1.25rem; }
}

@media (max-width: 640px) {
  /* Feed date col */
  .af-item { grid-template-columns: 60px 1fr; }
  .af-date-col { padding: 1rem 0.5rem; }
  .af-year { font-size: 1.1rem; }
  .af-content { padding: 1.25rem; }
  .af-content h3 { font-size: 1rem; }
  .af-stats-row { gap: 1rem; }
  .af-stat-n { font-size: 1.3rem; }
}

@media (max-width: 480px) {
  /* Feed */
  .af-item { grid-template-columns: 52px 1fr; }
  .af-date-col { padding: 0.75rem 0.35rem; }
  .af-month { font-size: 0.65rem; }
  .af-year { font-size: 0.95rem; }
  .af-content { padding: 1rem; }
  .af-content h3 { font-size: 0.95rem; }
  .af-content p { font-size: 0.85rem; }
  .af-link { font-size: 0.76rem; padding: 0.35rem 0.75rem; }

  /* Citations */
  .cit-text { font-size: 0.9rem; }

  /* Réseaux — stack vertical si débordement */
  .rc-name { font-size: 0.88rem; }
  .rc-handle { font-size: 0.72rem; }
}
