.sky-stats-wrap {
  width: 100%;
  overflow: hidden;
}

.sky-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.sky-stats-item {
  min-width: 0;
  border-right: 1px solid #d8d8d2;
  border-bottom: 1px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.sky-stats-item:last-child {
  border-right: none;
}

.sky-stats-number {
  margin: 0;
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  color: #943b24;
}

.sky-stats-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #667170;
  word-break: break-word;
}

@media (max-width: 1024px) {
  .sky-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sky-stats-item:nth-child(2n) {
    border-right: none;
  }

  .sky-stats-item {
    border-bottom: 1px solid #d8d8d2;
  }

  .sky-stats-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (max-width: 767px) {
  .sky-stats-grid {
    grid-template-columns: 1fr;
  }

  .sky-stats-item {
    border-right: none;
    border-bottom: 1px solid #d8d8d2;
  }

  .sky-stats-item:last-child {
    border-bottom: none;
  }
}
