.manauls {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 0 0 6px;
}

.manual {
    display: grid;
    grid-template-columns: 40px 1fr;
    grid-template-areas: 
    "logo title"
    "logo size";
    gap: 4px 2px;
    color: #222222;
    text-decoration: none;
}

.manual__icon {
    display: flex;
    width: 28px;
    height: 34px;
    grid-area: logo;
    margin: 6px 0 0 0;
    background-image: url("/local/templates/doctorhead/components/bitrix/news.list/product_documents-v2/img/icon-doc.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.manual__icon-extension {
    display: none;
    position: relative;
    bottom: -24px;
    background: #000000;
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 10px;
    line-height: 13px;
    margin: 0 0 0 13px;
    padding: 0 3px;
    border: 1px solid #000000;
    border-radius: 3px;
}

.manual__title {
    grid-area: title;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #222222;
    padding: 6px 0 0 0;
    margin: 0;
}

.manual__size {
    grid-area: size;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: rgba(34,34,34,0.5);
    margin: 0;
}
