.steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-300);
}
.steps .steps-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  justify-content: stretch;
  gap: var(--space-300);
}
@media (max-width: 850px) {
  .steps .steps-cards {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
  }
}
.steps .step-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-200);
  height: 100%;
}
.steps .step-card-header-row {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: stretch;
  gap: var(--space-200);
}
.steps .step-card-heading {
  color: var(--color-primary);
  font-size: var(--heading-size-m);
  line-height: 0.85;
}
.steps .step-card-header-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: start;
  gap: var(--space-0);
}
.steps .step-card-header-content-title {
  font-weight: bold;
  font-size: var(--text-size-m);
}
.steps .step-card-header-content-description {
  font-size: var(--text-size-m);
}
.steps .step-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  border: 1px solid var(--color-layer);
  border-radius: var(--radius-m);
}
.steps .step-one-image {
  content: url("/marketing-pick-a-site.png");
}
.steps .step-two-image {
  content: url("/marketing-operator-selection.png");
}
.steps .step-three-image {
  content: url("/marketing-draw-a-plan.png");
}
.steps .step-four-image {
  background-color: var(--black-500);
  content: url("/example-export-dark.png");
}
