.wp-block-file{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.wp-block-file__embed{
    width: 100%;
    flex-basis: 100%;
    margin-bottom: 1rem;
}

.wp-block-file a{
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: transparent;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 9999px;
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-sf-pro);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    text-align: center;
}

.wp-block-file a:hover{
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}