.video_post_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.video_post_wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.video_post_link {
  position: relative;
  display: block;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
}

.video_post_link::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 27, 0.25);
  z-index: 2;
  transition: background-color 0.3s ease;
}

.video_post_link:hover::before {
  background-color: rgba(0, 0, 27, 0.5);
}

.video_post_play_img {
  font-size: 90px;
  font-weight: 600;
  color: #ff4b44;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  transition: transform 0.3s ease;
}

.video_post_link:hover .video_post_play_img {
  transform: translate(-50%, -50%) scale(1.1);
}

.video_post_aside_wrap {
  padding: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.video_post_aside_wrap::-webkit-scrollbar {
  display: none;
}

.aside_videos_list {
  display: flex;
  align-items: center;
  gap: 16px;
}

.aside_videos_item {
  flex: 0 0 240px;
  border: 1px solid rgba(0, 0, 27, 0.25);
  border-radius: 16px;
  overflow: hidden;
}

.aside_videos_img_wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.aside_videos_img_wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 27, 0.25);
  z-index: 2;
  transition: background-color 0.3s ease;
}

.content_link:hover .aside_videos_img_wrap::before {
  background-color: rgba(0, 0, 27, 0.5);
}

.aside_videos_play_img {
  font-size: 50px;
  font-weight: 600;
  color: #ff4b44;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  transition: transform 0.3s ease;
}

.content_link:hover .aside_videos_play_img {
  transform: translate(-50%, -50%) scale(1.1);
}

.aside_videos_info_wrap {
  padding: 16px;
}

.aside_videos_info_subtitle {
  font-size: 12px;
  font-weight: 600;
  color: #ff4b44;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.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;
}

.video_post_content_wrap {
  background-color: #00001b;
  box-shadow: 0 0 5px rgba(0, 0, 27, 0.25);
  border-radius: 16px;
  padding: 16px;
}

.video_post_content_text {
  font-size: 12px;
  font-weight: 500;
  color: #adadb6;
}

.video_post_list_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 16px;
}

.video_post_list_wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media screen and (min-width: 768px) {
  .video_post_list_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media screen and (min-width: 1024px) {
  .video_post_wrap {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    align-items: start;
  }

  .video_post_link {
    height: 450px;
    overflow: hidden;
  }

  .video_post_play_img {
    font-size: 110px;
  }

  .video_post_aside_wrap {
    height: 450px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .aside_videos_list {
    flex-direction: column;
  }

  .aside_videos_item {
    flex: none;
  }

  .video_post_content_text {
    font-size: 14px;
  }
}

@media screen and (min-width: 1200px) {
  .video_post_wrapper {
    gap: 24px;
  }

  .video_post_content_wrap {
    padding: 24px;
  }
}

@media screen and (min-width: 1440px) {
  .video_post_link {
    height: 500px;
  }

  .video_post_play_img {
    font-size: 130px;
  }

  .video_post_aside_wrap {
    height: 500px;
  }

  .aside_videos_info_subtitle {
    font-size: 14px;
  }

  .aside_videos_info_title {
    font-size: 16px;
  }

  .video_post_content_text {
    font-size: 16px;
  }
}
