.tour .section-title + p {
  max-width: 1024px;
}

.tour-content + .tour-content {
  margin-top: var(--space-med);
}

.tour p + .tour-content {
  margin-top: var(--space-medbig);
}

.tour-items {
  counter-reset: tour;
  margin-top: var(--space-med);
}

.tour-item {
  border: var(--border);
  border-radius: var(--border-radius);
  padding: var(--space-medsmall);
}

.tour-item:before {
  align-items: center;
  display: flex;
  background-color: var(--brand);
  border-radius: 50%;
  content: counter(tour, decimal-leading-zero);
  color: white;
  counter-increment: tour;
  font-size: var(--fs-body-s);
  height: var(--space-med);
  justify-content: center;
  margin-bottom: var(--space-small);
  width: var(--space-med);
}

.tour-item h4 {
  color: var(--brand);
  font-weight: var(--extrabold);
  font-size: var(--fs-body-l);
  margin-bottom: var(--space-smaller);
}

.tour-item p {
  font-size: var(--fs-body-s);
  margin-bottom: 0;
  line-height: var(--lh-title);
}

.tour-item p.type {
  color: var(--brand);
}

.tour-item p + p {
  margin-top: 6px;
}
