.abp5_hero_site2_widget {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: 80vh;
    box-sizing: border-box;
    overflow: hidden;
}

.abp5_hero_site2_inner {
    position: relative;
    max-width: 1290px;
    margin: 0 auto;
    padding: 140px 3% 0 3%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
    box-sizing: border-box;
    z-index: 1;
}

.abp5_hero_site2_bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.08);
    opacity: 0;
    transition: opacity 0.9s ease, transform 0.9s ease;
    will-change: opacity, transform;
}

.abp5_hero_site2_widget.abp5_hero_site2_ready .abp5_hero_site2_bg {
    opacity: 1;
    transform: scale(1);
}

.abp5_hero_site2_left {
    flex: 0 0 48%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.abp5_hero_site2_subtitle {
    margin: 0 0 16px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.abp5_hero_site2_heading {
    margin: 0 0 26px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.abp5_hero_site2_heading_highlight {
    color: #ffbf3c;
    position: relative;
}

.abp5_hero_site2_heading_highlight::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 12px;
    pointer-events: none;
    border-bottom: 4px solid #ffbf3c;
    border-radius: 999px;
}

.abp5_hero_site2_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    align-self: flex-start;
    border-radius: 999px;
    background: #04d27b;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.abp5_hero_site2_button:hover {
    background: #04d27b;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
    transform: translateY(-1px);
}

.abp5_hero_site2_button_label {
    white-space: nowrap;
}

.abp5_hero_site2_right {
    flex: 0 0 52%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    min-height: 420px;
}

.abp5_hero_site2_character {
    position: relative;
    max-width: 520px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 1;
}

.abp5_hero_site2_character_image {
    display: block;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transform: translate3d(var(--abp5-hero2-offset-x, 0px), var(--abp5-hero2-offset-y, 0px), 0);
    will-change: transform;
@media (max-width: 1279px) {
    .abp5_hero_site2_inner {
        padding: 120px 3% 0 3%;
        gap: 32px;
        min-height: 80vh;
        align-items: center;
    }

    .abp5_hero_site2_heading {
        font-size: 48px;
    }
}

@media (max-width: 779px) {
    .abp5_hero_site2_inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 110px 6% 40px 6%;
        min-height: 80vh;
        text-align: center;
    }

    .abp5_hero_site2_left {
        flex: 0 0 auto;
        max-width: 100%;
        align-items: center;
        text-align: center;
    }

    .abp5_hero_site2_right {
        width: 100%;
        justify-content: center;
        min-height: 280px;
        margin-top: 24px;
    }

    .abp5_hero_site2_heading {
        font-size: 36px;
        text-align: center;
    }

    .abp5_hero_site2_subtitle {
        font-size: 11px;
        text-align: center;
    }

    .abp5_hero_site2_button {
        align-self: center;
    }
}

