.hero {
  position: relative;
  /*min-height: 100vh;*/
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-dark);
  border-radius: 32px;
}

.hero_container {
  display: flex;
  justify-content: right;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(to right, rgba(1,2,2,0.72) 40%, rgba(1,2,2,0.1) 100%);*/
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 250px 0 220px;
  max-width: 760px;
}

.hero__date {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--color-white);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 64px;
  line-height: 72px;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero__prize {
  display: block;
  /*max-width: 720px;*/
  width: 100%;
  margin-bottom: 24px;
}

.hero__prize img {
  width: 100%;
  height: auto;
}

.hero__subtitle {
  margin-bottom: 40px;
}

.hero__subtitle-main {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  color: var(--color-white);
  text-transform: uppercase;
  display: block;
}

.hero__subtitle-note {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  color: var(--color-gray);
  display: block;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px 14px 28px;
  background: var(--color-white);
  border-radius: 50px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: var(--color-black);
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.hero__btn:hover {
  background: var(--color-red);
  color: var(--color-white);
}

.hero__btn-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transform: rotate(45deg);
}

/* --- Tablet --- */
@media (max-width: 1023px) {
  .hero__inner {
    padding: 180px 0 60px;
    max-width: 100%;
  }

  .hero__title {
    font-size: 44px;
    line-height: 52px;
  }

  .hero__subtitle-main,
  .hero__subtitle-note {
    font-size: 30px;
  }

  .hero__bg {
    /*object-position: 70% center;*/
    object-position: left;
  }

  .hero__overlay {
    background: linear-gradient(to right, rgba(1,2,2,0.80) 30%, rgba(1,2,2,0.3) 100%);
  }
}

/* --- Mobile --- */
@media (max-width: 699px) {
  .hero {
    min-height: auto;
  }

  .hero__inner {
    padding: 180px 0 48px;
  }

  .hero__title {
    font-size: 32px;
    line-height: 38px;
  }

  .hero__subtitle-main,
  .hero__subtitle-note {
    font-size: 22px;
  }

  .hero__prize {
    max-width: 100%;
  }

  .hero__bg {
    /*object-position: 80% center;*/
    object-position: left;
  }

  .hero__overlay {
    background: rgba(1,2,2,0.65);
  }
}
