.steps {
  background: var(--color-black);
  text-align: center;
}

.steps h2,
.steps h3 {
  color: var(--color-gold);
}

.steps h2 {
  margin-bottom: var(--space-sm);
}

.steps > p {
  color: var(--color-grey);
  font-size: var(--text-md);
  margin-bottom: var(--space-xl);
}

.steps__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
  text-align: left;
}

.steps__image {
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 300px;
  height: 220px;
}

.steps__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.steps__row ul {
  list-style: disc;
  color: var(--color-grey);
  margin-top: var(--space-sm);
  padding-left: var(--space-md);
  line-height: var(--line-loose);
  font-size: var(--text-base);
}

@media (max-width: 1100px) {
  .steps__row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .steps__row {
    grid-template-columns: 1fr;
  }
}
