.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: inherit;
}

.site-brand__logo {
    flex-shrink: 0;
    object-fit: contain;
    display: block;
}

.site-brand__title {
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.site-brand__title.logo {
    font-size: 2.75rem;
}

.site-brand__part--dark,
.logo-part.logo-part--dark {
    color: #111;
}

.site-brand__part--accent,
.logo-part.logo-part--accent {
    color: orange;
}

/* Auth / form pages (base.html) */
.hh-site-brand-wrap {
    display: flex;
    justify-content: center;
    margin: 0 0 1.5rem;
}

.hh-site-brand-wrap .site-brand {
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
}

.hh-site-brand-wrap .site-brand__title {
    font-size: 2.1rem;
}

.hh-site-brand-wrap .site-brand__logo {
    width: 120px;
    height: 120px;
    max-width: 120px;
    max-height: 120px;
}

/* Auth login/signup: slightly tighter but still readable */
body[data-hh-skeleton="auth"] .hh-site-brand-wrap {
    margin-bottom: 1rem;
}

body[data-hh-skeleton="auth"] .hh-site-brand-wrap .site-brand__logo {
    width: 108px;
    height: 108px;
    max-width: 108px;
    max-height: 108px;
}

body[data-hh-skeleton="auth"] .hh-site-brand-wrap .site-brand__title {
    font-size: 1.95rem;
}

@media (max-width: 600px) {
    .hh-site-brand-wrap {
        margin-bottom: 1rem;
    }

    .hh-site-brand-wrap .site-brand__title {
        font-size: 1.75rem;
    }

    .hh-site-brand-wrap .site-brand__logo {
        width: 96px;
        height: 96px;
        max-width: 96px;
        max-height: 96px;
    }

    body[data-hh-skeleton="auth"] .hh-site-brand-wrap .site-brand__logo {
        width: 88px;
        height: 88px;
        max-width: 88px;
        max-height: 88px;
    }

    body[data-hh-skeleton="auth"] .hh-site-brand-wrap .site-brand__title {
        font-size: 1.55rem;
    }

    .hh-site-brand-wrap .logo-part--dark,
    .hh-site-brand-wrap .logo-part--accent,
    .hh-site-brand-wrap .site-brand__part--dark,
    .hh-site-brand-wrap .site-brand__part--accent {
        font-size: inherit;
    }
}
