/* SECTION AFFICHE  */
section {
  width: 100%;
}

.affiche-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 100px;

  margin: 50px 0px;
  width: 100%;
}

.affiche-container img {
  max-height: 95vh;
  max-width: 95vw;
}

.affiche-container .affiche-text {
  width: 25%;
  padding-left: 0px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.affiche-container .no-poster {
  width: 50%;
}

p.center {
  text-align: center;
}

@media (max-width: 600px) {
  .affiche-container .affiche-text {
    width: 100%;
    padding: 20px;
  }
}

.spec-title {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--tertiary-color);
}

/* SECTION VIDEO  */
.video-container {
  display: flex;
  justify-content: center;
  margin: 50px 0px;
}

iframe {
  max-width: 95vw;
}

/* SECTION CREDITS  */
.credits {
  width: fit-content;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 40px; /* ligne / colonne */
  max-width: 600px;
  margin: 50px auto;

  font-size: 1.1rem;
  font-weight: 600;
  line-height: 2;
}

.role {
  text-align: right;
  font-weight: 200;
}

/*  SECTION SYNOPSIS */

.synopsis-container {
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem 2rem;
  width: max(50%, 400px);
}

.synopsis-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 600;
}

.affiche-text .synopsis {
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: -10px;
}