/* ===== Section Vidéos ===== */
.video-categories {
  display: flex;
  gap: 12px;
  margin: 32px 0 24px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.video-categories .cat-btn {
  background: #eb7f97;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 10px 24px;
  font-family: 'Poppins', Arial, sans-serif;
  cursor: pointer;
  transition: background 0.2s;
}

.video-categories .cat-btn.active,
.video-categories .cat-btn:hover {
  background: #6e3071;
}

.video-gallery {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.video-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 8px #c9c7e4;
  padding: 16px;
  width: 320px;
  text-align: center;
  transition: box-shadow 0.2s;
}

.video-card:hover {
  box-shadow: 0 4px 16px #eb7f97;
}

.video-card img,
.video-card iframe {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
  aspect-ratio: 16/9;
}

.video-card h3 {
  color: #6e3071;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.video-playlists {
  margin-top: 48px;
}

.video-playlists h2 {
  color: #6e3071;
  font-family: 'Poppins', Arial, sans-serif;
  margin-bottom: 24px;
  text-align: center;
}

.playlist-cards {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.playlist-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 8px #c9c7e4;
  padding: 20px;
  width: 320px;
  text-align: center;
}

.playlist-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
}

.playlist-card h3 {
  color: #6e3071;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .video-gallery,
  .playlist-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}