.all-news-l .news-box {
    display: flex;
    flex-direction: column;
}
.all-news-l .news-box .image-part {
    flex: 0 0 auto;
}
.all-news-l .news-box .info-part {
    flex: 1 1 auto;
}

/* Mobile fix for every .all-news-l card grid (listings, related sections,
   "Още рубрики", etc.): stack cards full-width with a shorter landscape image
   so thumbnails aren't wasted portrait space. */
@media (max-width: 640px) {
    .all-news-l { gap: 14px; }
    .all-news-l .news-box { width: 100%; }
    .all-news-l .news-box .image-part,
    .all-news-l .news-box .image-part img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        object-position: center;
    }
    .all-news-l .news-box .news-title {
        display: -webkit-box;
        -webkit-line-clamp: 3;
                line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Home — three category columns (България / Шоубизнес / Любопитно): keep
   card heights identical on desktop, push the "Виж всички" button to the
   bottom, and clamp titles so different lengths don't break the grid. */
@media (min-width: 769px) {
    .all-cats { align-items: stretch; }
    .all-cats .cat-column { display: flex; flex-direction: column; }
    .all-cats .cats-inner {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
    }
    .all-cats .smaller-image-wrap { flex: 1 1 auto; }
    .all-cats .cats-inner .btn { margin-top: auto; }

    .all-cats .big-img-wrap .title {
        display: -webkit-box;
        -webkit-line-clamp: 2;
                line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .all-cats .smaller-image-wrap .small-box .info .title {
        display: -webkit-box;
        -webkit-line-clamp: 2;
                line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}
