#banner {
    height: auto;
    color: #fff;
    position: relative;
    overflow: hidden;
    background-color: var(--primary-color);
}
#banner > * {
    position: static;
    height: auto;
    width: 100%;
}

#banner > img {
    object-fit: cover;
    /* Always show the left side (where logo is) */
    object-position: left;
}

.banner-img-mobile {
    display: none;
}

/* For very small screens, ensure logo visibility */
@media (max-width: 576px) {
    .banner-img-desktop {
        display: none;
    }
    .banner-img-mobile {
        display: block;
        object-fit: fill !important;
        width: 100%;
        height: 100%;
    }
}
/*
#banner > .d-flex {
    padding: 1.5rem 3rem;
    flex-direction: column;
    gap: 0.5rem;
}
*/
#banner .banner-title {
    white-space: nowrap;
}

@media (min-width: 768px) {
    /*#banner {
        height: 190px;
    }*/
}

@media (min-width: 992px) {
    /*#banner {
        height: 130px;
    }*/
    /*
    #banner > .d-flex {
        padding: 1.5rem 6rem;
    }
    */
}