/**
 * Logo 和 品牌相关的样式
 */

.site-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.header-top-bar .site-brand {
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
}

.header-top-bar .website-name {
    margin-left: 8px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .site-logo {
        width: 20px;
        height: 20px;
    }
    
    .header-top-bar .website-name {
        font-size: 14px;
    }
} 