/* Hide the school legend on mobile — it overlaps the map */
@media (max-width: 768px) {
    .jg-school-legend {
        display: none !important;
    }
}

/* Fix for the Cheltenham Times theme overriding position:absolute on images,
   which causes Leaflet tiles to stack as block elements (256x7168) instead
   of being placed via their CSS transforms across the full map area */
#cht-school-map img.leaflet-tile {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    max-width: none !important;
    max-height: none !important;
    box-sizing: content-box;
}
