/* Базовые сбросы; стили Главной — в styles/home/ */
html,
body {
    margin: 0;
    background: #fff;
    color: #0c4a6e;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #0c4a6e;
}

.brand__mark {
    width: 32px;
    height: 32px;
    display: block;
    flex-shrink: 0;
}

.brand__name {
    font-family: Unbounded, Manrope, sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.03em;
    line-height: 1;
}

@media (max-width: 480px) {
    .app-topbar .brand__name {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
    }
}

.site-header {
    padding: 12px 16px;
}

.site-header__nav {
    display: flex;
    align-items: center;
}
