.btn-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  justify-items: center;
}

.btn-grid a {
  display: inline-block;
  text-align: center;
  color: #fff;
  background: #37a5e4;
  padding: 10px 15px;
  font-size: 20px;
  border-radius: 6px;
  min-width: 200px;  /* фиксированная ширина для стабильности */
  min-height: 48px;  /* фиксированная высота для предотвращения CLS */
  line-height: 28px; /* выравнивание текста */
  text-decoration: none;
  transition: background 0.2s ease-in-out;
}

.btn-grid a:hover {
  background: #2b8dc6;
}
