/*
Theme Name: LougaTV Pro
Theme URI: https://lougatv.sn
Author: LougaTV
Description: Thème LougaTV - Compatible Elementor & Divi - Player direct, animateurs, programme TV
Version: 3.0.0
License: GNU General Public License v2 or later
Text Domain: lougatv-pro
Tags: elementor, divi, television, video, news
*/

/* ================================================
   VARIABLES CSS
================================================ */
:root {
  --ltv-rouge:    #E8001C;
  --ltv-or:       #F5A623;
  --ltv-noir:     #0A0A0F;
  --ltv-sombre:   #111118;
  --ltv-gris:     #1A1A24;
  --ltv-carte:    #1E1E2A;
  --ltv-bordure:  #2C2C3A;
  --ltv-texte:    #D0D0E0;
  --ltv-muted:    #888899;
  --ltv-blanc:    #FFFFFF;
  --ltv-font-h:   'Montserrat', 'Arial Black', sans-serif;
  --ltv-font-b:   'Open Sans', Arial, sans-serif;
  --ltv-radius:   8px;
  --ltv-radius-l: 14px;
}

/* ================================================
   RESET BASE
================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--ltv-font-b);
  background: var(--ltv-noir);
  color: var(--ltv-texte);
  margin: 0;
  padding: 0;
  line-height: 1.7;
}

/* Reset Elementor / Divi conflicts */
.elementor-section,
.et_pb_section {
  background-color: transparent;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
p { margin: 0 0 1em; }

/* ================================================
   TOPBAR
================================================ */
.ltv-topbar {
  background: var(--ltv-rouge);
  padding: 7px 0;
  overflow: hidden;
  width: 100%;
  z-index: 9999;
  position: relative;
}
.ltv-topbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.ltv-ticker-zone { flex: 1; overflow: hidden; }
.ltv-ticker {
  display: inline-block;
  white-space: nowrap;
  animation: ltv-ticker 35s linear infinite;
  font-family: var(--ltv-font-h);
  font-size: 12px;
  font-weight: 600;
  color: var(--ltv-blanc);
  letter-spacing: 0.3px;
}
@keyframes ltv-ticker {
  from { transform: translateX(100vw); }
  to   { transform: translateX(-100%); }
}
.ltv-topbar-date {
  font-size: 11px;
  font-family: var(--ltv-font-h);
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ================================================
   HEADER
================================================ */
.ltv-header {
  background: var(--ltv-sombre);
  border-bottom: 3px solid var(--ltv-rouge);
  position: sticky;
  top: 0;
  z-index: 9998;
  width: 100%;
  transition: box-shadow 0.3s;
}
.ltv-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}

/* Logo */
.ltv-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.ltv-logo-icone {
  width: 44px; height: 44px;
  background: var(--ltv-rouge);
  border-radius: var(--ltv-radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.ltv-logo-icone img { width: 44px; height: 44px; object-fit: cover; border-radius: var(--ltv-radius); }
.ltv-logo-icone span {
  font-family: var(--ltv-font-h);
  font-weight: 900; font-size: 10px;
  color: var(--ltv-blanc);
  text-align: center; line-height: 1.2;
}
.ltv-logo-nom {
  font-family: var(--ltv-font-h);
  font-weight: 900; font-size: 22px;
  color: var(--ltv-blanc);
  letter-spacing: 1px;
}
.ltv-logo-nom em { color: var(--ltv-rouge); font-style: normal; }

/* Navigation */
.ltv-nav { flex: 1; }
.ltv-nav ul { display: flex; gap: 2px; flex-wrap: wrap; }
.ltv-nav a {
  display: block;
  padding: 7px 13px;
  font-family: var(--ltv-font-h);
  font-size: 12px;
  font-weight: 700;
  color: var(--ltv-texte);
  border-radius: var(--ltv-radius);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s;
}
.ltv-nav a:hover,
.ltv-nav .current-menu-item > a,
.ltv-nav .current_page_item > a { background: var(--ltv-rouge); color: var(--ltv-blanc); }

/* Bouton DIRECT */
.ltv-btn-direct {
  background: var(--ltv-rouge);
  color: var(--ltv-blanc) !important;
  font-family: var(--ltv-font-h);
  font-weight: 800; font-size: 12px;
  padding: 9px 18px;
  border-radius: var(--ltv-radius);
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: 1px;
  flex-shrink: 0;
  transition: background 0.2s;
  text-decoration: none !important;
}
.ltv-btn-direct:hover { background: #c0001a; }
.ltv-point-live {
  width: 8px; height: 8px;
  background: var(--ltv-blanc);
  border-radius: 50%;
  animation: ltv-pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes ltv-pulse { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

/* Hamburger */
.ltv-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  margin-left: auto;
}
.ltv-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ltv-blanc);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.ltv-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ltv-toggle.open span:nth-child(2) { opacity: 0; }
.ltv-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================
   PLAYER HERO
================================================ */
.ltv-hero { background: #000; width: 100%; }
.ltv-hero-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  min-height: 500px;
}
.ltv-player-wrap { position: relative; background: #000; }
.ltv-player-ratio {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}
.ltv-player-ratio iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none; display: block;
}
.ltv-badge-live {
  position: absolute; top: 14px; left: 14px;
  background: var(--ltv-rouge); color: var(--ltv-blanc);
  font-family: var(--ltv-font-h); font-weight: 800; font-size: 10px;
  padding: 5px 12px; border-radius: 4px;
  letter-spacing: 2px; display: flex; align-items: center; gap: 6px;
  z-index: 5; pointer-events: none;
}
.ltv-player-info {
  background: var(--ltv-gris);
  padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--ltv-bordure);
}
.ltv-emission-label {
  font-size: 10px; font-family: var(--ltv-font-h); font-weight: 700;
  color: var(--ltv-rouge); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 3px;
}
.ltv-emission-nom {
  font-family: var(--ltv-font-h); font-size: 15px;
  color: var(--ltv-blanc); font-weight: 700;
}
.ltv-heure { font-family: var(--ltv-font-h); font-size: 18px; font-weight: 700; color: var(--ltv-blanc); }

/* Sidebar playlist */
.ltv-sidebar {
  background: var(--ltv-sombre);
  border-left: 1px solid var(--ltv-bordure);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.ltv-sidebar-titre {
  padding: 14px 16px;
  border-bottom: 1px solid var(--ltv-bordure);
  font-family: var(--ltv-font-h); font-size: 11px; font-weight: 800;
  color: var(--ltv-blanc); letter-spacing: 2px; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.ltv-sidebar-titre::before {
  content: ''; width: 4px; height: 14px;
  background: var(--ltv-rouge); border-radius: 2px; display: block;
}
.ltv-playlist { overflow-y: auto; flex: 1; scrollbar-width: thin; scrollbar-color: var(--ltv-bordure) transparent; }
.ltv-playlist::-webkit-scrollbar { width: 3px; }
.ltv-playlist::-webkit-scrollbar-thumb { background: var(--ltv-bordure); }
.ltv-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  cursor: pointer;
  transition: background 0.15s;
}
.ltv-item:hover { background: var(--ltv-gris); }
.ltv-item.actif { background: rgba(232,0,28,0.1); border-left: 3px solid var(--ltv-rouge); }
.ltv-item-thumb {
  width: 76px; height: 44px; border-radius: 4px;
  background: var(--ltv-carte); flex-shrink: 0;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.ltv-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ltv-item-info { flex: 1; min-width: 0; }
.ltv-item-titre {
  font-size: 12px; font-weight: 600; color: var(--ltv-blanc);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 3px;
}
.ltv-item-meta { font-size: 10px; color: var(--ltv-muted); display: flex; gap: 6px; }
.ltv-item-duree { background: rgba(255,255,255,0.08); padding: 1px 6px; border-radius: 3px; }

/* ================================================
   PROGRAMME BAR
================================================ */
.ltv-programme {
  background: var(--ltv-sombre);
  border-top: 1px solid var(--ltv-bordure);
  border-bottom: 2px solid var(--ltv-bordure);
}
.ltv-programme-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: stretch;
}
.ltv-prog-label {
  background: var(--ltv-rouge); color: var(--ltv-blanc);
  font-family: var(--ltv-font-h); font-weight: 800; font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 12px 16px; display: flex; align-items: center;
  white-space: nowrap; flex-shrink: 0;
}
.ltv-prog-scroll {
  flex: 1; overflow-x: auto; display: flex;
  scrollbar-width: none;
}
.ltv-prog-scroll::-webkit-scrollbar { display: none; }
.ltv-prog-slot {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-right: 1px solid var(--ltv-bordure);
  white-space: nowrap; flex-shrink: 0; cursor: pointer;
  transition: background 0.15s;
}
.ltv-prog-slot:hover { background: var(--ltv-gris); }
.ltv-prog-slot.en-cours { background: rgba(232,0,28,0.08); }
.ltv-prog-heure { font-family: var(--ltv-font-h); font-size: 12px; font-weight: 700; color: var(--ltv-rouge); }
.ltv-prog-nom { font-size: 12px; color: var(--ltv-blanc); font-weight: 500; }
.ltv-prog-badge {
  background: var(--ltv-rouge); color: var(--ltv-blanc);
  font-size: 9px; font-family: var(--ltv-font-h); font-weight: 800;
  padding: 2px 7px; border-radius: 3px; letter-spacing: 1px;
}

/* ================================================
   SECTIONS GÉNÉRIQUES (utilisées aussi par Elementor/Divi)
================================================ */
.ltv-section { padding: 56px 0; }
.ltv-section-alt { background: var(--ltv-sombre); }
.ltv-contenu { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

.ltv-titre-section {
  display: flex; align-items: center; gap: 14px; margin-bottom: 32px;
}
.ltv-titre-section::before {
  content: ''; width: 5px; height: 28px;
  background: var(--ltv-rouge); border-radius: 3px; flex-shrink: 0;
}
.ltv-titre-section h2 {
  font-family: var(--ltv-font-h); font-weight: 900; font-size: 22px;
  color: var(--ltv-blanc); text-transform: uppercase; letter-spacing: 0.5px;
  margin: 0;
}
.ltv-voir-plus {
  margin-left: auto; font-family: var(--ltv-font-h);
  font-size: 11px; font-weight: 700;
  color: var(--ltv-rouge); letter-spacing: 1px; text-transform: uppercase;
}
.ltv-voir-plus:hover { color: var(--ltv-or); }

/* ================================================
   CARTES ANIMATEURS
================================================ */
.ltv-animateurs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ltv-anim-card {
  position: relative; border-radius: var(--ltv-radius-l);
  overflow: hidden; background: var(--ltv-carte);
  cursor: pointer; aspect-ratio: 3/4;
  transition: transform 0.3s, box-shadow 0.3s;
}
.ltv-anim-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(232,0,28,0.25); }
.ltv-anim-card.vedette { grid-column: span 2; aspect-ratio: unset; min-height: 480px; }
.ltv-anim-photo { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; transition: transform 0.4s; }
.ltv-anim-card:hover .ltv-anim-photo { transform: scale(1.04); }
.ltv-anim-initiale {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-family: var(--ltv-font-h); font-weight: 900; font-size: 60px;
  color: var(--ltv-rouge); background: var(--ltv-gris);
}
.ltv-anim-card.vedette .ltv-anim-initiale { font-size: 100px; }
.ltv-anim-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 25%, rgba(0,0,0,0.6) 55%, rgba(5,5,10,0.97) 100%);
  pointer-events: none;
}
.ltv-anim-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--ltv-rouge); color: var(--ltv-blanc);
  font-family: var(--ltv-font-h); font-size: 9px; font-weight: 800;
  padding: 4px 10px; border-radius: 3px; letter-spacing: 1.5px; text-transform: uppercase; z-index: 2;
}
.ltv-anim-badge.or { background: var(--ltv-or); color: #1a0800; }
.ltv-anim-infos { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 16px; z-index: 2; }
.ltv-anim-nom {
  font-family: var(--ltv-font-h); font-weight: 900; font-size: 18px;
  color: var(--ltv-blanc); line-height: 1.15; margin-bottom: 4px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}
.ltv-anim-card.vedette .ltv-anim-nom { font-size: 28px; margin-bottom: 6px; }
.ltv-anim-role {
  font-size: 11px; color: var(--ltv-rouge);
  font-family: var(--ltv-font-h); font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px;
}
.ltv-anim-emission { font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 10px; }
.ltv-anim-reseaux { display: flex; gap: 7px; }
.ltv-btn-reseau {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--ltv-blanc); font-size: 11px; font-weight: 700;
  font-family: var(--ltv-font-h); text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.ltv-btn-reseau:hover { background: var(--ltv-rouge); border-color: var(--ltv-rouge); }

/* ================================================
   CARTES VIDEOS
================================================ */
.ltv-videos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ltv-video-card {
  background: var(--ltv-carte); border-radius: var(--ltv-radius-l);
  overflow: hidden; cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
}
.ltv-video-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.6); }
.ltv-video-thumb {
  position: relative; aspect-ratio: 16/9;
  background: var(--ltv-gris); overflow: hidden;
}
.ltv-video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ltv-video-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center; background: var(--ltv-gris);
}
.ltv-play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3); opacity: 0; transition: opacity 0.2s;
}
.ltv-video-card:hover .ltv-play-overlay { opacity: 1; }
.ltv-play-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--ltv-rouge); display: flex; align-items: center; justify-content: center;
}
.ltv-video-duree {
  position: absolute; bottom: 7px; right: 7px;
  background: rgba(0,0,0,0.85); color: var(--ltv-blanc);
  font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 3px;
}
.ltv-video-corps { padding: 14px; }
.ltv-video-cat {
  font-size: 10px; font-family: var(--ltv-font-h); font-weight: 700;
  color: var(--ltv-rouge); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px;
}
.ltv-video-titre {
  font-family: var(--ltv-font-h); font-weight: 700; font-size: 13px;
  color: var(--ltv-blanc); line-height: 1.4; margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ltv-video-date { font-size: 11px; color: var(--ltv-muted); }

/* ================================================
   CARTES NEWS
================================================ */
.ltv-news-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 20px; }
.ltv-news-card {
  background: var(--ltv-carte); border-radius: var(--ltv-radius-l);
  overflow: hidden; cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
}
.ltv-news-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.5); }
.ltv-news-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--ltv-gris); }
.ltv-news-placeholder {
  width: 100%; aspect-ratio: 16/9; background: var(--ltv-gris);
  display: flex; align-items: center; justify-content: center;
}
.ltv-news-corps { padding: 16px; }
.ltv-news-cat {
  font-family: var(--ltv-font-h); font-size: 10px; font-weight: 700;
  color: var(--ltv-rouge); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px;
}
.ltv-news-titre {
  font-family: var(--ltv-font-h); font-weight: 700; font-size: 14px;
  color: var(--ltv-blanc); line-height: 1.4; margin-bottom: 10px;
}
.ltv-news-card:first-child .ltv-news-titre { font-size: 18px; }
.ltv-news-meta { font-size: 11px; color: var(--ltv-muted); }

