/* Carte vidéo */
.cust-video-card {
  background: #232a3d;
  border-radius: 16px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  max-width: 340px;
}
.cust-video-card__thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.cust-video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cust-video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}
.cust-video-card__info {
  background: #232a3d;
  padding: 16px 16px 12px 16px;
}
.cust-video-card__title {
  color: #fff;
  font-size: 1.1em;
  font-weight: bold;
  margin: 0 0 6px 0;
}
.cust-video-card__title a {
  color: #fff;
  text-decoration: none;
}
.cust-video-card__disciplines {
  color: #b3b8c7;
  font-size: 0.95em;
  margin-bottom: 8px;
}
.cust-video-card__meta {
  display: flex;
  align-items: center;
  font-size: 0.95em;
  color: #b3b8c7;
}
.cust-video-card__views {
  margin-left: auto;
  font-weight: 500;
}
.cust-video-card__duration {
  position: absolute;
  bottom: 12px;
  right: 16px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.9em;
}
.cust-video-card__body {
  padding: 16px 16px 12px 16px;
}
