.numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 10cqw, 80px);
}
.numbers__title {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-optical-sizing: auto;
  letter-spacing: var(--letter-spacing);
  font-size: var(--font-size-36);
  color: var(--color-primary);
  width: 100%;
  margin-bottom: 0.5em;
}
.numbers__text {
  font-family: var(--font-basic);
  font-weight: var(--font-weight-medium);
  font-optical-sizing: auto;
  font-size: var(--font-size-20);
  color: var(--color-primary);
  margin-top: 0.5em;
}
.numbers__items {
  display: flex;
}
.numbers__item {
  text-align: center;
  max-width: 320px;
  flex-grow: 1;
  flex-basis: 100%;
}
.numbers__item-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1em;
}
.numbers__item-image {
  max-height: 80px;
  margin: 0 auto;
}
.numbers__item-title {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-optical-sizing: auto;
  letter-spacing: var(--letter-spacing);
  font-size: var(--font-size-30);
  color: var(--color-secondary);
}
.numbers__item-text {
  font-family: var(--font-basic);
  font-weight: var(--font-weight-regular);
  font-optical-sizing: auto;
  font-size: var(--font-size-16);
  color: var(--color-secondary);
  margin-top: 1em;
}
.numbers__item-separator {
  margin: 0 1em;
  background-color: var(--color-secondary);
  width: 1px;
  position: relative;
}
.numbers__item-separator::before, .numbers__item-separator::after {
  content: "";
  position: absolute;
  left: calc(-0.2em + 0.5px);
  width: 0.4em;
  height: 0.4em;
  background-color: var(--color-secondary);
  border-radius: 50%;
}
.numbers__item-separator::before {
  top: 0;
}
.numbers__item-separator::after {
  bottom: 0;
}
@media screen and (max-width: 960px) {
  .numbers {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--gap);
  }
  .numbers__main {
    flex-basis: 100%;
    text-align: center;
  }
  .numbers__image-wrapper img {
    margin: 0 auto;
  }
  .numbers__items {
    flex-direction: column;
    align-items: center;
  }
  .numbers__item {
    max-width: none;
    flex-basis: auto;
  }
  .numbers__item-separator {
    width: 100%;
    height: 1px;
    margin: 1em 0;
  }
  .numbers__item-separator::before, .numbers__item-separator::after {
    top: calc(-0.2em + 0.5px);
  }
  .numbers__item-separator::before {
    left: 0;
  }
  .numbers__item-separator::after {
    right: 0;
    left: auto;
  }
}