/**
 * Harita kartı — cards/contact_map_card/card.css
 */

.pb-contact-map__card {
  background: var(--white);
  border: 1px solid var(--primary-surface-12);
  border-radius: 14px;
  box-shadow:
    0 1px 2px var(--primary-surface-06),
    0 8px 28px var(--primary-surface-10);
  padding: clamp(1.15rem, 2.5vw, 1.55rem);
  overflow: hidden;
}
.pb-contact-map__head {
  margin-bottom: 0;
  padding-bottom: .9rem;
  border-bottom: 1px solid var(--primary-surface-10);
  flex-shrink: 0;
}
.pb-contact-map__title {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: var(--fw-semibold);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
}
.pb-contact-map__embed {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  margin-top: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--primary-surface-12);
  background: var(--primary-surface-04);
}
.pb-contact-map__embed iframe {
  display: block;
  flex: 1;
  width: 100%;
  min-height: 320px;
  height: 100%;
  margin-top: 0;
  border: 0;
  border-radius: 0;
}
.pb-block--contact-map-card {
  padding-top: 0;
}
.pb-block--contact-map-card .container {
  padding-left: 0;
  padding-right: 0;
}
.pb-block--contact-map-card .pb-contact-map__card {
  max-width: min(420px, 100%);
  margin-inline: auto;
}
