.abp5_news_hero_site1_widget {
    position: relative;
    width: 100%;
    background: #1e1e1f;
    padding: 80px 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: 20% 30% 30% 20%;
    min-height: 600px;
    box-sizing: border-box;
}

.abp5_news_hero_site1_decor_left {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    width: 280px;
    transform: translate3d(var(--news-hero-decor-left-x, 0px), var(--news-hero-decor-left-y, 0px), 0);
    transition: transform 0.25s ease;
}

.abp5_news_hero_site1_decor_left img {
    display: block;
    width: 100%;
    height: auto;
}

.abp5_news_hero_site1_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    grid-column: 2 / 4;
    padding: 0 40px;
    box-sizing: border-box;
}

.abp5_news_hero_site1_left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.abp5_news_hero_site1_eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c4c4c7;
}

.abp5_news_hero_site1_heading {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 48px;
    line-height: 1.2;
    color: #ffffff;
}

.abp5_news_hero_site1_post {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.abp5_news_hero_site1_post_image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.abp5_news_hero_site1_post_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.abp5_news_hero_site1_post:hover .abp5_news_hero_site1_post_image img {
    transform: scale(1.05);
}

.abp5_news_hero_site1_post_meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #888888;
}

.abp5_news_hero_site1_post_category {
    position: relative;
    padding-left: 20px;
}

.abp5_news_hero_site1_post_category::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 1px;
    background-color: #888888;
}

.abp5_news_hero_site1_post_title {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
}

.abp5_news_hero_site1_post_title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.abp5_news_hero_site1_post_title a:hover {
    color: #ea011d;
}

.abp5_news_hero_site1_right {
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: flex-start;
}

.abp5_news_hero_site1_description {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #c4c4c7;
}

.abp5_news_hero_site1_decor_right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    width: 280px;
    transform: translate3d(var(--news-hero-decor-right-x, 0px), var(--news-hero-decor-right-y, 0px), 0);
    transition: transform 0.25s ease;
}

.abp5_news_hero_site1_decor_right img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 1279px) {
    .abp5_news_hero_site1_widget {
        grid-template-columns: 5% 45% 45% 5%;
        padding: 70px 0;
    }

    .abp5_news_hero_site1_content {
        gap: 32px;
        padding: 0 3%;
    }

    .abp5_news_hero_site1_heading {
        font-size: 38px;
    }

    .abp5_news_hero_site1_decor_left,
    .abp5_news_hero_site1_decor_right {
        width: 180px;
    }
}

@media (max-width: 779px) {
    .abp5_news_hero_site1_widget {
        grid-template-columns: 1fr;
        padding: 50px 4%;
        min-height: auto;
    }

    .abp5_news_hero_site1_decor_left,
    .abp5_news_hero_site1_decor_right {
        display: none;
    }

    .abp5_news_hero_site1_content {
        grid-column: 1;
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0;
    }

    .abp5_news_hero_site1_heading {
        font-size: 30px;
    }

    .abp5_news_hero_site1_post_title {
        font-size: 20px;
    }

    .abp5_news_hero_site1_post_image {
        border-radius: 12px;
    }
}