/* ================================================
   FOOTER
================================================ */
.ltv-footer {
  background: var(--ltv-sombre);
  border-top: 3px solid var(--ltv-rouge);
  padding: 48px 0 0;
}
.ltv-footer-grid {
  max-width: 1400px; margin: 0 auto;
  padding: 0 20px 40px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  border-bottom: 1px solid var(--ltv-bordure);
}
.ltv-footer-desc { font-size: 13px; color: var(--ltv-muted); line-height: 1.8; margin: 12px 0 18px; }
.ltv-footer-reseaux { display: flex; gap: 10px; flex-wrap: wrap; }
.ltv-footer-reseaux a {
  width: 36px; height: 36px; border-radius: var(--ltv-radius);
  background: var(--ltv-carte); border: 1px solid var(--ltv-bordure);
  display: flex; align-items: center; justify-content: center; font-size: 14px;
  transition: background 0.2s, border-color 0.2s;
}
.ltv-footer-reseaux a:hover { background: var(--ltv-rouge); border-color: var(--ltv-rouge); }
.ltv-footer-col h4 {
  font-family: var(--ltv-font-h); font-weight: 800; font-size: 12px;
  color: var(--ltv-blanc); text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 2px solid var(--ltv-rouge); display: inline-block;
}
.ltv-footer-col li { margin-bottom: 8px; }
.ltv-footer-col li a {
  font-size: 13px; color: var(--ltv-muted);
  display: flex; align-items: center; gap: 7px;
  transition: color 0.2s;
}
.ltv-footer-col li a::before { content: '›'; color: var(--ltv-rouge); font-size: 16px; }
.ltv-footer-col li a:hover { color: var(--ltv-blanc); }
.ltv-footer-bas {
  max-width: 1400px; margin: 0 auto; padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.ltv-footer-copy { font-size: 12px; color: var(--ltv-muted); }
.ltv-footer-liens { display: flex; gap: 18px; }
.ltv-footer-liens a { font-size: 12px; color: var(--ltv-muted); }
.ltv-footer-liens a:hover { color: var(--ltv-rouge); }

/* ================================================
   ZONE ELEMENTOR / DIVI (pages intérieures)
================================================ */
.ltv-page-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  min-height: 60vh;
}

