/* Compact popular news block */
.home-side-card .popular-news-list {
    display: grid;
    gap: 0;
    margin-top: 10px;
    overflow: hidden;
}

.home-side-card .popular-news-row {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 10px 0;
    border-bottom: 1px solid #edf0ef;
    color: #111;
}

.home-side-card .popular-news-thumb {
    display: block;
    width: 82px;
    height: 58px;
    overflow: hidden;
    border-radius: 4px;
    background: linear-gradient(135deg, #d7e7dc, #f3f5f4);
}

.home-side-card .popular-news-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}

.home-side-card .popular-news-row h3 {
    margin: 0 0 6px;
    font-size: 13px;
    line-height: 1.32;
    overflow-wrap: anywhere;
}

.home-side-card .popular-news-row small {
    display: block;
    color: var(--fanat-green);
    font-size: 12px;
    font-weight: 800;
}
