@media screen and (min-width: 1240px) and (max-width: 1360px) {
  /* container */
  .container {
    padding: 0 20px;
  }

  /* videoSection */
  .videoSection {
    height: 683px;
  }
}
@media screen and (max-width: 1024px) {
  /* container */
  .container {
    padding: 0 20px;
  }

  /* header */
  .searchBox {
    width: 400px;
  }

  /* videoSection */
  .videoSection {
    height: 564px;
  }

  /* content */
  .contentTop {
    gap: 0;
    justify-content: space-between;
  }
  .contentBtn {
    padding: 10px 50px;
  }
}
@media screen and (max-width: 991px) {
  /* header */
  .headerMiddle {
    display: none;
  }

  /* videoSection */
  .videoSection {
    height: 424px;
  }

  /* content */
  .contentTop {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  /* comments */
  .comments {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  /* header */
  .header {
    padding: 16px;
  }
  .headerRight {
    display: none;
  }

  /* videoSection */
  .videoSection {
    height: 205px;
  }

  /* content */
  .content {
    margin-top: 30px;
  }
  .contentBtn {
    padding: 10px 30px;
    font-size: 18px;
  }
  .contentMiddle {
    flex-direction: column;
    gap: 20px;
  }
  .contentMiddleRight {
    flex-wrap: wrap;
  }

  /* comments */
  .comments {
    padding-bottom: 30px;
  }
}
