.video_post_wrap {
  position: relative;
}

.video_post_link {
  display: block;
}

.video_post_link_img_wrap {
  position: relative;
  height: auto;
}

.video_post_play_icon {
  width: 90px;
  height: 90px;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video_post_text {
  font-size: 11px;
  font-weight: 500;
  color: #dddddd;
}

@media screen and (min-width: 1024px) {
  .video_post_play_icon {
    width: 120px;
    height: 120px;
  }

  .video_post_aside_wrap {
    position: absolute;
    width: 100%;
    bottom: 0;
    background-color: rgba(4, 1, 19, 0.75);
    padding: 16px;
  }

  .video_post_aside_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .video_post_aside_link {
    position: relative;
    color: #dddddd;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.5s ease;
  }

  .video_post_aside_link:hover {
    color: #de0404;
  }

  .video_post_aside_link:hover::after {
    width: 100%;
  }

  .video_post_aside_img_wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    overflow: hidden;
  }

  .video_post_aside_play_icon {
    height: 60px;
    width: 60px;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .video_post_aside_info_wrap {
    padding: 8px 0;
  }

  .video_post_aside_info_title {
    font-size: 14px;
    font-weight: 700;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .video_post_text {
    font-size: 13px;
  }
}

@media screen and (min-width: 1200px) {
  .video_post_aside_wrap {
    padding: 24px;
  }

  .video_post_aside_list {
    gap: 24px;
  }

  .video_post_aside_info_wrap {
    padding: 16px 0;
  }
}

@media screen and (min-width: 1440px) {
  .video_post_play_icon {
    width: 150px;
    height: 150px;
  }

  .video_post_aside_play_icon {
    height: 90px;
    width: 90px;
  }

  .video_post_aside_info_title {
    font-size: 16px;
  }

  .video_post_text {
    font-size: 15px;
  }
}
