.about__item1 {
  margin-bottom: 2rem;
}

.about__item1 > * + * {
  margin-top: 1rem;
}

.about__title {
  font-size: var(--size-2xl);
  line-height: 1;
}

.about__description1 {
  font-family: var(--font-secondary);
  font-size: var(--size-sm);
}

.about__item2 > * + * {
  margin-top: 2rem;
}

.about__label {
  color: var(--color-slate400-text);
  font-family: var(--font-secondary);
  font-size: var(--size-xs);
  font-weight: 400;
}

.about__stat {
  font-size: var(--size-3xl);
  color: var(--color-slate200-light);
  font-weight: 700;
  line-height: 1;
}

.about__stat-span {
  color: var(--color-slate500-muted);
}

/* media queries */

/* xs */
@media (min-width: 475px) {
  .about__title {
    font-size: var(--size-3xl);
  }

  .about__description1 {
    font-size: var(--size-base);
  }

  .about__label {
    font-size: var(--size-sm);
  }

  .about__stat {
    font-size: var(--size-4xl);
  }
}

/* sm */
@media (min-width: 640px) {
}

/* md */
@media (min-width: 768px) {
}

/* lg */
@media (min-width: 1024px) {
  .about__description1 {
    max-width: 75ch;
  }
}

/* xl */
@media (min-width: 1280px) {
  .about__item1 {
    margin-bottom: 0;
  }

  .about__container {
    display: flex;
    justify-content: space-between;
  }

  .about__label,
  .about__stat {
    text-align: end;
  }
}

/* 2xl */
@media (min-width: 1536px) {
  .about__title {
    font-size: var(--size-4xl);
  }

  .about__description1 {
    font-size: var(--size-lg);
  }

  .about__label {
    font-size: var(--size-base);
  }

  .about__stat {
    font-size: var(--size-5xl);
  }
}
