/* ================================
   HOME HERO BUTTONS
   ================================ */

/* Desktop buttons */
.home .stk-0ac53cb .stk-button-group,
.home .stk-0ac53cb .stk-row,
.home .stk-0ac53cb .stk-inner-blocks,
.home .wp-block-buttons {
    gap: 34px !important;
}

.home .stk-0ac53cb .stk-button,
.home .stk-0ac53cb .stk-link,
.home .wp-block-button__link {
    border-radius: 18px !important;
    padding: 18px 36px !important;
    min-height: 58px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    font-weight: 900 !important;
    text-align: center !important;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.home .stk-0ac53cb .stk-button:hover,
.home .stk-0ac53cb .stk-link:hover,
.home .wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(255, 0, 0, 0.24);
}


/* Mobile buttons */
@media (max-width: 768px) {

    .home .stk-0ac53cb .stk-button-group,
    .home .stk-0ac53cb .stk-row,
    .home .stk-0ac53cb .stk-inner-blocks,
    .home .wp-block-buttons {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 18px !important;
        width: 100% !important;
        text-align: center !important;
    }

    .home .stk-0ac53cb .stk-block-button,
    .home .stk-0ac53cb .wp-block-stackable-button,
    .home .wp-block-button {
        width: 100% !important;
        max-width: 320px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
    }

    .home .stk-0ac53cb .stk-button,
    .home .stk-0ac53cb .stk-link,
    .home .wp-block-button__link {
        width: 100% !important;
        min-height: 58px !important;
        border-radius: 18px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        margin-left: auto !important;
        margin-right: auto !important;

        text-align: center !important;
    }

    .home .stk-0ac53cb .stk-button__inner-text {
        width: 100%;
        text-align: center !important;
    }
}