.hero-content {
  width: 100%;
  min-width: 0;
}

@media (max-width: 760px) {
  .hero-content > * {
    max-width: calc(100vw - 2.5rem);
  }

  .hero-actions .button {
    width: calc(100vw - 2.5rem);
  }

  .hero h1 {
    font-size: clamp(2.85rem, 12.5vw, 3.6rem);
  }
}

.community {
  display: block;
}

.community .community-copy {
  padding: 0 0 clamp(2.5rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
}

.community .community-copy > div:last-child {
  max-width: 560px;
}

.community .community-copy > div:last-child > p {
  color: #596879;
  margin: 0 0 .5rem;
}

.community-gallery {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  grid-template-rows: minmax(300px, 44vw) minmax(220px, 28vw);
  gap: .9rem;
}

.gallery-year {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #071b35;
}

.gallery-year-one {
  grid-row: 1 / 2;
}

.gallery-year-two {
  grid-row: 1 / 3;
}

.gallery-year-three {
  grid-column: 1;
  grid-row: 2;
}

.gallery-year img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.gallery-year:hover img {
  transform: scale(1.018);
}

.gallery-year figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: .5rem .7rem;
  background: rgba(5,20,38,.82);
  color: white;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  backdrop-filter: blur(8px);
}

@media (max-width: 900px) {
  .community .community-copy {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 680px) {
  .community-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery-year-one,
  .gallery-year-two,
  .gallery-year-three {
    grid-column: 1;
    grid-row: auto;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .gallery-year-two {
    aspect-ratio: 4 / 5;
  }

  .gallery-year-three {
    aspect-ratio: 2 / 1;
  }
}
