.jms-local {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.jms-map {
  min-height: 330px;
  background: #eef0f2;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  border: 1px solid #ddd;
}

.jms-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.jms-map__load {
  position: absolute;
  inset: 0;
  border: 0;
  background: linear-gradient(135deg,#eef0f2,#dfe2e6);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  font-weight: 800;
  color: #222;
  cursor: pointer;
}

.jms-local__text h2 {
  font-size: 2rem;
  font-weight: 900;
}

.jms-local__text p {
  line-height: 1.7;
  color: #444;
}

.jms-route-link {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  font-weight: 800;
  color: var(--color-red);
  text-decoration: none;
}

@media (max-width:900px) {
  .jms-local {
    grid-template-columns: 1fr;
  }
}
