/*
Theme Name: The Hustle - Karen Hanna
Theme URI: https://karenhanna.co.nz/
Author: The Hustle, Ltd.
Author URI: https://thehustle.nz/
Description: Custom theme for karenhanna.co.nz, built with Tailwind CSS and Google Fonts.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-background, custom-logo, custom-menu, featured-images, block-styles
Text Domain: thehustle-karenhanna
*/

.home-banner-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 132px;
    height: 100vh;
    background-image: url('assets/images/checkered.jpg');
    background-size: cover;
    background-position: center;
}

/* --- HIDE ON MOBILE (Screens smaller than 768px) --- */
@media (max-width: 768px) {
    .home-banner-container::before {
        display: none;
    }
}