.wp-block-file {
    position: relative;
    line-height: 1rem;
    margin-bottom: 0.2rem;
}
.wp-block-file::before {
    content: "";
    display: inline-flex;
    height: var(--wp--preset--font-size--s);
    width: var(--wp--preset--font-size--s);
    vertical-align: middle;
    -webkit-mask: url("./../img/file_save.svg") no-repeat center / contain;
    mask: url("./../img/file_save.svg") no-repeat center / contain;
    background-color: var(--wp--preset--color--noir);
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-right: 0.3rem;
}

.wp-block-file a {
    color: var(--wp--preset--color--noir);
    text-decoration: underline;;
    text-underline-offset: 4px;
    line-height: 0.8rem;
}

.wp-block-file a:hover {
    text-decoration-color: var(--wp--preset--color--gris);
}

