.hero.hero--events {
  background-color: var(--color-coral);
  overflow: hidden;
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  gap: 0;
  min-height: auto;
}

.hero--events__inner {
  position: relative;
  max-width: 1440px;
  margin-inline: auto;
  padding: var(--space-5xl) 7.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  overflow: hidden;
}

.hero--events__circles {
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  width: 1123px;
  transform: none;
  pointer-events: none;
  z-index: 0;
}

.hero--events__circles picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero--events__circles img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.hero--events__copy {
  position: relative;
  z-index: 2;
  flex: 1 1 540px;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  color: var(--color-white);
}

.hero--events__title,
.hero--events__copy :is(h1, h2) {
  font-family: var(--font-tilt-neon);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--color-white);
  margin: 0;
}

.hero--events__subtitle,
.hero--events__copy p {
  font-family: var(--font-agenda);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-white);
  margin: 0;
}

.hero--events__cta,
.hero--events__copy a {
  display: inline-block;
  width: fit-content;
  font-family: var(--font-agenda);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-white);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.hero--events__cta:hover,
.hero--events__cta:focus-visible,
.hero--events__copy a:hover,
.hero--events__copy a:focus-visible {
  opacity: 0.85;
  color: var(--color-white);
  transition: opacity 0.2s ease;
}

.hero--events__lockup {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  box-sizing: content-box;
  max-width: 350px;
  align-self: center;
  text-align: right;
}

.hero--events__lockup img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.events-gradient-band {
  width: 100%;
  height: 30px;
  background: var(--silver-gradient);
}

@media (min-width: 768px) and (max-width: 1350px) {
  .hero--events__inner {
    padding-left: clamp(16px, 4vw, 48px);
    padding-right: clamp(16px, 4vw, 48px);
    gap: var(--space-md);
  }

  .hero--events__copy {
    flex: 1 1 auto;
  }

  .hero--events__lockup {
    max-width: clamp(280px, 22vw, 340px);
  }

  .hero--events__circles {
    right: calc(0px - max(0px, (1350px - 100vw) * 0.48));
  }
}

@media (min-width: 992px) and (max-width: 1350px) {
  .hero--events__copy {
    max-width: 350px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero--events__copy {
    max-width: clamp(220px, 30vw, 540px);
  }
}

@media (max-width: 991px) {
  .hero--events__inner {
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-4xl);
  }

  .hero--events__title,
  .hero--events__copy :is(h1, h2) {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .hero--events__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-lg);
    gap: var(--space-lg);
    min-height: auto;
  }

  .hero--events__circles {
    top: 0;
    right: 0;
    left: auto;
    width: 213px;
    height: 200px;
    transform: none;
  }

  .hero--events__lockup {
    width: 218px;
    max-width: 100%;
    padding: 0;
    align-self: flex-start;
    text-align: left;
    order: 1;
  }

  .hero--events__copy {
    order: 2;
    flex: 1 1 auto;
    max-width: 100%;
    gap: var(--space-md);
  }

  .hero--events__title,
  .hero--events__copy :is(h1, h2) {
    font-family: var(--font-tilt-neon);
    font-size: 28px;
    line-height: 1.25;
  }

  .events-gradient-band {
    height: 16px;
  }
}
