.city-hero {
  background: #f7fbfc;
  padding: 42px 16px 30px;
  font-family: "Manrope", Arial, sans-serif;
}

.city-hero__wrap {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 24px;
  align-items: stretch;
}

.city-hero__content,
.city-hero__panel {
  background: #ffffff;
  border: 1px solid #e3eef1;
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(16, 24, 40, .07);
}

.city-hero__content {
  padding: 30px;
}

.city-hero__eyebrow {
  margin: 0 0 10px;
  color: #0a9caf;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.city-hero h1 {
  margin: 0 0 16px;
  color: #101828;
  font-size: 42px;
  line-height: 1.08;
}

.city-hero__lead {
  max-width: 760px;
  margin: 0;
  color: #475467;
  font-size: 18px;
  line-height: 1.6;
}

.city-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.city-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  background: #0ab7c9;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.city-hero__button--secondary {
  background: #101828;
}

.city-hero__panel {
  padding: 24px;
}

.city-hero__facts {
  display: grid;
  gap: 14px;
}

.city-hero__fact {
  padding-bottom: 14px;
  border-bottom: 1px solid #edf3f5;
}

.city-hero__fact:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.city-hero__fact span {
  display: block;
  color: #667085;
  font-size: 13px;
}

.city-hero__fact strong {
  display: block;
  margin-top: 4px;
  color: #101828;
  font-size: 18px;
}

@media (max-width: 900px) {
  .city-hero__wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .city-hero {
    padding: 24px 12px 20px;
  }

  .city-hero__content,
  .city-hero__panel {
    padding: 20px;
  }

  .city-hero h1 {
    font-size: 30px;
  }

  .city-hero__lead {
    font-size: 16px;
  }

  .city-hero__button {
    width: 100%;
  }
}
