/* ============================================
   站点金句走马灯横幅
   ============================================ */

#siteMottoBanner {
    width: 100%;
    height: 36px;
    background: linear-gradient(135deg, #FBF8EF 0%, #F5EDD6 100%);
    border-bottom: 1px solid #E8DFC8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 900;
    transition: opacity 0.3s ease, max-height 0.3s ease;
    overflow: hidden;
}

.site-motto-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    height: 36px;
    cursor: pointer;
    user-select: none;
}

.site-motto-icon {
    color: #8B6914;
    font-size: 13px;
    opacity: 0.7;
    flex-shrink: 0;
}

.site-motto-content {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
    min-width: 0;
}

.site-motto-text {
    font-size: 13px;
    color: #5C4A00;
    font-weight: 500;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: opacity 0.4s ease;
}

.site-motto-source {
    font-size: 11px;
    color: #8B6914;
    opacity: 0.7;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity 0.4s ease;
}

.site-motto-dismiss {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 16px;
    color: #8B6914;
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.2s ease, color 0.2s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.site-motto-dismiss:hover {
    opacity: 1;
    background: rgba(139, 105, 20, 0.1);
}

/* 提示文字（无数据时的引导） */
.site-motto-inner .site-motto-hint {
    font-size: 12px;
    color: #8B6914;
    opacity: 0.6;
}

/* 响应式 */
@media (max-width: 768px) {
    .site-motto-inner {
        padding: 0 32px 0 12px;
        gap: 6px;
    }
    .site-motto-text {
        font-size: 12px;
    }
    .site-motto-source {
        display: none;
    }
}
