.elementor-widget-section > .uael-party-propz-wrap i{color:var( --e-global-color-primary );}.elementor-widget-section > .uael-party-propz-wrap svg{fill:var( --e-global-color-primary );}.elementor-widget-column > .uael-party-propz-wrap i{color:var( --e-global-color-primary );}.elementor-widget-column > .uael-party-propz-wrap svg{fill:var( --e-global-color-primary );}.elementor-widget-html .uael-party-propz-widget-wrap i{color:var( --e-global-color-primary );}.elementor-widget-html .uael-party-propz-widget-wrap svg{fill:var( --e-global-color-primary );}:root{--page-title-display:none;}/* Start custom CSS for section, class: .elementor-element-55cdbf4 *//* --- JURY SECTION --- */
    .jury-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        width: 100%;
        max-width: 1200px;
        margin-top: 20px;
    }

    .jury-card {
        background: var(--lighter-blue);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 40px 20px;
        text-align: center;
        transition: 0.4s ease;
        opacity: 0; /* Hidden for animation */
        position: relative;
        overflow: hidden;
    }

    .jury-card:hover {
        border-color: var(--gold);
        background: rgba(255, 255, 255, 0.05);
        transform: translateY(-10px);
        box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    }

    /* IMAGE STYLING */
    .jury-img-wrap {
        width: 120px;
        height: 120px;
        margin: 0 auto 20px auto;
        border-radius: 50%;
        border: 2px solid var(--gold);
        overflow: hidden;
        padding: 3px; /* Gap between image and border */
    }

    .jury-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
        filter: grayscale(100%); /* Start Black & White */
        transition: 0.4s;
    }

    .jury-card:hover .jury-img {
        filter: grayscale(0%); /* Color on Hover */
        transform: scale(1.1);
    }

    /* TEXT STYLING */
    .jury-name {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        color: var(--white);
        margin: 0 0 5px 0;
    }

    .jury-role {
        font-family: 'Montserrat', sans-serif;
        color: var(--gold);
        font-size: 0.9rem;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 5px;
    }

    .jury-company {
        font-family: 'Montserrat', sans-serif;
        color: #aaa;
        font-size: 0.9rem;
    }

    .jury-link {
        display: inline-block;
        margin-top: 15px;
        color: #666;
        font-size: 0.8rem;
        text-decoration: none;
        border-bottom: 1px solid transparent;
        transition: 0.3s;
    }
    
    .jury-link:hover {
        color: var(--gold);
        border-color: var(--gold);
    }/* End custom CSS */