/* Compatibilité Elementor */
.elementor-widget-container { color: var(--ltv-texte); }
.elementor-heading-title { color: var(--ltv-blanc) !important; font-family: var(--ltv-font-h) !important; }
.elementor-widget-text-editor p { color: var(--ltv-texte); }

/* Compatibilité Divi */
#page-container { background: var(--ltv-noir); }
.et_pb_section { padding: 0 !important; }
.et_pb_row { max-width: 1400px; }

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 1100px) {
  .ltv-animateurs-grid { grid-template-columns: repeat(3, 1fr); }
  .ltv-anim-card.vedette { grid-column: span 2; }
  .ltv-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .ltv-hero-grid { grid-template-columns: 1fr; }
  .ltv-sidebar { max-height: 280px; }
  .ltv-animateurs-grid { grid-template-columns: 1fr 1fr; }
  .ltv-anim-card.vedette { grid-column: span 2; min-height: 340px; }
  .ltv-videos-grid { grid-template-columns: 1fr 1fr; }
  .ltv-news-grid { grid-template-columns: 1fr 1fr; }
  .ltv-news-card:first-child { grid-column: span 2; }
  .ltv-nav { display: none; }
  .ltv-nav.visible { display: flex; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--ltv-sombre); padding: 12px; border-bottom: 2px solid var(--ltv-rouge); z-index: 9997; }
  .ltv-nav.visible ul { flex-direction: column; gap: 4px; }
  .ltv-nav.visible a { font-size: 14px; padding: 10px 14px; }
  .ltv-toggle { display: flex; }
}
@media (max-width: 560px) {
  .ltv-animateurs-grid { grid-template-columns: 1fr; }
  .ltv-anim-card.vedette { grid-column: span 1; aspect-ratio: 3/4; min-height: unset; }
  .ltv-videos-grid { grid-template-columns: 1fr; }
  .ltv-news-grid { grid-template-columns: 1fr; }
  .ltv-news-card:first-child { grid-column: span 1; }
  .ltv-footer-grid { grid-template-columns: 1fr; }
}

