vidéos.css
/* ============================
   VIDÉOS — STYLE GLOBAL
============================ */
.video-section {
  margin-top: 25px;
}
.video-section h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}
/* ============================
   GRILLE DES VIDÉOS
============================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.video-card {
  background: var(--card-bg);
  padding: 15px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
  text-align: center;
}
.video-card:hover {
  transform: translateY(-4px);
}
/* ============================
   VIDÉOS LOCALES
============================ */
video {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: var(--shadow);
}
/* ============================
   VIDÉOS YOUTUBE
============================ */
iframe {
  width: 100%;
  height: 180px;
  border: none;
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: var(--shadow);
}
/* ============================
   COURS RECOMMANDÉS
============================ */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.course-card {
  background: var(--card-bg);
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.2s ease;
}
.course-card:hover {
  transform: translateY(-4px);
}
.course-card h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.course-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  background: #0033a0;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}
.course-btn:hover {
  background: #0050d4;
}
/* ============================
   RESPONSIVE
============================ */
@media (max-width: 600px) {
  iframe {
    height: 160px;
  }
  .course-card {
    padding: 15px;
  }
}
