.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    min-width: max-content;
}

.logo-image {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    gap: 2px;
    white-space: nowrap;
}

.logo-text span {
    display: block;
    font-weight: 700;
    font-size: 1.85rem;
    letter-spacing: -0.02em;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.logo-text span:nth-child(1) {
    background-image: linear-gradient(135deg, var(--text-heading) 0%, var(--text-secondary) 50%, var(--text-heading) 100%);
}

.logo-text span:nth-child(2) {
    background-image: var(--gradient-primary);
}

.logo-small .logo-image {
    width: 85px;
    height: 85px;
}

.logo-small .logo-text {
    flex-direction: row;
    gap: 6px;
    align-items: baseline;
}

.logo-small .logo-text span {
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    .logo-image {
        width: 70px;
        height: 70px;
    }

    .logo-text span {
        font-size: 1.2rem;
    }
}

@media (max-width: 600px) {
    .logo-small {
        align-items: center;
    }

    .logo-small .logo-image {
        width: 64px;
        height: 64px;
    }

    .logo-small .logo-text {
        display: flex;
        flex-direction: row;
        gap: 6px;
        align-items: baseline;
    }

    .logo-small .logo-text span {
        font-size: 1.25rem;
    }
}