/* ================================================
   BOUTONS ADMIN EDIT
================================================ */
.ltv-btn-admin {
  margin-left: 12px;
  background: rgba(255,255,255,0.08);
  color: var(--ltv-texte) !important;
  font-size: 11px;
  font-family: var(--ltv-font-h);
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--ltv-radius);
  border: 1px solid var(--ltv-bordure);
  transition: background 0.2s;
  text-decoration: none !important;
}
.ltv-btn-admin:hover { background: var(--ltv-rouge); border-color: var(--ltv-rouge); color: white !important; }

.ltv-anim-edit-btn {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(0,0,0,0.7);
  color: white;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  z-index: 10;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.2s;
}
.ltv-anim-edit-btn:hover { background: var(--ltv-rouge); }

.ltv-anim-add-photo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--ltv-rouge);
  color: white !important;
  font-size: 11px;
  font-family: var(--ltv-font-h);
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--ltv-radius);
  text-decoration: none !important;
  z-index: 10;
  white-space: nowrap;
}
.ltv-anim-add-photo:hover { background: #c0001a; }

.ltv-anim-guide {
  background: var(--ltv-carte);
  border: 2px dashed var(--ltv-bordure);
  border-radius: var(--ltv-radius-l);
  padding: 40px;
  text-align: center;
  margin-bottom: 32px;
}
.ltv-anim-guide-icon { font-size: 48px; margin-bottom: 12px; }
.ltv-anim-guide h3 { font-family: var(--ltv-font-h); font-size: 18px; color: var(--ltv-blanc); margin-bottom: 8px; }
.ltv-anim-guide p { font-size: 14px; color: var(--ltv-muted); margin-bottom: 20px; }
.ltv-anim-guide strong { color: var(--ltv-blanc); }
.ltv-anim-demo { opacity: 0.6; }
