/*
 * Responsive Overrides
 * Ensure no horizontal scroll and proper scaling.
 */

@media (max-width: 1023px) {
    /* Tablet specific overrides */
}

@media (max-width: 767px) {
    /* Mobile specific overrides */
    
    html, body {
        overflow-x: hidden;
    }

    .home-hero {
        padding: 40px 0;
    }

    .home-hero__actions {
        flex-direction: column;
    }

    .home-hero__button {
        width: 100%;
    }
}
