/* Layout Wrapper */
.guardian-partners-wrapper {
    display: flex;
    flex-wrap: wrap;
    /* Allow wrapping on mobile */
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    font-family: 'Arial', sans-serif;
    align-items: flex-start;
    /* Align to top */
}

/* Sidebar (Left) */
/* Map Instance (Added Fix) */
#guardian-leaflet-map {
    width: 100%;
    height: 100%;
    /* Changed to 100% to fill the flex container */
    background: #eee;
    z-index: 1;
    /* Ensure map stays below fixed elements if any */
}

/* Leaflet/Map Specifics */
.leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.leaflet-popup-content {
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
}

/* Remove default sidebar/input styling as we use Tailwind now */