
/* Главный контейнер компонента (Занимает 100% высоты родителя) */
.news-block-list { 
    display: flex; 
    flex-direction: column; 
    height: 100%; 
}

/* Обертка для новостей (Растягивается, чтобы оттолкнуть кнопку вниз) */
.news-block-list__items { 
    flex: 1 1 auto; 
    display: flex;
    flex-direction: column;
}

.news-block-item { 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start; 
    padding-bottom: 20px; 
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e7eb; 
    gap: 15px;
}

/* Убираем полоску у последней новости, так как ниже будет кнопка */
.news-block-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.news-block-item__content { flex: 1; }

.news-block-item__date { 
    font-size: 11px; 
    color: #94a3b8; 
    margin-bottom: 6px; 
    font-weight: 500;
}

.news-block-item__title { 
    display: block; 
    font-size: 14px; 
    color: #0f172a; 
    text-decoration: none; 
    line-height: 1.4; 
    font-weight: 600;
}
.news-block-item__title:hover { color: #0052a2; }

/* Логотип компании */
.news-block-item__logo { 
    flex-shrink: 0; 
    width: 60px; 
    height: 60px; 
    border: 1px solid #e2e8f0; 
    border-radius: 4px; 
    padding: 5px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}
.news-block-item__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* Кнопка 'Смотреть все' (Стиль по скриншоту) */
.news-block-more { 
    display: block; 
    width: 100%; /* Кнопка на всю ширину блока */
    margin-top: 25px; /* Минимальный отступ от новостей */
    margin-bottom: 0;
    margin-top: auto; /* МАГИЯ: прижимает кнопку к самому низу */
    font-size: 12px; 
    font-weight: 700; 
    color: #0052a2; 
    text-transform: uppercase; 
    text-decoration: none;
    border: 1px solid #0052a2;
    padding: 12px 20px;
    border-radius: 4px;
    text-align: center;
    transition: all 0.2s;
}
.news-block-more:hover { background: #0052a2; color: #fff; }
