.vr-hero {
  padding: 80px 0 0;
}

.vr-hero__box {
  position: relative;
  background: var(--color-panel);
  border-radius: 60px;
  padding: 32px 66px;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow: hidden;
}

.vr-hero__content {
  position: relative;
  z-index: 2;
  flex: 1 1 0;
  max-width: 630px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.vr-hero__title {
  margin: 0;
  font-weight: 800;
  font-size: 64px;
  line-height: 1.1;
  letter-spacing: 4.8px;
  text-transform: uppercase;
  color: #fff;
}

.vr-hero__title-accent {
  color: #39ff14;
  font-style: italic;
}

.vr-hero__subtitle {
  margin: 0;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.6;
  color: var(--color-gray);
  max-width: 590px;
}

.vr-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.vr-hero__media {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  max-width: 680px;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 1;
}

.vr-hero__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: bottom right;
  display: block;
}

@media (max-width: 1100px) {
  .vr-hero__box {
    padding: 28px 40px;
    border-radius: 40px;
  }
  .vr-hero__title {
    font-size: 48px;
    letter-spacing: 3.2px;
  }
  .vr-hero__subtitle {
    font-size: 18px;
  }
  .vr-hero__media {
    width: 46%;
  }
}

@media (max-width: 820px) {
  .vr-hero {
    padding: 24px 0 0;
  }
  .vr-hero__box {
    flex-direction: column;
    padding: 32px 24px 0;
    border-radius: 28px;
    gap: 24px;
  }
  .vr-hero__content {
    gap: 24px;
    padding-bottom: 12px;
    align-items: center;
    text-align: center;
  }
  .vr-hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .vr-hero__actions {
    justify-content: center;
  }
  .vr-hero__title {
    font-size: 36px;
    letter-spacing: 2px;
  }
  .vr-hero__subtitle {
    font-size: 16px;
  }
  .vr-hero__media {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .vr-hero__img {
    width: 100%;
    max-height: 360px;
    object-position: center bottom;
  }
}

@media (max-width: 480px) {
  .vr-hero__title {
    font-size: 30px;
  }
  .vr-hero__actions {
    flex-direction: column;
  }

  .vr-hero__img {
    max-height: 300px;
  }
}
