.azs-steps {
  margin-top: 1.5em;
  margin-bottom: 2.1875em;
}

.page .azs-steps h3.azs-steps__title {
  margin-bottom: 1em;
  font-size: 1.5em;
}

.azs-steps .azs-steps__items {
  display: grid;
  gap: 1em;
  margin-top: 1.5em;
  margin-bottom: 2.1875em;
  padding-left: 0;
  color: #000000;
  list-style: none;
}

.azs-steps .azs-steps__item {
  --overlay-offset: 0.5625rem;
  display: flex;
  align-items: center;
  gap: 0.75em;
  padding: calc(1.5em + var(--overlay-offset)) 1em 1.5em 1em;
  background-color: var(--color-white);
  box-shadow: 0 10px 25px 0 rgba(76, 86, 86, 0.15);
}

.azs-steps .azs-steps__icon {
  position: relative;
  width: 1em;
  height: 1em;
  margin-top: calc(-1 * var(--overlay-offset));
  margin-left: var(--overlay-offset);
  flex-shrink: 0;
  font-size: 4.375rem;
  z-index: 3;
}

.azs-steps .azs-steps__icon::after {
  position: absolute;
  top: calc(-1 * var(--overlay-offset));
  left: calc(-1 * var(--overlay-offset));
  display: inline-block;
  width: 1em;
  height: 1em;
  font-size: 2.5rem;
  background-color: var(--color-secondary);
  border-radius: 50%;
  z-index: 1;
  content: '';
}

.azs-steps .azs-steps__ic {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  z-index: 2;
}

@media (min-width: 576px) {
  .azs-steps {
    margin-top: 3.125em;
    margin-bottom: 3.125em;
  }
}

@media (min-width: 768px) {
  .azs-steps {
    margin-top: 5em;
    margin-bottom: 5em;
  }

  .azs-steps .azs-steps__items {
    gap: 1.5em;
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .azs-steps {
    margin-top: 3.125em;
    margin-bottom: 3.125em;
  }

  .azs-steps .azs-steps__items {
    gap: 1.25em;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 1440px) {
  .azs-steps {
    margin-top: 5em;
    margin-bottom: 5em;
  }

  .page .azs-steps h3.azs-steps__title {
    font-size: 2em;
  }

  .azs-steps .azs-steps__items {
    font-size: 1.25em;
  }

  .azs-steps .azs-steps__item {
    --overlay-offset: 0.875rem;
  }
}
