/* BASE LIGHT OUTLINE BUTTON (default size) */
.is-style-outline-light .wp-element-button.wp-block-button__link {
    background: transparent !important;
    color: #ffffff !important;
    border: 1px solid #ffffff !important;
    padding: 6px 22px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s ease;
    font-family: Aleo, serif !important;
    font-size: 18px !important;
}

.is-style-outline-light .wp-element-button.wp-block-button__link:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* LARGE LIGHT OUTLINE BUTTON */
.is-style-outline-light-large .wp-element-button.wp-block-button__link {
    background: transparent !important;
    color: #ffffff !important;
    border: 1px solid #ffffff !important;
    padding: 18px 44px; /* Larger padding */
    font-size: 20px;    /* Larger text */
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s ease;
    font-family: Aleo, serif !important;
    font-size: 22px !important;
}

.is-style-outline-light-large .wp-element-button.wp-block-button__link:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Load more button styles */
a.wp-block-button__link.wp-element-button.wp-load-more__button {
    border: 1px solid white;
    color: white;
    border-radius: 10px;
	width: auto;
	padding: 9px 22px;
	background: none;
}
a.wp-block-button__link.wp-element-button.wp-load-more__button:hover {
    background-color: #ffffff59;
}