/**
 * Button Block - Frontend Styles
 * Matches VIPBC theme styling
 */

.button-block-wrapper {
    width: 100%;
    margin: 1.5rem 0;
    font-family: 'Roboto', sans-serif;
}

.button-block-wrapper.button-align-left {
    text-align: left;
}

.button-block-wrapper.button-align-center {
    text-align: center;
}

.button-block-wrapper.button-align-right {
    text-align: right;
}

.button-block-button {
    display: inline-block;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: opacity 0.3s ease, transform 0.2s ease;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
}

.button-block-button:hover {
    opacity: 0.9;
    text-decoration: none;
    transform: translateY(-1px);
}

.button-block-button:active {
    transform: translateY(0);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .button-block-button {
        white-space: normal;
        width: 100%;
        display: block;
    }
}

/* Wide and Full Width Support */
.button-block-wrapper.alignwide,
.button-block-wrapper.alignfull {
    max-width: 100%;
}











