/* ===== 新闻详情：企业信息卡片 ===== */
.geo-article-body .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;
}

.geo-article-body .news-card-img{
    flex:0 0 120px;
    width:120px;
    height:90px;
    border-radius:6px;
    overflow:hidden;
    background:#f3f4f6;
}

.geo-article-body .news-card img {
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    border:0;
}

.news-card__body {
    flex: 1;
    min-width: 0;
}

.news-card__name {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #2563eb;
}

.news-card__desc {
    font-size: 14px;
    line-height: 1.85;
    color: #4b5563;
}

.news-card__phone {
    margin-top: 10px;
    text-align: right;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    color: #f97316;
}

/* ===== 新闻详情：上一篇/下一篇 ===== */
.news-adjacent {
    margin-top:22px;
    padding-top:16px;
    border-top:1px solid #e5e7eb;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
}
.news-adjacent a {
    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: border-color 0.2s, color 0.2s;
}
.news-adjacent a:hover {
    border-color: #1a6d3f;
    color: #1a6d3f;
}
.news-adjacent span {
    display:block;
    padding:10px 12px;
    border:1px solid #e5e7eb;
    border-radius:8px;
    background:#fff;
    color:#94a3b8;
    text-decoration:none;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.geo-side {
    margin-top:14px;
}

/* ===== 响应式：移动端信息卡片纵向排列、上下篇单列 ===== */
@media (max-width: 768px) {
    .geo-article-body .news-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .news-card__phone {
        text-align: center;
    }

    .news-adjacent {
        grid-template-columns: 1fr;
    }
}
