/* =========================
   Logo
   ========================= */

.brand {
    display: flex;
    align-items: center;
    gap: 16px;

    color: inherit;
    text-decoration: none;
}

.brand-logo {
    width: 72px;
    height: 72px;

    display: block;
    flex-shrink: 0;

    border-radius: 50%;
    object-fit: cover;
}

.brand-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.brand-name {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.4px;
}

.brand-tagline {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;

    opacity: 0.55;
    white-space: nowrap;
}

.brand-name .brand-dev {
    color: #2563eb;
}

.brand-bracket {
    color: #22c55e;
}

.brand-dev {
    color: #2563eb;
}

@media (max-width: 600px) {
    .brand-tagline {
        display: none;
    }
}