.video_post_wrap {
  display: grid;
  grid-template-columns: 1fr;
}

.video_post_link {
  display: block;
}

.video_post_img_wrap {
  position: relative;
  height: auto;
  border-radius: 5px;
  overflow: hidden;
}

.video_post_play_img {
  font-size: 70px;
  font-weight: 600;
  color: #ffffff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.5s ease;
}

.video_post_link:hover .video_post_play_img {
  transform: translate(-50%, -50%) scale(1.1);
}

.video_post_aside_wrap {
  display: none;
}

.video_post_content_text {
  font-size: 11px;
  font-weight: 500;
  color: #3a3a3a;
}

@media screen and (min-width: 768px) {
  .video_post_play_img {
    font-size: 90px;
  }
}

@media screen and (min-width: 1024px) {
  .video_post_wrap {
    display: flex;
    align-items: stretch;
  }

  .video_post_link {
    width: 70%;
  }

  .video_post_img_wrap {
    height: 600px;
  }

  .video_post_play_img {
    font-size: 110px;
  }

  .video_post_aside_wrap {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 30%;
    height: 600px;
    background-color: #f7f5ea;
    border: 1px solid #808080;
    padding: 16px;
  }

  .aside_videos_list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    overflow-y: auto;
    flex-grow: 1;
    padding-right: 8px;
  }

  .aside_videos_list::-webkit-scrollbar {
    width: 4px;
  }

  .aside_videos_list::-webkit-scrollbar-track {
    background-color: #f7f5ea;
  }

  .aside_videos_list::-webkit-scrollbar-thumb {
    background-color: #006;
  }

  .aside_videos_img_wrap {
    aspect-ratio: 14/7;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
  }

  .aside_videos_play_img {
    font-size: 50px;
    font-weight: 600;
    color: #ffffff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.5s ease;
  }

  .content_link:hover .aside_videos_play_img {
    transform: translate(-50%, -50%) scale(1.1);
  }

  .aside_videos_info_wrap {
    padding: 8px 0;
  }

  .aside_videos_info_title {
    font-size: 14px;
    font-weight: 700;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 16px;
  }

  .aside_videos_info_subtitle_wrap {
    display: flex;
    align-items: baseline;
    gap: 8px;
  }

  .aside_videos_info_subtitle_img {
    font-size: 10px;
    font-weight: 600;
    color: #707070;
  }

  .aside_videos_info_subtitle {
    font-size: 10px;
    font-weight: 600;
  }

  .video_post_content_text {
    font-size: 13px;
  }
}

@media screen and (min-width: 1440px) {
  .aside_videos_info_title {
    font-size: 16px;
  }

  .aside_videos_info_subtitle_img {
    font-size: 12px;
  }

  .aside_videos_info_subtitle {
    font-size: 12px;
  }

  .video_post_content_text {
    font-size: 15px;
  }
}
