.landing-stats {
  height: 132px;
  padding: 24px 0 0;
  background: #4a6b1f;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.08);
}

.landing-stats__inner {
  width: min(1303px, calc(100% - 48px));
  margin: 0 auto;
}

.landing-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.landing-stats__item {
  min-height: 83px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  border-right: 1.5px solid rgba(255, 255, 255, 0.2);
}

.landing-stats__item:last-child {
  border-right: 0;
}

.landing-stats__icon {
  width: 100%;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.landing-stats__icon picture {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.landing-stats__icon img {
  width: 100%;
  height: 100%;
  max-height: 32px;
  max-width: min(132px, 100%);
  object-fit: contain;
}

.landing-stats__title {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
}

.landing-stats__subtitle {
  margin: 0;
  color: #d8dcd2;
  font-family: var(--font-body);
  font-size: 13.33px;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .landing-stats {
    height: auto;
  }

  .landing-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-stats__item {
    min-height: 96px;
    padding: 12px 20px;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.2);
  }

  .landing-stats__item:nth-child(2n) {
    border-right: 0;
  }

  .landing-stats__item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 540px) {
  .landing-stats__grid {
    grid-template-columns: 1fr;
  }

  .landing-stats__item {
    border-right: 0;
  }

  .landing-stats__item:not(:last-child) {
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.2);
  }

  .landing-stats__item:last-child {
    border-bottom: 0;
  }
}
