/* ============================================
   Wincraft – Location page (2 cards centered, both map + address)
   ============================================ */

/* Location hero: left column contains headline + address + maps; right = form */
.location-hero-content {
  display: flex;
  flex-direction: column;
}

.location-maps-wrap {
  margin-top: 1.5rem;
  width: 100%;
}

.location-maps-grid {
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .location-maps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

/* On desktop, hero banner allows left content to grow and wrap maps below headline */
@media (min-width: 1024px) {
  .products-hero-wrap .products-hero-banner {
    align-items: flex-start;
  }
  .location-hero-content {
    flex: 1;
    min-width: 0;
  }
}

/* Map box – reduced height */
.location-map-card .card-image-map {
  aspect-ratio: 2/1;
  min-height: 160px;
  max-height: 220px;
  overflow: hidden;
  background-color: var(--gray-100);
}

.location-map-card .card-image-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
