/* =====================================================
   HERO VIDÉOS
   ===================================================== */
.hero-videos {
  background: var(--color-services);   /* #1a1a2e, défini dans tokens.css */
  color: #fff;
  padding: 3.5rem 2rem;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
.hero-videos::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 0%, rgba(200,16,46,.35) 0%, transparent 60%);
  pointer-events: none;
}
.hero-videos .badge-leader {
  display: inline-block;
  background: rgba(200,16,46,.18);
  color: #f7a8b5;
  border: 1px solid rgba(200,16,46,.4);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
}
.hero-videos h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero-videos .hero-sub {
  font-size: .98rem;
  color: rgba(255,255,255,.72);
  margin-bottom: .9rem;
  line-height: 1.65;
}
/* Vignette réduite à 75% + infos sous la vignette */
.hero-vid-une-wrap {
  max-width: 75%;
}
.hero-vid-une-titre {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: .9rem 0 .4rem;
  line-height: 1.35;
}
.hero-vid-une-resume {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 1rem;
  line-height: 1.55;
}
.hero-videos .hero-price {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: .5rem;
  padding: .85rem 1.2rem;
  font-size: .9rem;
  color: rgba(255,255,255,.75);
}
.hero-videos .hero-price i {
  color: rgba(255,255,255,.6);
  font-size: .95rem;
}
.btn-hero-vid {
  background: #C8102E;
  color: #fff;
  border: none;
  padding: .85rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: .5rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: background .2s, transform .15s;
}
.btn-hero-vid:hover {
  background: #a50d26;
  color: #fff;
  transform: translateY(-1px);
}
/* Vignette cliquable côté droit */
.hero-vid-thumb {
  position: relative;
  border-radius: .75rem;
  overflow: hidden;
  display: block;
  aspect-ratio: 16/9;
  background: #000;
  text-decoration: none;
}
.hero-vid-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.hero-vid-thumb:hover img {
  transform: scale(1.03);
}
.hero-vid-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.28);
  transition: background .2s;
}
.hero-vid-thumb:hover .hero-vid-play {
  background: rgba(0,0,0,.12);
}
.hero-vid-play i {
  font-size: 4rem;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.6));
}
.hero-vid-duree {
  position: absolute;
  bottom: .75rem;
  right: .75rem;
  background: rgba(0,0,0,.7);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  padding: .2rem .65rem;
  border-radius: .3rem;
  pointer-events: none;
}
