.proof-bar {
  border-top: 1px solid var(--border-bone-08);
  background: #111111;
  color: var(--bone);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  padding: 28px 24px;
  border-right: 1px solid var(--border-bone-08);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-number {
  margin-bottom: 5px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 27px;
  font-weight: 700;
}

.proof-label {
  color: var(--steel-light);
  font-size: 13px;
}

@media (max-width: 820px) {
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border-bone-08);
  }
}

@media (max-width: 620px) {
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-item {
    border-right: 0;
    border-bottom: 1px solid var(--border-bone-08);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }
}
