/* ===== 文章详情页专用样式 ===== */

/* 相关推荐侧边栏间距 */
.geo-side--mt {
    margin-top: 14px;
}

/* AI 新闻卡片（文章内企业信息卡） */
.ai-news-card {
    margin: 0 0 22px;
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-sizing: border-box;
}

.ai-news-card__avatar {
    flex: 0 0 120px;
    width: 120px;
    height: 90px;
    border-radius: 6px;
    overflow: hidden;
    background: #f3f4f6;
}

.ai-news-card__avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}

.ai-news-card__body {
    flex: 1;
    min-width: 0;
}

.ai-news-card__name {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #2563eb;
}

.ai-news-card__phone {
    margin-top: 10px;
    text-align: right;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    color: #f97316;
}

/* 上一篇 / 下一篇导航 */
.article-adjacent {
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.article-adjacent__item {
    display: block;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    color: #334155;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.article-adjacent__item:hover {
    border-color: var(--main-green);
    color: var(--main-green);
    box-shadow: 0 2px 8px rgba(14, 165, 122, 0.10);
}

/* 响应式 */
@media (max-width: 768px) {
    .ai-news-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ai-news-card__phone {
        text-align: center;
    }

    .article-adjacent {
        grid-template-columns: 1fr;
    }
}
