.steps {
  display: grid;
  gap: 2rem;
}
.steps__item {
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
}
.step__num {
  width: 1.25ch;
  font-size: 14rem;
  font-family: var(--g-font--oswald);
  color: var(--g-color--red);
  opacity: 0.4;
  line-height: 1;
}
.step__texts {
}
.step__text {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
}
.step__text--title {
  font-family: var(--g-font--oswald);
  font-size: var(--g-font-size--x2);
}
.step__text img {
  height: 1em;
}

.gallery-swiper {
  overflow: hidden;
}
.gallery-swiper__wrapper {
}

.gallery {
}
.gallery__item {
}

.gallery-item {
  display: grid;
  gap: 1rem;
}
.gallery-item__thumb {
}
.gallery-item__thumb img {
  width: 100%;
}
.gallery-item__text {
  margin: 0;
}

.links {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1280px) {
  .links {
    grid-template-columns: repeat(3, 1fr);
  }
}
.links__item {
}

.link {
  display: grid;
  font-family: var(--g-font--oswald);
  color: #ffffff;
  text-decoration: none;
}
.link::before {
  z-index: 2;
  grid-area: 1 / 1;
  content: '';
  background-color: var(--g-color--overlay);
}
.link__thumb {
  z-index: 1;
  grid-area: 1 / 1;
}
.link__thumb img {
  width: 100%;
  aspect-ratio: 1 / 0.66;
  object-fit: cover;
}
.link__text {
  z-index: 3;
  grid-area: 1 / 1;
  display: grid;
  align-content: center;
  justify-content: center;
  font-size: var(--g-font-size--x1p5);
  text-align: center;
}
