/* 友情链接样式 - 与Minimal模板风格一致 */
.friendly-links {
    margin: 1px 0;
    padding: 0;
}

.friendly-links .section-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.friendly-links .links-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.friendly-links .links-list a {
    display: block;
    margin-right: 20px;
    margin-bottom: 10px;
    color: #666;
    transition: color 0.2s ease;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
}

.friendly-links .links-list a:hover {
    color: #333;
}

/* 移除了链接前的点 */

/* 响应式设计 */
@media (max-width: 768px) {
    .friendly-links .links-list a {
        font-size: 13px;
        margin-right: 15px;
        margin-bottom: 8px;
    }
}