/* KZOT Portal — Custom styles */
body {
    font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
}
h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Inter', sans-serif;
}

/* Line clamp */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Chat panel animation */
#chat-panel {
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Leaflet map fixes */
#calc-map {
    z-index: 10;
}

/* Details/summary arrow */
details summary::-webkit-details-marker { display: none; }
details summary::marker { display: none; }

/* Mobile nav */
@media (max-width: 767px) {
    #chat-panel { width: calc(100vw - 2rem) !important; right: 1rem; }
}
