.dc-brand-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    color: #0061ff;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 10px;
    padding: 4px 6px;
    transition: background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.dc-brand-home:hover {
    background: rgba(0, 97, 255, .08);
}

.dc-brand-home:active {
    transform: scale(.98);
}

.dc-brand-home:focus-visible {
    outline: 3px solid rgba(0, 97, 255, .35);
    outline-offset: 3px;
}

.dc-brand-home__logo {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 97, 255, .18);
}

.dc-brand-home__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.12;
}

.dc-brand-home__main {
    color: #0061ff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .01em;
}

.dc-brand-home__sub {
    color: #64748b;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
}

.dc-brand-home--inverse .dc-brand-home__main,
.dc-brand-home--inverse .dc-brand-home__sub {
    color: #fff;
}

.dc-brand-home--inverse:hover {
    background: rgba(255, 255, 255, .14);
}

.dc-brand-home--inverse:focus-visible {
    outline-color: rgba(255, 255, 255, .8);
}

.brand.dc-brand-home {
    padding: 2px 4px;
}

.dc-brand-home--floating {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 3000;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 4px 18px rgba(15, 23, 42, .12);
}

@media (max-width: 480px) {
    .dc-brand-home {
        gap: 6px;
        padding: 3px 4px;
    }

    .dc-brand-home__logo {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .dc-brand-home__main { font-size: 12px; }
    .dc-brand-home__sub { font-size: 8px; }
}
