.location {
  background-color: var(--color1);
  width: 100%;
  padding: 40px 0 80px;
}

.location-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 40px;
}

.location-text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  text-align: right;
}

.location-heading {
  font-family: "PloniMLv2AAA-Regular", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--color3);
  margin: 0;
  line-height: 1.1;
}

.location-lead {
  font-family: "PloniMLv2AAA-Regular", sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--text-dark);
  margin: 0;
}

.location-address {
  font-family: "PloniMLv2AAA-Regular", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--color3);
  margin: 0;
  line-height: 1.3;
}

.location-note {
  font-family: "PloniMaccabiMLv2AAA-DemiBold", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.location-map {
  flex: 1 1 0;
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(30, 60, 149, 0.12);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
}

.location-route {
  display: flex;
  justify-content: center;
}

.location-route svg {
  width: min(612px, 90%);
  height: auto;
}

@media (max-width: 768px) {
  .location {
    padding: 24px 0 40px;
  }

  .location-inner {
    padding: 0 16px;
    gap: 20px;
  }

  .location-row {
    flex-direction: column;
    gap: 24px;
  }

  .location-heading {
    font-size: 28px;
  }

  .location-lead,
  .location-address {
    font-size: 20px;
  }

  .location-map,
  .location-map iframe {
    min-height: 225px;
  }
}
