.content {
  padding-bottom: 200px;
  padding-top: 60px;
}
@media (max-width: 834px) {
  .content {
    padding: 0 8.33vw 14.32vw;
  }
}
.content ul {
  display: grid;
  gap: min(3.33vw, 64px);
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 834px) {
  .content ul {
    gap: 8.33vw;
    grid-template-columns: repeat(1, 1fr);
  }
}

.movie_block .video {
  position: relative;
}
.movie_block .video .play_btn {
  display: block;
  height: 60px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
}
.movie_block img {
  width: 100%;
}
.movie_block h4 {
  color: #fff;
  margin-top: 16px;
  font-size: 1rem;
}
@media (max-width: 834px) {
  .movie_block h4 {
    font-size: 3.64vw;
  }
}
.movie_block .date {
  color: #959595;
  font-size: 1rem;
}
@media (max-width: 834px) {
  .movie_block .date {
    font-size: 3.64vw;
  }
}

.movie__item {
  cursor: pointer;
  min-width: 320px;
  position: relative;
}
@media (min-width: 835px) {
  .movie__item {
    min-width: initial;
  }
}
@media (min-width: 835px) {
  .movie__item:hover .thumb::before {
    opacity: 0;
  }
}
@media (min-width: 835px) {
  .movie__item:hover .ttl,
.movie__item:hover .date {
    opacity: 0.7;
  }
}
.movie__item .thumb {
  aspect-ratio: 16/9;
  clip-path: inset(0 100% 0 0);
  position: relative;
  transition: all 0.5s 0.1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.-ready .movie__item .thumb {
  clip-path: inset(0 0 0 0);
}
.movie__item .thumb img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.movie__item .thumb:before {
  background: #000;
  content: "";
  height: 100%;
  opacity: 0.3;
  transition: opacity 0.3s 0s ease;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.movie__item .thumb:after {
  background: url(/tv/assets/img/page/movie/play.png) no-repeat 0 0/100%;
  content: "";
  height: min(12.5vw, 60px);
  transform: translate(-50%, -50%);
  width: min(12.5vw, 60px);
  position: absolute;
  top: 50%;
  left: 50%;
}
.movie__item .ttl {
  transition: all 0.3s ease;
  font-size: 0.8125rem;
  color: #fff;
  font-weight: 500;
  margin-top: 10px;
}
@media (min-width: 835px) {
  .movie__item .ttl {
    font-size: 0.875rem;
    margin-top: 16px;
  }
}
.movie__item .date {
  transition: all 0.3s ease;
  font-size: 0.9375rem;
  color: #959595;
}
@media (min-width: 835px) {
  .movie__item .date {
    font-size: 1rem;
  }
}