.po-kanews-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.po-kanews-item {
    border-right: 1px solid #e5e5e5;
    padding-right: 20px;
}
.po-kanews-item:last-child {
    border-right: 0;
    padding-right: 0;
}
.po-kanews-item .po-thumb {
    display: block;
    margin-bottom: 10px;
}
.po-kanews-item .po-thumb img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}
.po-kanews-item .po-cat {
    color: #d7050f;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}
.po-kanews-item .po-title {
    font-size: 16px;
    line-height: 1.3;
    margin: 0 0 10px 0;
    font-weight: 700;
}
.po-kanews-item .po-title a {
    color: #111;
    text-decoration: none;
}
.po-kanews-item .po-title a:hover {
    color: #d7050f;
}
.po-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #888;
}
.po-stats i {
    margin-right: 3px;
}
.po-comm {
    margin-right: 10px;
}

@media(max-width: 1200px) {
   .po-kanews-grid { grid-template-columns: repeat(3, 1fr); }
}
@media(max-width: 768px) {
   .po-kanews-grid { grid-template-columns: repeat(2, 1fr); }
   .po-kanews-item { border-right: 0; padding-right: 0; }
}
@media(max-width: 480px) {
   .po-kanews-grid { grid-template-columns: 1fr; }
}
