/* MOBILE FLIGHT CARDS - SAFE VERSION (investigation in progress) */

/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Mobile only - just hide matrix for now, cards use default template styling */
@media (max-width: 768px) {

    /* Hide matrix on mobile */
    .flight-matrix {
        display: none !important;
    }

    /* Apply Inter font to flight cards only */
    .js-accordion {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    }
}