.hero-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #000000;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.65);
}

.hero-section__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero-section__row {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  text-align: center;
}

.hero-section__logo {
  width: 100%;
  max-width: 370px;
  height: auto;
  margin-bottom: 25px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
}

.hero-section__date {
  margin: 0;
  color: #e7a92a;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 900;
  line-height: 1.3em;
  margin-bottom: 10px;
}

.hero-section__description {
  color: #ffffff;
  font-size: clamp(19px, 2.5vw, 24px);
  font-weight: 400;
  line-height: 1.4em;
  margin-bottom: 20px;
}

.hero-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  color: #ffffff;
  background: linear-gradient(
    180deg,
    #dd731f 0%,
    #be570a 100%
  );
  border-radius: 6px;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.hero-section__button:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.hero-section__button:focus-visible {
  outline: 3px solid #e7a92a;
  outline-offset: 4px;
}

.hero-section__notice {
  margin: 10px 0 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
}

@media (max-width: 1080px) {
  .hero-section__row {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 600px) {
  .hero-section__logo {
    max-width: 290px;
    margin-bottom: 28px;
  }

  .hero-section__date br {
    display: block;
  }

  .hero-section__button {
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 15px;
  }
}
