 .doc-list--top .doc-list_item {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

 .doc-list--columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

 .doc-list--columns .doc-list_item {
    width: 48%;
}

 @media (max-width: 1024px) {
    .doc-list--columns .doc-list_item {
    width: 100%;
    }
}

 .doc-list_item {
    padding: 10px 0px;
    font-weight: 300;
    font-size: 1rem;
    text-decoration: none;
    color: #37c; /* Цвет ссылки */ 
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

 .doc-list_item:hover {
    color: #0066CC; /* Цвет ссылки при наведении */ 
    text-decoration: underline; /* Подчёркивание */
}

 .doc-list_item:visited {
    color: #37c; /* Цвет посещённой ссылки */
}

 .doc-list_item:before {
    content: '';
    width: 29px;
    height: 32px;
    display: block;
    margin-right: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-image: url(//adygnet.ru//upload/dfiles/assets/css/images/sprite.svg#doc);
    background-repeat: no-repeat;
    /* -webkit-background-size: contain; */
    background-size: contain;
}

 @media (max-width: 480px) {
    .doc-list_item:before {
    margin-right: 13px;
    }
}

 .doc-list_item--link:before {
    width: 32px;
    height: 32px;
    background-image: url(//adygnet.ru//upload/dfiles/assets/css/images/sprite.svg#doc);
}

 .doc-list p[itemprop] {
    margin: 0;
}