.information-block-for-page {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.information-block-for-page .list-item {
    flex: 0 0 calc(50% - 20px);
    height: 400px;
    border-radius: 24px;
    position: relative;
    color: white;
}

.information-block-for-page .list-item .link {
    text-decoration: none;
    color: var(--colorBlue);
}

.information-block-for-page .list-item button.white a.link {
    text-decoration: none;
    color: var(--colorBlue);
}

.information-block-for-page .list-item button.white:hover a.link {
    color: white;
}

.information-block-for-page .list-item .text-block-item {
    position: absolute;
    bottom: 30px;
    left: 20px;
    right: 20px;
}

.information-block-for-page .list-item .text-block-item .title-item {
    font-weight: 500;
    font-size: 32px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: white;
    margin-bottom: 15px;
}

.information-block-for-page .list-item .text-block-item .preview-text {
    color: white;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 15px;
}

.information-block-for-page .list-item .data {
    position: absolute;
    right: 20px;
    top: 20px;
}

.information-block-for-page .list-item .label {
    position: absolute;
    left: 20px;
    top: 20px;
    color: var(--colorBlue);
    background: white;
    border-radius: 24px;
    padding: 5px 15px;
}

.pagination {
    display: flex;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

.pagination li a,
.pagination li span {
    text-decoration: none;
    width: 40px;
    height: 40px;
    color: #0D0507;
    display: block;
    line-height: 40px;
    text-align: center;
}
.pagination .control span,
.pagination .disabled span {
    color: #BDC1CA;
}

.pagination li.page-item.active a {
    background: #001E62;
    color: white;
    border-radius: 8px;
    text-align: center;
}

@media screen and (max-width: 596px) {
    .information-block-for-page .list-item {
        flex: 0 0 100%;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .information-block-for-page .list-item .text-block-item .title-item {
        font-size: 24px;
        font-weight: normal;
    }
    .pagination {
        gap: 5px;
    }
    .pagination li a, 
    .pagination li span {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
}