.location-highlights {
  background: #e3e3e3;
  padding: 48px 0 0;
}

.location-wrap {
  max-width: 1400px;
  margin: 0 auto;
}

.location-title {
  margin: 0;
  text-align: center;
  color: #101010;
  font: italic 500 52px/1.12 "Times New Roman", Georgia, serif;
}

.location-title::after {
  content: "";
  display: block;
  width: 260px;
  max-width: 88%;
  margin: 10px auto 0;
  border-bottom: 2px solid #1f1f1f;
}

.location-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.location-map {
  margin: 0;
  min-height: 700px;
  background: #ececec;
}

.location-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.location-panel {
  background: #03501f;
  color: #ffffff;
  padding: 22px 24px 30px;
}

.location-panel h2 {
  margin: 0;
  font: italic 500 50px/1.1 "Times New Roman", Georgia, serif;
}

.location-panel h2::after {
  content: "";
  display: block;
  margin-top: 12px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.72);
}

.location-panel ul {
  margin: 20px 0 0;
  padding-left: 18px;
  font: 400 14px/1.8 "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

@media (max-width: 1024px) {
  .location-title,
  .location-panel h2 {
    font-size: 42px;
  }

  .location-map {
    min-height: 560px;
  }
}

@media (max-width: 820px) {
  .location-highlights {
    padding-top: 36px;
  }

  .location-title,
  .location-panel h2 {
    font-size: 34px;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-map {
    min-height: 360px;
  }
}