/* Custom CSS for mobile layout adjustments */

/* Mobile layout: Move plant photo below the content on narrow screens */
@media screen and (max-width: 768px) {
    .is-flex-direction-row-reverse-mobile {
        flex-direction: column-reverse !important;
    }
    
    .is-full-mobile {
        flex: none !important;
        width: 100% !important;
    }
    
    /* Ensure proper spacing between elements on mobile */
    .plant-column {
        margin-bottom: 1rem;
    }
    
    /* Adjust photo size for mobile */
    .plant-photo {
        width: 100%;
        height: 250px;
        margin-bottom: 1rem;
    }
}