
/* ===== Kayan Logo Fix + Mobile Centering ===== */

/* Prevent logo cropping and enlarge slightly */
.sphinx_header_logo,
.sphinx_header_logo div {
    height: 120px !important;
    overflow: visible !important;
}

/* Resize logo image */
.sphinx_header_logo img {
    height: 110px !important;
    max-height: none !important;
    width: auto !important;
}

/* Center logo on mobile */
@media (max-width: 768px){

    .sphinx_header_logo{
        margin-left: auto !important;
        margin-right: auto !important;
        display: flex !important;
        justify-content: center !important;
        height: 90px !important;
    }

    .sphinx_header_logo img{
        height: 80px !important;
        margin: auto !important;
    }

}
