.events-hero {
  padding-top: var(--space-16);
  padding-bottom: var(--space-12);
}

.events-hero__grid {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .events-hero__grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: center;
  }
}

.events-hero__title {
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
}

.events-hero__lead {
  max-width: 40rem;
}

.events-hero__actions {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.events-hero__note {
  margin-top: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

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

.events-hero__highlight-card {
  margin-top: var(--space-4);
}

@media (min-width: 768px) {
  .events-hero__highlight-card {
    margin-top: var(--space-6);
  }
}

.events-section-header,
.events-section-header-simple {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

@media (min-width: 992px) {
  .events-section-header,
  .events-section-header-simple {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.events-section-header__text {
  max-width: 40rem;
}

.events-section-header__image {
  max-width: 26rem;
  margin-inline: auto;
}

.events-section-header-simple__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

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

.events-layout-alt {
  align-items: flex-start;
  gap: var(--space-8);
}

.events-highlight-grid {
  display: grid;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .events-highlight-grid {
    gap: var(--space-6);
  }
}

.events-bullet-list {
  list-style: none;
  margin-top: var(--space-4);
}

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

.events-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background-color: var(--color-primary-strong);
}

.events-cta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.events-note {
  font-size: var(--font-size-sm);
}

.events-table-wrapper {
  overflow-x: auto;
}

.events-corporate-card,
.events-booking-card {
  height: 100%;
}

.order-mobile-last {
  order: 2;
}

@media (min-width: 768px) {
  .order-mobile-last {
    order: 0;
  }
}

.events-timeline {
  margin-top: var(--space-6);
  border-left: 1px solid var(--color-border-subtle);
}

.events-timeline-item {
  position: relative;
  padding-left: var(--space-6);
  padding-bottom: var(--space-6);
}

.events-timeline-item::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 0.4rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background-color: var(--color-primary-strong);
  box-shadow: 0 0 0 4px var(--color-primary-soft);
}

.events-timeline-item__date {
  font-size: var(--font-size-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-bottom: var(--space-2);
}

.events-timeline-item__day {
  font-weight: 600;
  margin-right: var(--space-2);
}

.events-timeline-item__title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-1);
}

.events-timeline-item__meta {
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
  margin-bottom: var(--space-2);
}

.events-timeline-item__description {
  font-size: var(--font-size-sm);
}

@media (max-width: 600px) {
  .events-timeline {
    border-left: none;
  }

  .events-timeline-item {
    padding-left: 0;
  }

  .events-timeline-item::before {
    display: none;
  }
}

.events-timeline-cta {
  margin-top: var(--space-6);
}

.events-faq {
  max-width: 52rem;
  margin-inline: auto;
}

.events-faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-subtle);
  background-color: var(--color-surface);
  margin-bottom: var(--space-3);
}

.events-faq-item__trigger {
  width: 100%;
  text-align: left;
  padding: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text);
  cursor: pointer;
}

.events-faq-item__icon {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--color-border-strong);
  position: relative;
  flex-shrink: 0;
}

.events-faq-item__icon::before,
.events-faq-item__icon::after {
  content: "";
  position: absolute;
  background-color: var(--color-text);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform var(--transition-normal);
}

.events-faq-item__icon::before {
  width: 8px;
  height: 2px;
}

.events-faq-item__icon::after {
  width: 2px;
  height: 8px;
}

.events-faq-item[data-open="true"] .events-faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.events-faq-item__panel {
  padding: 0 var(--space-4) var(--space-4);
  font-size: var(--font-size-sm);
}

.events-faq-item__panel a {
  text-decoration: underline;
}

.events-faq-item__trigger:focus-visible {
  outline: 2px solid var(--color-primary-strong);
  outline-offset: 2px;
}
