.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.4) 34%, rgba(0,0,0,0.1) 72%),
    linear-gradient(0deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.18) 36%, rgba(0,0,0,0.22) 100%),
    url("../../assets/images/hero.jpeg");
  background-size: cover;
  background-position: center right;
  transform: scale(1);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: rgba(0, 0, 0, 0.18);
}

.hero__content {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding) 145px;
}

.hero__date {
  margin-bottom: 34px;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.hero__title {
  max-width: 780px;
  font-size: clamp(30px, 5.2vw, 50px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: white;
}

.hero__subtitle {
  max-width: 560px;
  margin-top: 28px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.84);
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.button-outline {
  height: 52px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: transparent;
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button-outline:hover {
  background: white;
  color: black;
  border-color: white;
}

.play-triangle {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid currentColor;
}

@media (max-width: 760px) {
  .hero__content {
    padding-bottom: 90px;
  }

  .hero__date {
    margin-bottom: 24px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

#redirect {
  display: flex;
  flex-direction: row;
  justify-items: center;
}

#redirect-logo {
  font-size: 15px;
}

#redirect-text {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding: 0 5px 0 5px;
}

.cta-arrow {
  font-size: 20px;
  letter-spacing: 0;
  transition: transform 150ms ease;
  /* padding: 5px 0px 0px 5px; */
}