.elementor-82510 .elementor-element.elementor-element-074d25e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-c37c688 *//* ROOT VARIABLES */
:root {
    --axs-blue: #1f3c88;
    --axs-blue-dark: #102a63;
    --axs-red: #b23a48;
    --axs-green: #0b6e4f;
    --axs-accent-green: #00DD28;
    --axs-text: #333333;
    --axs-text-light: #4a5568;
    --axs-white: #ffffff;
    --axs-bg: #f4f7f9;
    --axs-border: #e2e8f0;
}

* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

body { 
    background-color: var(--axs-bg); 
    font-family: 'Inter', sans-serif; 
    line-height: 1.7; 
    color: var(--axs-text); 
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* HERO SECTION */
.axs-post-hero {
    position: relative; 
    min-height: 450px; 
    background-color: #000;
    display: flex; 
    align-items: center; 
    justify-content: center;
    text-align: center; 
    overflow: hidden; 
    padding: 80px 20px;
}

.axs-post-hero img { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    opacity: 0.5; 
    z-index: 1; 
}

.axs-post-header-content { 
    position: relative; 
    z-index: 2; 
    max-width: 1000px; 
    width: 100%; 
}

.axs-post-title { 
    color: #ffffff !important; 
    font-size: clamp(1.8rem, 5vw, 3.5rem); 
    font-weight: 800; 
    line-height: 1.2; 
    margin: 15px 0; 
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5); 
}

.axs-post-author { 
    color: var(--axs-accent-green); 
    font-weight: 700; 
    font-style: italic; 
    font-size: clamp(1rem, 2vw, 1.25rem); 
    margin-bottom: 12px; 
}

.axs-post-date { 
    color: #ffffff; 
    font-size: 14px; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
}

/* ARTICLE CONTAINER */
.axs-post-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.axs-post-body {
    background: white;
    padding: clamp(30px, 7vw, 80px); 
    position: relative; 
    z-index: 3;
    margin-top: -60px; /* Overlap effect */
    margin-bottom: 50px;
    border-radius: 12px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* TYPOGRAPHY */
.text-blue { color: var(--axs-blue); } 
.text-red { color: var(--axs-red); } 
.text-green { color: var(--axs-green); } 

.lead-text { 
    font-size: clamp(1.2rem, 3vw, 1.5rem); 
    font-weight: 800; 
    margin-bottom: 30px; 
    line-height: 1.4; 
    color: var(--axs-blue); 
}

h3 { 
    font-size: clamp(1.4rem, 2.5vw, 1.8rem); 
    margin-top: 45px; 
    margin-bottom: 20px; 
    font-weight: 700; 
    color: var(--axs-blue); 
    border-bottom: 2px solid #edf2f7; 
    padding-bottom: 10px; 
}

p { 
    margin-bottom: 25px; 
    font-size: 1.15rem; 
    color: var(--axs-text-light); 
}

/* QUOTES & LISTS */
.quote-block { 
    background-color: #f7fafc; 
    border-left: 5px solid var(--axs-green); 
    padding: 30px; 
    margin: 40px 0; 
}

.quote-block p { 
    font-style: italic; 
    font-size: 1.25rem; 
    color: #2d3748; 
    margin-bottom: 10px; 
}

.quote-block cite { 
    display: block; 
    font-weight: 700; 
    font-style: normal; 
}

.governance-list { 
    list-style: none; 
    margin: 30px 0; 
}

.governance-list li { 
    padding-left: 35px; 
    position: relative; 
    margin-bottom: 15px; 
    font-size: 1.1rem; 
    color: var(--axs-text-light); 
}

.governance-list li::before { 
    content: '→'; 
    position: absolute; 
    left: 0; 
    color: var(--axs-green); 
    font-weight: bold; 
}

/* FOOTER ACTIONS */
.author-bio { 
    margin-top: 60px; 
    padding-top: 30px; 
    border-top: 1px solid #edf2f7; 
    color: #718096; 
    font-style: italic; 
    font-size: 1rem; 
}

.axs-footer-actions { 
    margin-top: 30px; 
    padding: 30px 0; 
    border-top: 2px solid #edf2f7; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    gap: 20px; 
}

.axs-social-links { 
    display: flex; 
    gap: 30px; 
}

.axs-link { 
    color: #0077b5; 
    text-decoration: none; 
    font-weight: 600; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    transition: 0.3s;
}

.axs-link:hover {
    color: var(--axs-blue);
    transform: translateY(-2px);
}

.share-button { 
    background-color: var(--axs-blue); 
    color: white; 
    border: none; 
    padding: 12px 28px; 
    font-size: 1rem; 
    font-weight: 700; 
    border-radius: 50px; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    transition: 0.3s; 
}

.share-button:hover {
    background-color: var(--axs-blue-dark);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* RESPONSIVE FIXES */
@media (max-width: 768px) {
    .axs-post-hero { min-height: 350px; }
    
    /* Remove horizontal padding on container so white box touches edges on mobile */
    .axs-post-container { padding: 0; }
    
    .axs-post-body { 
        margin-top: -30px; 
        border-radius: 0; 
        padding: 40px 20px; 
        width: 100%; 
        box-shadow: none; 
    }
    
    .axs-footer-actions { 
        flex-direction: column; 
        text-align: center; 
        gap: 25px;
    }
    
    .axs-social-links { 
        flex-direction: column; 
        gap: 15px; 
        align-items: center; 
    }
    
    .share-button { 
        width: 100%; 
        justify-content: center; 
    }
}/* End custom CSS */