.location {
  column-gap: 12vw;
  row-gap: 58px;
}

.location-map {
  position: relative;
  grid-column: 1 / -1;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #d8d1c5;
}

.location-map iframe {
  width: 100%;
  height: 440px;
  display: block;
  border: 0;
}

.map-directions {
  position: absolute;
  left: 22px;
  bottom: 22px;
  min-width: min(330px, calc(100% - 44px));
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(25, 23, 19, 0.9);
  color: var(--white);
  box-shadow: 0 12px 34px rgba(25, 23, 19, 0.22);
  backdrop-filter: blur(10px);
}

.map-directions span {
  font-family: var(--serif);
  font-size: 16px;
}

.map-directions strong {
  color: var(--gold-light);
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .location-map {
    grid-column: 1;
    min-height: 360px;
  }

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

  .map-directions {
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-width: 0;
  }
}
