.map-section {
  padding: 110px 8vw 120px;
  background: var(--paper);
}

.map-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 9vw;
  margin-bottom: 42px;
}

.map-heading h2 {
  margin-bottom: 0;
}

.map-heading > p {
  max-width: 520px;
  margin: 0 0 12px;
  color: #617064;
  font-size: 16px;
}

.map-frame {
  position: relative;
  height: 400px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.7) sepia(.08) contrast(.95);
}

.map-link {
  display: inline-flex;
  gap: 54px;
  margin-top: 18px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media (max-width: 850px) {
  .map-section {
    padding: 80px 6vw;
  }

  .map-heading {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 30px;
  }

  .map-frame {
    height: 390px;
  }
}

@media (max-width: 540px) {
  .map-frame {
    height: 360px;
  }
}
