  <style>
/* --- 1. THE BUTTON STRUCTURE (Updated for Clickability..!) --- */
.tri-button-wrapper {
    all: unset !important;
    display: inline-block !important; 
    margin: 5px 2px !important;
    vertical-align: middle !important;
}

.tri-button-border {
    all: unset !important;
    display: inline-block !important;
    position: relative !important;
    background: #ffffff !important;
    border-radius: 0 !important;
    border: 3px solid !important;
    border-image-slice: 1 !important;
    border-image-source: linear-gradient(to right, #009246 33.33%, #ffffff 33.33%, #ffffff 66.66%, #ce2b37 66.66%) !important;
    outline: 1px solid #000000 !important;
    outline-offset: -1px !important;
    
    /* FIX: This allows the click to "pass through" the border to the button inside */
    pointer-events: none !important; 
}

.tri-button-inner {
    all: unset !important;
    display: flex !important;
    background: #ffffff !important;
    border: 1px solid #000000 !important;
    border-radius: 0 !important;
    
    /* FIX: This also allows the click to pass through */
    pointer-events: none !important; 
}

.tri-button {
    all: unset !important;
    display: block !important;
    
    /* FIX: Re-enable clicking ONLY for the actual button/link */
    pointer-events: auto !important; 
    
    padding: 8px 16px !important; 
    font-family: 'Arial Black', sans-serif !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    color: #000000 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    text-align: center !important;
    line-height: 1 !important;
    cursor: pointer !important;
}

/* Hover State Adjustment */
/* Since the border has pointer-events: none, we apply the hover to the WRAPPER instead */
.tri-button-wrapper:hover .tri-button-border {
    transform: translateY(-1px) !important;
    filter: brightness(0.98) !important;
}
    </style>