.apt-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0 4px;
}

.apt-fact {
  padding: 10px 11px;
  border: 1px solid #e7ece8;
  border-radius: 10px;
  background: #f8faf8;
}

.apt-fact strong,
.apt-fact span {
  display: block;
}

.apt-fact strong {
  color: #315b43;
  font-size: 0.92rem;
}

.apt-fact span {
  margin-top: 2px;
  color: #6b756f;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.apt-fact-wide {
  grid-column: 1 / -1;
}

@media (max-width: 480px) {
  .apt-facts {
    grid-template-columns: 1fr;
  }

  .apt-fact-wide {
    grid-column: auto;
  }
}
