.map-section {
  width: min(1180px, calc(100% - 40px));
  margin: clamp(90px, 10vw, 150px) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  scroll-margin-top: 90px;
}

.map-copy h2 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5rem);
}

.map-description {
  max-width: 34rem;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.map-address {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}

.map-address strong {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
}

.route-link {
  display: inline-block;
  margin-top: 28px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-link:hover,
.route-link:focus-visible {
  color: var(--gold);
}

.map-frame-wrap {
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-frame {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
}

@media (max-width: 820px) {
  .map-section {
    grid-template-columns: 1fr;
  }

  .map-copy {
    text-align: center;
  }

  .map-description {
    margin-left: auto;
    margin-right: auto;
  }

  .map-address {
    align-items: center;
  }
}

@media (max-width: 600px) {
  .map-section {
    width: min(100% - 28px, 1180px);
    margin-top: 72px;
  }

  .map-frame-wrap,
  .map-frame {
    min-height: 380px;
    height: 380px;
  }
}
