.elementor-596 .elementor-element.elementor-element-2bbc851{--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;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-596 .elementor-element.elementor-element-882729b{padding:0px 0px 0px 0px;text-align:center;color:#FFFFFF;}.elementor-596 .elementor-element.elementor-element-e2bfb9e{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-596 .elementor-element.elementor-element-ab39e1a{padding:0px 0px 0px 0px;color:#FFFFFF;}:root{--page-title-display:none;}/* Start custom CSS for container, class: .elementor-element-2bbc851 *//* GLOBAL BLOG THEME: DARK SOLAR AESTHETIC */
body {
    background-color: #0b0f1a !important;
    background-attachment: fixed;
    color: #cbd5e1 !important; /* Matches hero paragraph color */
    font-family: system-ui, -apple-system, sans-serif;
    margin: 0;
    position: relative;
    overflow-x: hidden;
}

/* THE GRID OVERLAY - Applies to the entire background */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
    pointer-events: none;
}

/* THE BACKGROUND GLOW BLOBS */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(34, 197, 94, 0.15) 0%, transparent 40%);
    z-index: -2;
    pointer-events: none;
}

/* BLOG POST CONTENT STYLING */
.entry-content, .post-content, .article-container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

/* GRADIENT HEADINGS */
h1, h2, h3 {
    color: #ffffff !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em;
}

/* Makes the main post title use your theme's gradient */
.entry-title, .main-blog-heading {
    background: linear-gradient(90deg, #3b82f6, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(2rem, 5vw, 3rem);
}

/* LINKS WITH BLUISH GLOW */
a {
    color: #3b82f6;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #22c55e;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
}

/* POST CARDS (If using a grid layout) */
.post-card, .archive-post {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* SIDEBAR WIDGETS */
.widget {
    background: rgba(15, 23, 42, 0.8);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}/* End custom CSS */