.hero-video {
  position: relative;
  display: flex;
  max-width: 1920px;
  margin: 0 auto 120px;
}

.welcome-video {
  margin: 8px;
  width: calc(100% - 16px);
  border-radius: 12px;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.welcome-video-min {
  aspect-ratio: 16/4.5;
}

.hero-video-content {
  position: absolute;
  left: 50%;
  bottom: 64px;
  transform: translateX(-50%);
  text-align: center;
  max-width: 600px;
  z-index: 1;
  color: white;
}
.hero-video-content .h2 {
  margin-bottom: 24px;
  max-width: 1200px;
}

.hero-subtitle {
  font-family: Medium;
  line-height: 1.5;
}

.hero-video-bg {
  position: absolute;
  left: 8px;
  bottom: 8px;
  top: 8px;
  right: 8px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
  border-radius: 12px;
  aspect-ratio: 16/9;
}
.hero-video-bg-min {
  aspect-ratio: 16/4.5;
}

.search-form {
  position: relative;
  display: flex;
  gap: 4px;
  background-color: white;
  padding: 8px;
  border-radius: 10px;
  z-index: 3;
  width: fit-content;
  margin: 56px auto 0;
}

.search-input {
  border: 1px solid #E9E9EA;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 16px;
  font-family: Medium;
  color: #212530;
  width: 450px;
}

.search-input::placeholder {
  font-family: Medium;
  color: #909297;
  opacity: 1;
  transition: ease 0.3s;
}

.search-input:focus {
  border: 1px solid #BCBEC1;
}
.search-input:focus::placeholder {
  opacity: 0;
}

.search-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: #1582E7;
  transition: ease 0.3s;
}
.search-button svg {
  width: 21px;
  height: 21px;
  fill: white;
}
.search-button:hover {
  cursor: pointer;
  background-color: #1375D0;
}

.search-list {
  display: none;
  position: absolute;
  bottom: -4px;
  left: 0;
  transform: translateY(100%);
  z-index: 1;
  max-width: 518px;
  width: 100%;
  padding: 8px;
  background: white;
  border-radius: 6px;
  border: 1px solid #E9E9EA;
  box-shadow: 0px 20px 25px -5px #64666E;
  max-height: 200px;
  overflow-y: scroll;
}
.search-list::-webkit-scrollbar {
  width: 6px;
}
.search-list::-webkit-scrollbar-thumb {
  background: #E9E9EA;
  border-radius: 5px;
  border: 1px solid #D3D3D6;
}
.search-list::-webkit-scrollbar-button {
  display: none;
}

.search-item {
  width: 100%;
  padding: 4px 8px;
  background: white;
  border-radius: 6px;
  display: flex;
  gap: 8px;
  transition: 0.3s;
}
.search-item svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 5px;
  fill: #64666E;
  transition: 0.3s;
}
.search-item:hover {
  background: #E8F2FD;
}
.search-item:hover .src-item-link {
  color: #1582E7;
}
.search-item:hover svg {
  fill: #1582E7;
}
.search-item:not(:last-child) {
  margin-bottom: 4px;
}

.src-item-link {
  all: unset;
  color: #64666E;
  cursor: pointer;
  transition: 0.3s;
}

.miss-container {
  color: #64666E;
}

@media (max-width: 1100px) {
  .hero-video-content .h2 {
    font-size: 32px;
    line-height: 1.5;
    margin-bottom: 8px;
  }
  .hero-subtitle {
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .hero-video {
    margin: 0 auto 48px;
  }
  .hero-video-content {
    bottom: 16px;
    width: calc(100% - 32px);
  }
  .hero-video-content .h2 {
    font-size: 32px;
    margin-bottom: 8px;
  }
  .welcome-video, .hero-video-bg {
    aspect-ratio: 360/470;
  }
  .welcome-video-min, .hero-video-bg-min {
    aspect-ratio: 360/235;
  }
  .hero-video-bg {
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
  }
  .welcome-video {
    margin: 0;
    width: 100%;
    border-radius: 0;
  }
  .hero-subtitle {
    font-size: 14px;
    line-height: 1.4;
  }
  .search-form {
    padding: 4px;
    margin: 36px auto 0;
    width: 100%;
    bottom: 16px;
    border-radius: 6px;
  }
  .search-input {
    width: 100%;
    padding: 6px 10px;
    font-size: 15px;
    background-color: transparent;
    border: 0;
    font-size: 14px;
  }
  .search-input::placeholder {
    font-size: 14px;
  }
  .search-input:focus {
    border: 0;
  }
  .search-button {
    width: 32px;
    height: 32px;
    background-color: #1375D0;
    border-radius: 4px;
  }
  .search-button svg {
    width: 16px;
    height: 16px;
  }
  .search-list {
    max-width: 100%;
  }
}