.map-wrapper {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

/* Google My Maps iframe cropped to hide header */
.map-wrapper iframe {
  position: absolute;
  top: -80px; /* hide Google My Maps header */
  left: 0;
  width: 100%;
  height: 600px; /* larger height to compensate crop */
  border: 0;
}

/* Info box top-right */
.map-info-box {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 12px;
  border-radius: 6px;
  font-family: sans-serif;
  font-size: 13px;
  box-shadow: 0 0 6px rgba(0,0,0,0.1);
  z-index: 10;
  max-width: 180px;
  line-height: 1.3;
  text-align: center;
}

.map-info-box p {
  margin: 0 0 4px;
  font-weight: 500;
}

.map-info-box small {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  color: #444;
}

.map-info-box a {
  display: inline-block;
  padding: 4px 10px;
  background-color: #007BFF;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  font-size: 12px;
}

.map-info-box a:hover {
  background-color: #0056b3;
}
