@charset "utf-8";

.movielist {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.post_content .movielist--category {
  margin: 40px 0 20px;
  padding: 10px 15px;
  background: #5a4c66;
  color: #fff;
}
.movielist--category {
  background: #eee;
}
.movielist * {
 box-sizing: border-box;
}
.movielist--item,
.index_news li.movielist--item {
  width: calc(25% - 15px);
  background: #eee;
  margin: 0;
  position: relative;
}
.movielist--item a {
  display: block;
}
.movielist--item div img {
  transition: 0.3s ease;
  width: 100%;
  height: auto;
}
.movielist--item a:hover div img {
  transform: scale(1.1);
}
.movielist--item a:hover {
  color: inherit;
  text-decoration: none;
}
.movielist--item div {
  overflow: hidden;
  line-height: 0;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
}
.movielist--item .icon {
  width: 60px;
  height: auto;
  position: absolute;
  top: 55px;
  transition: 0.3s ease;
  left: 0;
  right: 0;
  margin: auto;
}
.movielist--item a:hover .icon {
  opacity: 0;
}

.movielist--item iframe {
  max-width: 100%;
  max-height: 192px;
}
.movielist--item h3 {
  margin-top: 5px;
  font-size: 14px;
  font-weight: normal;
  padding: 15px;
  margin: 0;
  -webkit-line-clamp: unset !important;
}
.inner {
  max-width: 1200px;
  margin: auto;
}

.index_news ul {
  margin-bottom: 20px;
}