.elementor-4173 .elementor-element.elementor-element-024575e{--display:flex;}/* Start custom CSS for html, class: .elementor-element-f048fe3 *//* ============================================================
   1. GLOBAL & TYPOGRAPHY ENFORCEMENT (LATO 400)
   ============================================================ */
:root {
    --brand-accent: #a3051e; /* Updated to your custom crimson */
    --pure-black: #000000;
    --soft-white: #ffffff;
    --light-gray: #f9f9f9;
}

/* Base Body Text - Lato 16px/29px Black */
.pro-copy p, 
.policy-text-body p, 
.bio-narrative p,
.wotm-biography p {
    font-family: 'Lato', sans-serif !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 29px !important;
    color: var(--pure-black) !important;
    margin-bottom: 25px;
}

/* Global Link Styling */
.pro-link, .wotm-link, .accent-link, .pro-text-link {
    color: var(--brand-accent);
    text-decoration: underline;
    font-weight: 700;
    transition: 0.3s ease;
}

.pro-link:hover { color: var(--pure-black); }

/* ============================================================
   2. HERO BANNER (CLEAN IMAGE FOCUS)
   ============================================================ */
.policy-hero-banner {
    height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* ============================================================
   3. BIOGRAPHY & POLICY PAGE LAYOUTS
   ============================================================ */
.pro-container, .policy-container, .policy-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    background: var(--soft-white);
}

.pro-layout-grid, .policy-layout-grid, .policy-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 80px;
}

/* Header Elements */
.policy-eyebrow, .badge, .bio-tag {
    color: var(--brand-accent);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.red-accent-bar, .pro-accent-line, .bio-accent-bar {
    width: 60px;
    height: 4px;
    background: var(--brand-accent);
    margin-bottom: 40px;
}

/* Lead Paragraph Styling */
.policy-lead-text, .intro-lead {
    font-size: 22px !important;
    line-height: 1.5 !important;
    font-weight: 400 !important;
    color: var(--pure-black) !important;
    border-left: 4px solid var(--brand-accent);
    padding-left: 30px;
    margin-bottom: 40px !important;
}

/* ============================================================
   4. INTERACTIVE RECOGNITION & RESOURCE CARDS
   ============================================================ */
.pro-rec-grid, .link-stack, .stats-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.pro-rec-card, .pro-resource-card, .stat-card {
    padding: 20px;
    background: var(--light-gray);
    border: 1px solid #eee;
    border-left: 4px solid var(--pure-black);
    font-weight: 700;
    font-size: 14px;
    color: var(--pure-black);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pro-rec-card:hover, .pro-resource-card:hover, .stat-card:hover {
    border-left-color: var(--brand-accent);
    transform: translateX(10px);
    background: var(--soft-white);
    box-shadow: 0 10px 25px rgba(163, 5, 30, 0.1); /* Subtle crimson glow */
}

.card-category, .stat-info strong {
    color: var(--brand-accent);
}

/* ============================================================
   5. STICKY MEDIA & VIDEOS
   ============================================================ */
.pro-sticky-img, .sidebar-sticky { 
    position: sticky; 
    top: 40px; 
}

.pro-sticky-img img {
    width: 100%;
    border-radius: 2px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.video-aspect, .wotm-video-wrapper, .pro-video-aspect {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
}

/* ============================================================
   6. RESPONSIVE DESIGN (MOBILE FIXES)
   ============================================================ */
@media (max-width: 991px) {
    .pro-layout-grid, .policy-layout-grid, .policy-grid {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    .pro-portrait-sidebar, .pro-sidebar, .vision-sidebar {
        order: -1;
        width: 100%;
        margin-bottom: 40px;
    }

    .pro-sticky-img, .sidebar-sticky {
        position: relative;
        top: 0;
    }

    .policy-hero-banner { height: 250px; }
    
    .pro-container, .policy-container, .policy-content-wrapper {
        padding: 40px 20px;
    }
}/* End custom CSS */