header {
  height: 0 !important;
}

.intro-inner {
  padding: 70px 0 50px 0;
}

.video-player {
  display: flex;
  align-items: stretch;
  justify-content: center;
  /* box-shadow: rgba(149, 157, 165, 0.623) 0px 1px 24px; */
  border-radius: 45px;
  /* margin: 0 2vw 80px 2vw; */
  height: fit-content;
  padding: 30px 0;
}

.current-video {
  display: flex;
  flex-direction: column;
  border-radius: 17px 0 0 17px;
  box-shadow: rgba(149, 157, 165, 0.623) 0px 1px 8px;
  width: 70%;
  height: fit-content;
  z-index: 2;
}

.current-video iframe {
  width: 100%;
  height: 100%;
  border-radius: 17px 0 0 17px;
  box-shadow: rgba(149, 157, 165, 0.623) 0px 1px 8px;
  background: #000;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 17px 0 0 17px;
  box-shadow: rgba(149, 157, 165, 0.623) 0px 1px 8px;

  background-image: url('../img/video-thumbnails/herbst.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.video-wrapper iframe {
  background: transparent;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
  border-radius: 17px 0 0 17px;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 17px 0 0 17px;
  background: #000;
  z-index: 0;
}

.video-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
  width: 25%;
}

.video-search {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--orange);
  box-shadow: rgba(149, 157, 165, 0.623) 0px 1px 8px;
  display: flex;
  justify-content: center;
  padding: 10px;
  margin-bottom: 20px;
}

.season-switch {
  color: white;
  border: 3px solid white;
  margin: 5px;
  padding: 10px;
  border-radius: 25px;
  width: 100px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.season-switch p {
  margin: 0;
}

.season-switch.active {
  background-color: white;
  color: var(--orange);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  box-shadow: rgba(149, 157, 165, 0.623) 0px 1px 8px;
  height: 100%;
  border-radius: 0 15px 15px 0;
}

.video {
  display: flex;
  align-items: center;
  border-radius: 15px;
  padding: 10px;
  box-shadow: rgba(149, 157, 165, 0.623) 0px 1px 8px;
  cursor: pointer;
}

.video-thumb {
  width: 120px;
  height: 67.5px;
  border-radius: 10px;
  margin-right: 15px;
  background-color: #ccc;
  object-fit: cover;
}

.video-title {
  letter-spacing: 0;
}

@media screen and (max-width: 1370px) {
  .video {
    width: fit-content;
  }

  .video-title {
    display: none;
  }

  .video-thumb {
    margin-right: 0;
  }
}

@media screen and (max-width: 1024px) {
  .video-player {
    flex-direction: column;
    align-items: center;
  }

  .current-video {
    width: 90%;
    height: 50%;
    border-radius: 17px 17px 0 0;
  }

  .video-wrapper {
    border-radius: 17px 17px 0 0;
  }

  .current-video iframe {
    border-radius: 17px 17px 0 0;
  }

  .video-list {
    justify-content: flex-start;
    width: 90%;
  }

  .video-search {
    border-radius: 0;
  }

  .list {
    height: fit-content;
    border-radius: 0 0 15px 15px;
  }
  
  .video {
    width: 100%;
  }

  .video-thumb {
    margin-right: 15px;
  }

  .video-title {
    display: block !important;
  }
}

@media screen and (max-width: 540px) {
  .intro-inner {
    padding: 40px 0 30px 0;
  }

  .season-switch {
    width: 80px;
    padding: 8px;
    border: 2px solid white;
  }

  .season-switch p {
    font-size: 14px;
  }
}