/* Le film reste dans la page et se lance uniquement à la demande. */
.film-entete {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-block-end: 28px;
}
.film-entete h2 { margin-block-start: 12px; }
.film-entete > p { max-width: 36ch; }
.film-cadre { margin: 0; }
.film-cadre video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #080a0f;
  border-radius: 16px;
  box-shadow: 0 20px 60px #0003;
}
.film-cadre figcaption {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-block: 18px;
  font-size: .875rem;
}
.film-cadre a { text-underline-offset: .25em; }
@media (max-width: 600px) {
  .film-entete { display: block; }
  .film-entete > p { margin-block-start: 16px; }
  .film-cadre video { border-radius: 10px; }
}
