/* 子比主题 - 自动内链 相关文章样式 */
.zib-related-links {
    margin-top: 30px;
}

.zib-related-links a:hover {
    opacity: 0.9;
}

/* 自动内链独特样式 */
.zib-auto-link {
    color: var(--theme-color) !important;
    text-decoration: none;
    font-weight: 600;
    background: linear-gradient(to bottom, transparent 60%, rgba(255, 107, 0, 0.15) 60%);
    padding: 2px 4px;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.zib-auto-link:hover {
    color: var(--focus-color) !important;
    background: linear-gradient(to bottom, transparent 60%, rgba(255, 107, 0, 0.3) 60%);
}

/* 夜间模式适配 */
body.dark-theme .zib-auto-link {
    background: linear-gradient(to bottom, transparent 60%, rgba(255, 107, 0, 0.2) 60%);
}

body.dark-theme .zib-auto-link:hover {
    background: linear-gradient(to bottom, transparent 60%, rgba(255, 107, 0, 0.4) 60%);
}
