
.wp-block-file {
    color: #264F49;
    display: flex;
    flex-direction: row-reverse;
}

.wp-block-file:not(:first-child):not(:last-child) {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.wp-block-file a {
    font-size: 1.1em;
    font-family: "Avalon-Bold", sans-serif;
    padding: 1rem 2rem;
    border-radius: 0;
    text-decoration: none;
    color: currentColor;
    border: 1px solid #264f492c;
    position:relative;
    transition: all 0.3s ease-in-out;
}

.wp-block-file a:not(.wp-block-file__button) {
    flex-grow:1;
    /*padding-left: 3rem;*/
}

.wp-block-file a:not(.wp-block-file__button):hover {
    /*background-color: #264f4959;*/
    padding-left: 3rem;
}

.wp-block-file a:not(.wp-block-file__button):before {
    content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23264F49" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-book-open"><path d="M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z"></path><path d="M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z"></path></svg>');
    position: absolute;
    left:1rem;
    opacity:0;
    transition: all 0.3s ease-in-out;
}

.wp-block-file a:not(.wp-block-file__button):hover:before {
    opacity:1;
}

.wp-block-file .wp-block-file__button {
    font-size: 1.1em;
    font-family: "Avalon-Bold", sans-serif;
    border-radius: 0;
    padding: 1rem 2rem;
    background: #264f49;
    margin-left:-1px;
    align-items: center;
    display: flex;
    white-space: nowrap;
}