/* 相关文章推荐样式 */
.related-articles {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 2px solid var(--glass-border);
}

.related-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 24px;
    text-align: center;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.related-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(8, 145, 178, 0.05); /* 适配命理站背景色 */
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s var(--ease-liquid);
}

.related-item:hover {
    border-color: var(--glass-highlight);
    transform: translateX(8px);
    background: rgba(8, 145, 178, 0.1);
}

.related-item-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.related-item-content {
    flex: 1;
}

.related-item-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.related-item-excerpt {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}
