body {
}

.about-intro {
  padding-top: var(--space-24);
}

.about-intro__header {
  text-align: left;
}

.about-intro__lead {
  margin-top: var(--space-4);
}

.about-intro__actions {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.about-intro__grid {
  margin-top: var(--space-12);
  align-items: center;
}

.about-intro__media {
  max-width: 540px;
  margin-inline: auto;
}

.about-environment__grid {
  align-items: stretch;
}

.about-environment__chips {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-environment__list {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.about-environment__links {
  margin-top: var(--space-4);
}

.about-team__grid {
  align-items: center;
}

.about-team__media {
  min-height: 240px;
}

.about-team__content ul {
  margin-top: var(--space-4);
  display: grid;
  gap: var(--space-2);
}

.about-team__actions {
  margin-top: var(--space-4);
}

.about-atmosphere__grid {
  align-items: stretch;
}

.about-atmosphere__links {
  align-items: center;
}

.about-chips__panel {
  display: grid;
  gap: var(--space-6);
}

.about-chips__table-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
}

.about-chips__table th,
.about-chips__table td {
  font-size: var(--font-size-sm);
}

.about-events__grid {
  align-items: start;
}

.about-events__media {
  margin-bottom: var(--space-4);
}

.about-gallery__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-gallery__item--wide {
  grid-column: span 2;
}

.about-gallery__cta {
  text-align: center;
}

.about-community__grid {
  align-items: stretch;
}

.about-community__links {
  align-items: center;
}

.about-final-cta__panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  align-items: flex-start;
}

.about-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

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

  .about-final-cta__panel {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .about-final-cta__content {
    max-width: 52ch;
  }
}

@media (max-width: 900px) {
  .about-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-gallery__item--wide {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .about-intro {
    padding-top: var(--space-20);
  }

  .about-gallery__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-gallery__item--wide {
    grid-column: span 1;
  }

  .about-final-cta__panel {
    align-items: flex-start;
  }
}
