.real-player-stage {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: 38px 0 24px;
}

.real-player-heading {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 18px;
}

.real-player-heading .pl-titlebox {
  margin-left: auto;
  text-align: right;
}

.real-player-video {
  max-height: none;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .5);
  cursor: default;
}

.real-player-content {
  padding-top: 34px;
}

.real-film-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.real-film-meta,
.real-film-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.real-film-meta span,
.real-film-genres span {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: rgba(255, 255, 255, .78);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.real-film-genres span {
  border-color: rgba(0, 196, 164, .38);
  color: var(--teal);
}

.real-film-synopsis {
  max-width: 820px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  line-height: 1.8;
}

.pl-access.pl-access--free {
  border-color: rgba(0, 196, 164, .48);
  background: linear-gradient(130deg, rgba(0, 196, 164, .16), rgba(0, 196, 164, .04));
}

.pl-access.pl-access--free b {
  color: var(--teal);
}

.pl-vote .stars {
  margin-top: 12px;
}

.stars button:disabled {
  cursor: wait;
  opacity: .55;
}

.real-player-section {
  margin-top: 48px;
}

.real-player-section > h3,
.real-player-section .ps-head h3 {
  margin: 0 0 22px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(21px, 2.2vw, 30px);
  text-transform: uppercase;
}

.player-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.player-gallery .pl-photo {
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #111;
}

.player-gallery .pl-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-error {
  display: grid;
  min-height: 70vh;
  padding: 140px 24px 80px;
  place-content: center;
  justify-items: center;
  color: #fff;
  text-align: center;
}

.player-error h1 {
  font-family: var(--display);
  text-transform: uppercase;
}

.player-error p {
  margin: 10px 0 24px;
  color: rgba(255, 255, 255, .65);
}

@media (max-width: 900px) {
  .real-player-stage {
    width: calc(100% - 28px);
    padding-top: 24px;
  }

  .real-player-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .real-player-heading .pl-titlebox {
    margin-left: 0;
    text-align: left;
  }

  .player-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .player-gallery {
    grid-template-columns: minmax(0, 1fr);
  }
}
