/* Strategy Button Widget CSS */
.strategy-button-wrapper {
    max-width: 100%;
    margin: 20px 0;
}

.strategy-button {
    display: block;
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.strategy-button-content {
    position: relative;
    z-index: 2;
}

.strategy-button-main-text {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.strategy-button-sub-text {
    font-weight: 500;
}

.strategy-button-flash {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 1;
    transition: left 0.5s ease-in-out;
}

.strategy-button:hover .strategy-button-flash {
    left: 100%;
}