/* movieItem */
.movieItem {
  position: relative;
}

.movieItem button {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-top: var(--spacing-1);
  font: var(--font-shorthand-small-2-normal);
  color: inherit;
  text-align: left;
  cursor: pointer;
  background-color: transparent;
  border: none;
  border-radius: 0;
}

.movieItem button::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  content: "";
}

.movieItem__thumbnail {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.movieItem__thumbnail img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.movieItem__thumbnail::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 23%;
  aspect-ratio: 1;
  cursor: pointer;
  content: url("/global/energy/resources/pr_movie/img/icon_play.svg");
  translate: -50% -50%;
}
