section:nth-child(even) {
  position: relative;
  background: #111;
}

section:nth-child(odd) {
  position: relative;
  background: transparent;
}

section:nth-child(even)::before {
  content: "";
  position: absolute;
  top: -96px;
  left: 0;
  right: 0;
  height: 96px;
  background: linear-gradient(to top, #111, transparent);
}

section:nth-child(even)::after {
  content: "";
  position: absolute;
  bottom: -96px;
  left: 0;
  right: 0;
  height: 96px;
  background: linear-gradient(to bottom, #111, transparent);
  z-index: 1;
}

section {
  padding: var(--sp-7) 0 var(--sp-8);
}

.section-title {
  display: flex;
  column-gap: var(--sp-4);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: var(--sp-6);
}

.section-title img {
  width: 96px;
  object-fit: contain;
}

.section-title h3 {
  margin: var(--sp-4) 0 0;
}

.gallery-grid {
	column-count: 3;
	column-gap: var(--sp-2);
}

.gallery-grid img {
  margin-bottom: var(--sp-2);
}