.table-prices {
  display: grid;
  justify-content: center;
}

.table-prices button {
  margin-top: 40px;
  justify-self: center;
}

.table-prices__tables {
  display: grid;
  grid-template-columns: repeat(var(--table-columns, 4), minmax(0, 1fr));
  gap: 28px;
}

@media (max-width: 1280px) {
  .table-prices__tables {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .table-prices__tables {
    grid-template-columns: 1fr;
  }
  .table-prices button {
    margin-top: 20px;
    justify-self: center;
  }
}
