.events-hero-highlight {
  max-width: 480px;
  margin-left: auto;
}

.section-heading h2 {
  margin-bottom: var(--space-2);
}

.events-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.events-card-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-4);
}

.events-card img,
.events-seasonal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events-seasonal-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.events-list {
  list-style: none;
}

.events-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.events-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

.events-steps {
  counter-reset: step-counter;
}

.events-steps li {
  counter-increment: step-counter;
  margin-bottom: var(--space-4);
  padding-left: 2.5rem;
  position: relative;
}

.events-steps li h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-1);
}

.events-steps li p {
  margin-bottom: 0;
}

.events-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
  font-weight: 600;
  background: radial-gradient(circle at 30% 0, var(--color-primary-strong), var(--color-accent));
  color: #000;
  box-shadow: var(--shadow-soft);
}

.events-booking-form {
  width: 100%;
}

.events-label {
  display: block;
  margin-bottom: var(--space-2);
  font-size: var(--font-size-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

@media (max-width: 767px) {
  .events-hero-highlight {
    max-width: 100%;
    margin-left: 0;
    margin-top: var(--space-6);
  }

  .events-seasonal-media {
    margin-top: var(--space-6);
  }
}
