.downloads-list {
    width: 100%
}

.downloads-list__file {
    align-items: end;
    border-bottom: 1px solid #e2ebf0;
    color: var(--brand-blue-dark-100, var(--brand-blue-dark, #1c2541));
    display: grid;
    grid-template-columns: 1fr 48px;
    padding: 16px 0;
    text-decoration: none
}

@media(min-width:576.02px) {
    .downloads-list__file {
        column-gap: 48px
    }
}

@media(max-width:576px) {
    .downloads-list__file {
        column-gap: 16px
    }
}

.downloads-list__file.item--hidden {
    display: none
}

.downloads-list__file:hover .downloads-list__heading {
    color: var(--accent-active-blue-100, var(--accent-active-blue-100, #2997ff));
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline
}

.downloads-list__file:hover svg path {
    stroke: var(--accent-active-blue-100, var(--accent-active-blue-100, #2997ff))
}

.downloads-list__content {
    display: flex;
    flex-direction: column
}

.downloads-list__heading {
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    margin-bottom: 8px
}

.downloads-list__description {
    color: var(--bw-grey-140-body, #555860);
    font-size: .875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 18px
}

.downloads-list .btn {
    margin: 64px auto 16px
}