/* Сетка регионов */
.reg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Карточка региона */
.reg-card {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
}

/* Флаг / регион */
.reg-flag {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.reg-flag::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blue);
}

/* Заголовок карточки */
.reg-h {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

/* Текст карточки */
.reg-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
.reg-body a {
  color: var(--blue);
}
.reg-body a:hover {
  text-decoration: underline;
}

/* Адаптивность */
@media (max-width: 700px) {
  .reg-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .reg-grid {
    grid-template-columns: 1fr;
  }
}