.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;
}
.news-card-img{
    flex:0 0 120px;
    width:120px;
    height:90px;
    border-radius:6px;
    overflow:hidden;
    background:#f3f4f6;
}
.news-card-img 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;
}
.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-panel .geo-side{
    margin-top:14px;
}