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

.section-events-hero__grid {
  gap: var(--space-8);
  align-items: center;
}

.section-events-hero__content p {
  max-width: 36rem;
}

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

.section-events-hero__meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.section-events-hero__meta-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.section-events-hero__media {
  padding: var(--space-6);
}

.section-events-hero__figure {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-4);
}

.section-events-hero__figure img {
  width: 100%;
  height: auto;
}

.section-events-hero__figure figcaption {
  margin-top: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.section-events-hero__highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.section-events-hero__highlight-title {
  font-size: var(--font-size-lg);
}

.section-events-hero__highlight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.section-header {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-10);
}

.section-header--calendar {
  display: flex;
  justify-content: space-between;
  gap: var(--space-6);
  align-items: flex-end;
}

.section-events-types__grid {
  gap: var(--space-8);
}

.section-events-types__figure {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.section-events-types__list,
.section-events-private__list,
.section-events-partners__list,
.section-events-gallery__list,
.section-events-form__list {
  margin: 0;
  padding-left: 1.1rem;
  margin-bottom: var(--space-4);
}

.section-events-types__list li,
.section-events-private__list li,
.section-events-partners__list li,
.section-events-gallery__list li,
.section-events-form__list li {
  margin-bottom: var(--space-2);
  color: var(--color-text-muted);
}

.section-events-types__list li::marker,
.section-events-private__list li::marker,
.section-events-partners__list li::marker,
.section-events-gallery__list li::marker,
.section-events-form__list li::marker {
  color: var(--color-primary);
}

.section-events-types__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

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

.section-events-private__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

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

.section-events-partners__cta {
  height: 100%;
}

.section-events-gallery__container {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.section-events-gallery__media {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--space-6);
  padding: var(--space-6);
}

.section-events-gallery__figure {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.section-events-gallery__figure figcaption {
  margin-top: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.section-events-gallery__highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  justify-content: space-between;
}

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

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

.section-events-calendar__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.section-events-calendar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.section-events-calendar__note {
  margin-top: var(--space-6);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.section-events-calendar__filter[aria-pressed="true"],
.section-events-calendar__filter--active {
  border-color: var(--color-primary);
  color: #ffffff;
}

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

.section-events-form__card {
  padding: var(--space-6);
}

.section-events-form__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

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

.section-events-form__legal a {
  color: var(--color-primary);
}

.section-events-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.section-events-faq__container {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.section-events-faq__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.section-events-faq__item .card-body p {
  margin-bottom: 0;
}

.section-events-faq__cta {
  margin-top: var(--space-4);
}

.section-events-faq__cta p {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-4);
}

@media (max-width: 1024px) {
  .section-header--calendar {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-events-calendar__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-events-faq__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-events-gallery__media {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-events-hero__grid,
  .section-events-private__grid,
  .section-events-partners__grid,
  .section-events-form__grid {
    grid-template-columns: 1fr;
  }

  .section-events-hero__media,
  .section-events-form__card {
    margin-top: var(--space-4);
  }

  .section-events-calendar__grid,
  .section-events-faq__grid {
    grid-template-columns: 1fr;
  }

  .section-events-gallery__media {
    padding: var(--space-4);
  }

  .section-events-hero__actions,
  .section-events-calendar__filters,
  .section-events-calendar__actions,
  .section-events-gallery__actions,
  .section-events-form__actions,
  .section-events-private__actions,
  .section-events-types__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
