.video_post_wrapper {
  background: #f6f6f6;
  border-radius: 5px;
  padding: 16px;
  overflow: hidden;
  box-shadow: 0px 0px 5px rgba(254, 89, 0, 0.5);
  margin-bottom: 15px;
}

.video_post_content_wrap {
  position: relative;
  margin-bottom: 15px;
}

.video_post_content_link {
  display: block;
  border-radius: 5px;
  overflow: hidden;
  transition: ease 0.5s;
  box-shadow: 0px 0px 5px rgba(254, 89, 0, 0.5);
  position: relative;
}

.video_post_content_link:hover {
  box-shadow: 0px 0px 25px rgba(254, 89, 0, 0.5);
}

.video_post_content_link_img_wrap {
  height: 300px;
  position: relative;
}

.video_post_content_play_icon {
  height: 90px;
  width: 90px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video_post_aside_wrap {
  display: none;
}

.video_post_content_text {
  font-size: 14px;
  font-weight: 500;
  color: rgb(105, 105, 105);
}

.video_post_content_info_wrap {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(165, 165, 165, 0.35);
}

@media screen and (min-width: 576px) {
  .video_post_wrapper {
    margin-bottom: 20px;
  }

  .video_post_content_wrap {
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 768px) {
  .video_post_wrapper {
    padding: 18px;
  }

  .video_post_content_link_img_wrap {
    height: 400px;
  }

  .video_post_content_play_icon {
    height: 110px;
    width: 110px;
  }
}

@media screen and (min-width: 1024px) {
  .video_post_wrapper {
    margin-bottom: 25px;
  }

  .video_post_content_wrap {
    margin-bottom: 25px;
  }

  .video_post_content_text {
    font-size: 16px;
  }

  .video_post_aside_wrap {
    background-color: rgba(246, 246, 246, 0.5);
    padding: 16px;
    position: absolute;
    top: 1%;
    right: 1%;
    border-radius: 5px;
    width: 30%;
    height: 97%;
    display: flex;
    align-items: flex-start;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .video_post_aside_wrap::-webkit-scrollbar {
    width: 6px;
  }

  .video_post_aside_wrap::-webkit-scrollbar-thumb {
    background: rgba(254, 89, 0, 0.5);
    border-radius: 3px;
  }

  .video_post_aside_wrap::-webkit-scrollbar-thumb:hover {
    background: #fe5900;
  }

  .video_post_aside_wrap::-webkit-scrollbar-track {
    background: rgb(255, 172, 75);
  }

  .video_post_aside_play_icon {
    height: 35px;
    width: 35px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

@media screen and (min-width: 1200px) {
  .video_post_wrapper {
    padding: 20px;
    margin-bottom: 30px;
  }

  .video_post_content_wrap {
    margin-bottom: 30px;
  }

  .video_post_content_link_img_wrap {
    height: 500px;
  }

  .video_post_content_play_icon {
    height: 150px;
    width: 150px;
  }

  .video_post_content_text {
    font-size: 18px;
  }

  .video_post_aside_play_icon {
    height: 45px;
    width: 45px;
  }
}

@media screen and (min-width: 1440px) {
  .video_post_wrapper {
    padding: 24px;
  }

  .video_post_content_link_img_wrap {
    height: 600px;
  }

  .video_post_content_play_icon {
    height: 180px;
    width: 180px;
  }

  .video_post_aside_play_icon {
    height: 55px;
    width: 55px;
  }
}
