/* Separate trading-house and production locations. */
.footer-map-card__heading {
  display: grid;
  gap: 6px;
}
.footer-map-card__heading h3 { margin-bottom: 0; }
.footer-map-card__heading p { margin: 0; line-height: 1.55; }
.footer-contacts { min-width: 0; }
.footer-production-address {
  display: grid;
  gap: 5px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: #d7ddd7;
}
.footer-production-address strong { color: #fff; font-size: 15px; }
.footer-production-address span { line-height: 1.55; }
.contact-locations-section { border-top: 1px solid var(--line); }
.contact-maps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 36px);
  align-items: stretch;
}
.contact-map-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.contact-map-card__head {
  display: grid;
  gap: 8px;
  padding: 24px 24px 20px;
}
.contact-map-card__head h3,
.contact-map-card__head p { margin: 0; }
.contact-map-card__head h3 {
  color: var(--green-dark);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.25;
}
.contact-map-card .map-panel {
  min-height: 360px;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}
.contact-map-card .map-panel iframe { height: 400px; }
@media (max-width: 900px) {
  .contact-maps-grid { grid-template-columns: 1fr; }
  .contact-map-card .map-panel,
  .contact-map-card .map-panel iframe { min-height: 330px; height: 330px; }
}
@media (max-width: 540px) {
  .contact-map-card__head { padding: 20px 18px 17px; }
  .contact-map-card .map-panel,
  .contact-map-card .map-panel iframe { min-height: 300px; height: 300px; }
  .contact-map-card .map-fallback {
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    white-space: normal;
    text-align: center;
  }
}
