/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/* ============================================
   WP Google Maps – Marker-Icon Skalierung
   Passt die Größe aller Marker-Bilder auf der Karte an.
   Standardgröße: 32x32 Pixel (Retina: 64x64 skalieren).
   ============================================ */
/* Alle Karten – Leaflet-Marker 32x32 */
img.leaflet-marker-icon{
  width:32px !important;
  height:32px !important;
  max-width:32px !important;
  max-height:32px !important;
}

/* WP Go Maps – Marker-Liste: Icon-Größe */
.wpgmza_marker_list_class img{
  width:24px !important;
  height:24px !important;
  max-width:24px !important;
  max-height:24px !important;
  object-fit:contain;
}

/* Fallback, falls Marker als Hintergrundbild gesetzt sind */
.wpgmza_marker{
  width:32px !important;
  height:32px !important;
  background-size:32px 32px !important;
  background-repeat:no-repeat !important;
}


