/* ====== Блок регионов ====== */
.region-block {
  background: #0b0b0b;
  color: #fff;
  padding: 80px 0;
  font-family: "Inter", sans-serif;
}
.region-block h2,
.region-block p {
  color: #fff;
}
.region-block .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Заголовок и подзаголовок ===== */
.region-title {
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.region-title em {
  font-style: italic;
  font-weight: 500;
}

.region-subtitle {
  font-size: clamp(15px, 2vw, 26px);
  font-weight: 400;
  margin-bottom: 50px;
}

.region-subtitle span {
  color: var(--sas-yellow);
  font-weight: 600;
}

/* ===== Основной контент ===== */
.region-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* ===== Списки ===== */
.region-lists {
  display: flex;
  flex: 1;
  gap: 60px;
  flex-wrap: wrap;
}

.region-lists ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.region-lists li {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e0e0e0;
  transition: color 0.3s ease;
}

.region-lists li:hover {
  color: var(--sas-yellow);
}

.region-lists i {
  color: var(--sas-yellow);
  font-size: 14px;
}

/* ===== Картинка карты ===== */
.region-map {
  flex: 0 0 50%;
  text-align: center;
}

.region-map img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== Адаптив ===== */
@media (max-width: 951px) {
  .region-content {
    flex-direction: column;

    text-align: center;
  }

  .region-lists {
    /* justify-content: center; */
    gap: 40px;
  }

  .region-map {
    flex: 1;
    max-width: 500px;
  }
}

@media (max-width: 600px) {
  .region-lists {
    align-items: center;
  }

  .region-lists li {
    font-size: clamp(11px, 2vw, 14px);
  }

  .region-title {
    font-size: 20px;
  }
}
