/* ==========================================================================
   SITE BRANDING
   ========================================================================== */

.site-branding {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}


/* ==========================================================================
   LOGO
   ========================================================================== */

.logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}


/* Logo Text */

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
}


/* Logo Image */

.logo-image {
    display: flex;
    align-items: center;
}

.logo-image .custom-logo-link {
    display: flex;
    align-items: center;
}

.logo-image .custom-logo {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 40px;
}

@media (max-width: 768px) {

    .logo-text {
        font-size: 1.3rem;
    }

    .logo-image .custom-logo {
        max-height: 32px;
    }

}