.elementor-82553 .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 {
    --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;
    --axs-dark-card: #1a202c;
}

* { 
    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; 
}

/* 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: 60px 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; 
}

/* Container & Typography */
.axs-post-body { 
    max-width: 1100px; 
    margin: -60px auto 50px; 
    background: white; 
    padding: clamp(30px, 7vw, 80px); 
    position: relative; 
    z-index: 3; 
    border-radius: 8px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
}

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); 
}

.text-blue { color: var(--axs-blue); }
.text-red { color: var(--axs-red); }
.text-green { color: var(--axs-green); }
.text-white { color: white !important; }
.text-white-dim { color: #a0aec0 !important; }
.border-none { border: none !important; }

/* Stats Grid */
.stats-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 20px; 
    margin: 35px 0; 
}

.stat-card { 
    background: #f8faff; 
    padding: 25px; 
    border-radius: 12px; 
    border: 1px solid var(--axs-border); 
}

.stat-label { 
    font-size: 0.85rem; 
    text-transform: uppercase; 
    font-weight: 700; 
    color: #718096; 
}

.stat-value { 
    display: block; 
    font-size: clamp(2.2rem, 5vw, 2.8rem); 
    font-weight: 800; 
    margin: 10px 0; 
}

/* Blocks & Cards */
.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; 
}

.outcome-box { 
    background: #ffffff; 
    border: 1px solid var(--axs-border); 
    border-radius: 12px; 
    padding: 20px 25px; 
    margin-bottom: 15px; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.02); 
}

.architecture-image-container { 
    width: 100%; 
    margin-bottom: 35px; 
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.05); 
}

.architecture-image-container img { 
    width: 100%; 
    display: block; 
}

.arch-card { 
    background: white; 
    border: 1px solid var(--axs-border); 
    padding: 30px; 
    border-radius: 12px; 
    position: relative; 
    margin-bottom: 20px; 
}

.arch-tag { 
    position: absolute; 
    top: 25px; 
    right: 25px; 
    font-size: 0.75rem; 
    font-weight: 800; 
    background: #edf2f7; 
    padding: 5px 12px; 
    border-radius: 6px; 
    color: var(--axs-blue); 
    text-transform: uppercase; 
}

.use-case-card { 
    border-left: 4px solid var(--axs-blue); 
    background: #f8fafc; 
    padding: 30px; 
    margin-bottom: 25px; 
    border-radius: 0 12px 12px 0; 
}

.use-case-title { 
    color: var(--axs-blue); 
    font-weight: 800; 
    margin-bottom: 10px; 
}

.result-text { 
    background: #e6fffa; 
    color: #234e52; 
    padding: 10px 15px; 
    border-radius: 8px; 
    display: inline-block; 
    margin-top: 10px; 
    font-weight: 600; 
}

/* Checklist Section */
.checklist-section { 
    background: var(--axs-dark-card); 
    border-radius: 16px; 
    padding: clamp(30px, 5vw, 50px); 
    margin: 50px 0; 
}

.check-row { 
    display: flex; 
    gap: 20px; 
    padding: 18px 0; 
    border-bottom: 1px solid #2d3748; 
    align-items: flex-start;
}

.check-icon {
    color: var(--axs-accent-green);
    font-size: 1.2rem;
    margin-top: 5px;
}

.check-content b { 
    color: #edf2f7; 
    display: block; 
    margin-bottom: 4px; 
}

.warning-text { 
    color: var(--axs-red); 
    text-align: center; 
    font-weight: 800; 
    margin-top: 25px; 
    font-size: 1.1rem;
}

/* CTA Section */
.ready-cta-section { 
    background: linear-gradient(135deg, var(--axs-blue) 0%, var(--axs-blue-dark) 100%); 
    border-radius: 20px; 
    margin-top: 60px; 
    padding: 60px 45px; 
    text-align: center; 
}

.cta-primary-btn { 
    display: inline-block; 
    background: var(--axs-accent-green); 
    color: #1a202c !important; 
    padding: 20px 50px; 
    border-radius: 50px; 
    font-weight: 800; 
    text-decoration: none; 
    text-transform: uppercase; 
    margin: 25px 0; 
    transition: 0.3s ease; 
}

.cta-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Footer & Bio */
.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; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    gap: 20px; 
}

.axs-link { 
    color: #0077b5; 
    text-decoration: none; 
    font-weight: 600; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}

.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; 
}

/* Responsive */
@media (max-width: 768px) {
    .axs-post-hero { min-height: 350px; }
    .axs-post-body { margin: -30px 0 0; border-radius: 0; padding: 30px 20px; width: 100%; box-shadow: none; }
    .arch-tag { position: static; display: inline-block; margin-bottom: 10px; }
    .check-row { flex-direction: row; gap: 15px; }
    .axs-footer-actions { flex-direction: column; text-align: center; }
    .axs-social-links { flex-direction: column; gap: 15px; align-items: center; }
    .share-button { width: 100%; justify-content: center; }
}/* End custom CSS */