/* CRITICAL MOBILE FIXES - FINAL OVERRIDE - DO NOT REMOVE */
@media (max-width: 768px) {
    /* Force Day Cards to Single Column on Mobile */
    .days-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        width: 100% !important;
    }
    
    .day-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    /* Force Hero Text to Fit on Mobile */
    .hero {
        min-height: 100vh !important;
        height: auto !important;
        padding: 2rem 1rem !important;
    }
    
    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hero-title {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        margin-bottom: 0.75rem !important;
    }
    
    /* Force Page Hero (Other Pages) to Display Properly on Mobile */
    .page-hero {
        height: 300px !important;
        min-height: 300px !important;
        padding: 2rem 1rem !important;
    }
    
    .page-hero-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 1rem !important;
    }
    
    .page-hero-title {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        margin-bottom: 0.75rem !important;
    }
    
    .page-hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.85rem !important;
    }
    
    .page-hero {
        height: 250px !important;
        min-height: 250px !important;
        padding: 1.5rem 0.75rem !important;
    }
    
    .page-hero-title {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
    }
    
    .page-hero-subtitle {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
    }
    
    .days-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}
