.container .row {
    min-height: 83vh;
    max-width: 1200px;
    margin: auto;
    padding: 30px 0;
}
.list-boxes {
    width: calc(100% - 190px);
}
.list-boxes h2 {
    display: inline-block;
    white-space: nowrap; 
    width: 100%; 
    overflow: hidden;
    text-overflow:ellipsis;
}

.list-boxes p {
    color: #999999;
    word-break:break-all;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.list-news {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.list-news img {
    width: 180px;
    height: 120px;
    object-fit: cover;
}

.pagination {
    margin-top: 40px;
    display: flex;
    align-content: center;
    justify-content: center;
}

.pagination .page-item {
    margin: 0 10px;
    min-width: 24px;
    height: 24px;
    text-align: center;
}

.pagination .page-item.disabled {
    color: #999999;
}

.pagination .page-item.active {
    color: #000000;
    background: #EED310;
}