.store-route {
  margin-bottom: 82px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, .65fr);
  min-height: 460px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.store-route__map {
  min-height: 460px;
  background: #deddd7;
}

.store-route__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
}

.store-route__info {
  padding: 46px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.store-route__info > span {
  font-size: 11px;
  letter-spacing: .1em;
  font-weight: 800;
  color: var(--gold-dark);
}

.store-route__info h2 {
  margin: 10px 0 27px;
  font: 800 clamp(37px, 3.7vw, 54px)/.95 Arial, "Helvetica Neue", sans-serif;
  letter-spacing: -.04em;
}

.store-route__address {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.store-route__address svg {
  width: 25px;
  height: 25px;
  flex: none;
  fill: none;
  stroke: var(--gold-dark);
  stroke-width: 1.6;
}

.store-route__address b,
.store-route__address small {
  display: block;
}

.store-route__address b {
  font-size: 17px;
}

.store-route__address small {
  margin-top: 3px;
  color: var(--grey);
}

.store-route__info p {
  margin: 20px 0;
  color: #66675f;
  line-height: 1.55;
}

.store-route__actions {
  display: grid;
  gap: 9px;
}

.store-route__actions a {
  min-height: 48px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  border-radius: 9px;
}

.route-primary {
  gap: 9px;
  background: var(--gold);
  color: #241d0c;
}

.route-primary svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.route-secondary {
  border: 1px solid var(--ink);
  background: #fff;
}

.store-route__hint {
  margin-top: 12px;
  color: var(--grey);
  font-size: 11px;
  text-align: center;
}

@media (max-width: 900px) {
  .store-route {
    grid-template-columns: 1fr minmax(310px, .75fr);
  }

  .store-route__info {
    padding: 38px 30px;
  }
}

@media (max-width: 700px) {
  .store-route {
    width: calc(100% - 32px);
    margin-bottom: 37px;
    display: flex;
    flex-direction: column;
    min-height: 0;
    border-radius: 14px;
  }

  .store-route__map,
  .store-route__map iframe {
    min-height: 330px;
  }

  .store-route__info {
    padding: 28px 24px 30px;
  }

  .store-route__info h2 {
    margin-bottom: 22px;
    font-size: 34px;
  }

  .store-route__info p {
    font-size: 14px;
  }

  .store-route__actions a {
    min-height: 50px;
  }

  .store-route__hint {
    text-align: left;
  }
}
