/* Place buttons below each other on mobile */
@media screen and (max-width: 768px) {
    .wp-block-buttons {
        flex-direction: column;
        & > .wp-block-button {
            width: 100%;
        }
    }
}

/* Small buttons */
.wp-block-buttons.is-style-small .wp-block-button__link {
    padding: 0 var(--wp--preset--spacing--30);
    min-height: 38px;
}

/* Button icon color fix */
.wp-block-buttons .button-icon {
    fill: currentColor;
}