/* CMS map section — reusable Google Maps / iframe embed */

.cms-map-section {
  width: 100%;
}

.cms-map-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.pdp-main .cms-map-inner {
  max-width: none;
  padding: 0;
}

.cms-map-title {
  font-family: var(--font-serif, Georgia, serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--text-primary, #1a1a18);
  margin: 0 0 16px;
  line-height: 1.25;
}

.cms-map-frame {
  border: 1px solid var(--border, #e4e2da);
  border-radius: var(--radius, 12px);
  overflow: hidden;
  background: var(--bg-secondary, #f2f0ea);
}

.cms-map-frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.cms-map-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 10px 16px;
  font-size: 12px;
  color: var(--text-muted, #9a9a90);
  background: var(--bg-card, #fff);
  border-top: 1px solid var(--border, #e4e2da);
}

.cms-map-caption a {
  color: var(--purple, #3d1f8c);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}

.cms-map-caption a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .cms-map-inner {
    padding: 0 16px;
  }

  .cms-map-title {
    font-size: 24px;
  }

  .cms-map-frame iframe {
    height: 300px;
  }
}
