.elementor-2031 .elementor-element.elementor-element-e730af3{--display:flex;}/* Start custom CSS for html, class: .elementor-element-16d5af8 *//* =========================
   HERO (FINAL)
========================= */
.u4-hero{
    position:relative;
    height:70vh;
    min-height:500px;

    /* FULL BLEED 🔥 */
    width:100vw;
    margin-left:calc(-50vw + 50%);

    overflow:hidden;
}

/* VIDEO BACKGROUND */
.u4-hero-video-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;

    /* 🔥 MAKE IT CINEMATIC */
    filter:brightness(1) contrast(1.2);

    animation:u4Zoom 20s ease-in-out infinite alternate;
}

/* 🔥 CINEMATIC OVERLAY (THIS ONE ONLY) */
.u4-hero::after{
    content:"";
    position:absolute;
    inset:0;

    background:
        /* LEFT SIDE TEXT SUPPORT */
        linear-gradient(to right, rgba(0,0,0,.6) 0%, rgba(0,0,0,.3) 40%, transparent 70%),

        /* BOTTOM LEFT ONLY (NOT FULL WIDTH) */
       radial-gradient(circle at bottom left, rgba(0,0,0,.35), transparent 65%);

    z-index:1;
}

/* TEXT */
.u4-hero-overlay{
    position:absolute;
    bottom:60px;
    left:0;
    width:100%;
    z-index:2;
}

.u4-hero-sub{
    color:#ff0033;
    letter-spacing:2px;
    font-size:13px;
}

.u4-hero-overlay h1{
    font-size:64px;
    font-weight:900;
    line-height:1.05;
    margin:10px 0;
}

.u4-hero-desc{
    color:#ccc;
    margin-bottom:20px;
}

/* BUTTONS */
.u4-hero-buttons{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.u4-btn{
    background:#ff0000;
    color:#fff;
    padding:14px 26px;
    border-radius:6px;
    text-decoration:none;
    font-weight:700;
    letter-spacing:.5px;
    transition:.2s;
}

.u4-btn:hover{
    background:#cc0000;
    transform:translateY(-2px);
}

.u4-btn-outline{
    border:1px solid #444;
    color:#fff;
    padding:14px 26px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
}

.u4-btn-outline:hover{
    border-color:#ff0000;
    color:#ff0000;
}
/* SUBTLE MOTION */
@keyframes u4Zoom{
    from{ transform:scale(1); }
    to{ transform:scale(1.08); }
}
/* GLOBAL CONTENT CONTAINER */
.u4-container{
    max-width:1200px;
    margin:0 auto;
    padding:0 40px;
}


.u4-hero-overlay .u4-container{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.u4-section{
    margin:90px 0;
}

.u4-section:not(:first-of-type){
    border-top:1px solid #111;
    padding-top:50px;
}


.u4-hero::after{
    background:
        linear-gradient(to right, rgba(0,0,0,.9) 0%, rgba(0,0,0,.7) 40%, rgba(0,0,0,.2) 70%, transparent 100%),
        linear-gradient(to top, rgba(0,0,0,.85), transparent);
}
.u4-hero-overlay h1{
    font-size:64px;
    font-weight:900;
    line-height:1.05;
    margin:10px 0 15px;
    letter-spacing:-1px;
}
/* =========================
   🔥 EVENTS GRID (FIX)
========================= */
.u4-events-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:25px;
    margin-top:30px;
}

/* =========================
   🔥 NEWS GRID (FIX)
========================= */
.u4-news-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:25px;
    margin-top:30px;
}

/* FORCE CHILD CARDS TO FILL */
.u4-events-grid > *,
.u4-news-grid > *{
    width:100%;
    min-width:0;
}/* End custom CSS */