.silverfox-steps__wrap {
  width: 100%;
}

.silverfox-steps__title {
  margin: 0 0 12px;
}

.silverfox-steps__intro {
  margin: 0 0 18px;
}

.silverfox-steps__row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: stretch;
}

.silverfox-steps__item {
  position: relative;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 240px;
  display: flex;
}

.silverfox-steps__link {
  display: block;
  color: inherit;
  text-decoration: none;
  outline: none;
  width: 100%;
  height: 100%;
}

.silverfox-steps__body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  height: 100%;
}

.silverfox-steps__link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.silverfox-steps__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 0;
}

.silverfox-steps__icon svg {
  width: 1em;
  height: 1em;
}

.silverfox-steps__img {
  display: block;
  max-width: 100%;
  height: auto;
}

.silverfox-steps__desc {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.silverfox-steps__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  margin: 0 0 8px;
}

.silverfox-steps__item-title {
  display: block;
  font-weight: 700;
  margin: 0 0 6px;
}

.silverfox-steps__item-info {
  margin: 0;
}

.silverfox-steps__separator {
  position: absolute;
  top: 18px;
  right: -8px;
  transform: translateX(50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  pointer-events: none;
}

/* Hide separator on small screens */
@media (max-width: 767px) {
  .silverfox-steps__row {
    gap: 14px;
  }
  .silverfox-steps__item {
    flex-basis: 100%;
    min-width: 0;
  }
  .silverfox-steps__separator {
    display: none !important;
  }
}

