/*
Theme Name: Voxen - WealthIntent Edition
Theme URI: https://zentronexa.com
Author: Zentro Nexa
Description: A premium, trust-optimized theme designed for Finance and Psychology. Engineered for Pinterest traffic, high ad RPMs, and Core Web Vitals.
Version: 14.0.0
Text Domain: voxen
*/

/* ==========================================================================
   1. Base, Reset & Responsive Variables
   ========================================================================== */
:root {
    /* WEALTHINTENT PALETTE */
    --primary-color: #0B4F36; /* Deep Emerald/Teal - Trust, Wealth, Calm */
    --primary-hover: #073825; 
    
    --secondary-color: #D4AF37; /* Premium Gold - Prosperity, Value */
    --text-color: #2D3748; /* Softer dark slate for comfortable reading */
    --background-color: #F8F9FA; /* Off-white cream - removes clinical coldness */
    
    --sidebar-width: 320px;
    --container-width: 1200px;
    
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Raleway', sans-serif; /* Sleek, modern, premium FinTech font */
    
    --border-radius: 4px; /* Sharper edges for a professional, financial feel */
    
    /* MASTER DESKTOP SPACING */
    --content-gap: 40px;      
    --section-gap: 60px;      
    --widget-margin: 35px;    
    --widget-padding: 30px;   
}

/* MASTER MOBILE SPACING */
@media screen and (max-width: 768px) {
    :root {
        --content-gap: 30px;
        --section-gap: 40px;
        --widget-margin: 20px;
        --widget-padding: 20px;
    }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { max-width: 100%; overflow-x: clip; }

body { font-family: var(--font-body); font-size: 17px; line-height: 1.7; color: var(--text-color); background-color: var(--background-color); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary-color); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--secondary-color); text-decoration: none; }

::selection { background-color: var(--secondary-color); color: #111; }
::-moz-selection { background-color: var(--secondary-color); color: #111; }

/* ==========================================================================
   2. Layout Structure
   ========================================================================== */
.site-container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; width: 100%; }
.site-content-wrapper { display: flex; flex-wrap: wrap; gap: var(--content-gap); margin-top: 40px; margin-bottom: var(--section-gap); }
.main-content { flex: 1; min-width: 0; width: 100%; }
.sidebar { width: var(--sidebar-width); flex-shrink: 0; max-width: 100%; }

/* ==========================================================================
   3. Typography & Utilities
   ========================================================================== */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.3; margin-bottom: 20px; font-weight: 700; color: #1A202C; }
p { margin-bottom: 25px; }
.aligncenter { display: block; margin: 0 auto 25px; }
.alignleft { float: left; margin: 0 25px 25px 0; }
.alignright { float: right; margin: 0 0 25px 25px; }

/* 1x1 Square Image Settings */
.post-thumbnail-link { display: block; overflow: hidden; }
.pin-optimized-image { 
    aspect-ratio: 1 / 1; 
    object-fit: cover; 
    width: 100%; 
    border-radius: var(--border-radius) var(--border-radius) 0 0; 
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
}
.grid-post-card:hover .pin-optimized-image, .search-list-card:hover .pin-optimized-image { transform: scale(1.05); }

/* ==========================================================================
   4. Header & Navigation (INLINE DESKTOP UI)
   ========================================================================== */
.site-header { background-color: #ffffff; position: -webkit-sticky; position: sticky; top: 0; z-index: 999; border-bottom: 1px solid #eaeaea; box-shadow: 0 4px 15px rgba(0,0,0,0.03); transition: box-shadow 0.3s ease; } 

.header-inner-flex { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; flex-wrap: nowrap; }

.site-branding { flex-shrink: 0; margin-right: 30px; display: flex; align-items: center; }
.site-branding a, .custom-logo-link { display: inline-block !important; visibility: visible !important; opacity: 1 !important; position: relative; z-index: 100; margin: 0; }
.site-branding, .site-logo { display: block !important; visibility: visible !important; opacity: 1 !important; margin: 0; }
.site-logo img { max-height: 45px; width: auto; aspect-ratio: 4 / 1; }

.site-title { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 0; letter-spacing: 1px; text-transform: uppercase; font-weight: 900; line-height: 1; display: inline-block; }
.site-title a { color: #1A202C; }
.site-title a:hover { color: var(--primary-color); }
.site-description { display: none; } 

.menu-toggle, .search-toggle { display: none; }
.header-search-form { display: none; } 

.main-navigation-wrapper { background-color: transparent; padding: 0; flex: 1; display: flex; justify-content: flex-end; }

@media screen and (min-width: 769px) {
    .main-navigation ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 28px; align-items: center; } 
    .main-navigation a { font-family: var(--font-body); color: #1A202C; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; position: relative; padding-bottom: 4px; transition: color 0.3s ease; }
    .main-navigation a:hover { color: var(--primary-color); }
    .main-navigation > ul > li > a::before { content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 50%; background-color: var(--primary-color); transition: all 0.3s ease; transform: translateX(-50%); }
    .main-navigation > ul > li > a:hover::before { width: 100%; }
}

/* ==========================================================================
   5. Consistent Grids & Restored White Cards (3x3)
   ========================================================================== */
.hero-editorial-section, .explore-silos-section, .latest-posts-section { margin-bottom: var(--section-gap); width: 100%; overflow: hidden; }

.consistent-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 25px; padding-bottom: 10px; border-bottom: 2px solid #e1e4e8; }
.section-title { font-size: 26px; text-transform: uppercase; letter-spacing: 1px; margin: 0; color: #1A202C; font-weight: 800; }

.post-meta-date { font-family: var(--font-body); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; display: flex; align-items: center; gap: 5px; }
.grid-date { color: #718096; margin-top: 10px; }

/* Universal 3-Column Grid */
.wealth-latest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; width: 100%; }

/* White Card Box & Shadows */
.grid-post-card, .search-list-card { 
    position: relative; 
    background: #ffffff; 
    padding-bottom: 0; 
    text-align: left; 
    border: 1px solid #E2E8F0; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); 
    border-radius: var(--border-radius); 
    overflow: hidden; 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}
.grid-post-card:hover, .search-list-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 8px 25px rgba(0,0,0,0.08); 
    border-color: #CBD5E0; 
}

/* Internal Padding for Card Text */
.grid-post-content, .search-card-content, .left-align-card .grid-post-content { 
    padding: 20px !important; 
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}
.grid-post-title, .search-card-title { 
    font-size: 18px; 
    margin: 0 0 10px 0 !important; 
    line-height: 1.35; 
    font-weight: 700; 
}
.grid-post-title a, .search-card-title a { color: #1A202C; }
.grid-post-card:hover .grid-post-title a, .search-list-card:hover .search-card-title a { color: var(--primary-color); }

@media screen and (max-width: 1024px) {
    .wealth-latest-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
}
@media screen and (max-width: 768px) {
    .wealth-latest-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ==========================================================================
   6. Premium Single Posts (REFINED TYPOGRAPHY)
   ========================================================================== */
.single-article { background: #fff; padding: var(--widget-padding); border-radius: var(--border-radius); box-shadow: 0 4px 25px rgba(0,0,0,0.03); border: 1px solid #E2E8F0; width: 100%; overflow: hidden; margin-bottom: 40px; }

.entry-header { margin-bottom: 35px; border-bottom: 2px solid #E2E8F0; padding-bottom: 25px; }

.entry-title { font-size: 2.2rem; line-height: 1.3; margin-bottom: 20px; color: #1A202C; letter-spacing: -0.5px; word-wrap: break-word; font-weight: 800; }

.premium-post-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; font-family: var(--font-body); font-size: 14px; color: #718096; margin-top: -10px; }
.meta-details-group { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; font-weight: 500; }
.meta-separator { color: #CBD5E0; }

.post-thumbnail { margin-bottom: 40px; }
.featured-image { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--border-radius); box-shadow: 0 5px 25px rgba(0,0,0,0.05); }

/* Desktop Body Typography */
.entry-content { font-size: 17px; line-height: 1.8; color: #334155; word-wrap: break-word; }
.entry-content p { margin-bottom: 25px; }

/* Desktop Subheadings */
.entry-content h2 { margin-top: 50px; margin-bottom: 18px; font-size: 26px; color: #1A202C; font-weight: 800; line-height: 1.35; }
.entry-content h3 { margin-top: 40px; margin-bottom: 15px; font-size: 22px; color: #1A202C; font-weight: 700; line-height: 1.35; }
.entry-content h4 { margin-top: 30px; margin-bottom: 12px; font-size: 19px; color: #1A202C; font-weight: 700; }

.entry-content img { margin: 35px auto; border-radius: var(--border-radius); box-shadow: 0 4px 15px rgba(0,0,0,0.04); }
.entry-content blockquote { font-family: var(--font-heading); font-size: 20px; font-style: italic; color: #1A202C; margin: 35px 0; padding: 25px 30px; background-color: var(--background-color); border-left: 4px solid var(--secondary-color); font-weight: 600; line-height: 1.6; }

/* Author Box Styles */
.about-author-section, .article-author-box { background-color: #ffffff; border-radius: var(--border-radius); padding: var(--widget-padding); margin-bottom: var(--section-gap); box-shadow: 0 4px 25px rgba(0,0,0,0.03); border: 1px solid #E2E8F0; }
.about-author-inner, .article-author-box { display: flex; align-items: center; gap: 30px; }
.author-image-wrapper { flex-shrink: 0; }
.author-avatar { width: 200px; height: 200px; object-fit: cover; border-radius: 50%; border: 5px solid #fff; box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
.author-box-avatar { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 3px solid #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.author-bio-content, .author-box-info { flex: 1; }
.author-greeting { font-size: 28px; margin-bottom: 15px; color: #1A202C; font-weight: 800; }
.author-box-name { font-size: 22px; margin-bottom: 8px; color: #1A202C; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.author-bio-text, .author-box-bio { font-family: var(--font-body); font-size: 16px; color: #4A5568; margin-bottom: 20px; line-height: 1.7; }

/* ==========================================================================
   7. Sidebar Base Styles & Visual Categories
   ========================================================================== */
.widget { background-color: #ffffff; padding: var(--widget-padding); border-radius: var(--border-radius); box-shadow: 0 4px 25px rgba(0,0,0,0.03); margin-bottom: var(--widget-margin); border: 1px solid #E2E8F0; width: 100%; overflow: hidden; }
.widget-title { font-family: var(--font-heading); font-size: 20px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 25px; padding-bottom: 12px; border-bottom: 2px solid #E2E8F0; position: relative; color: #1A202C; font-weight: 800; }
.widget-title::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 40px; height: 2px; background-color: var(--secondary-color); }

.subcategory-grid-layout { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
.custom-visual-categories { display: flex; flex-direction: column; gap: 15px; }
.visual-cat-card { position: relative; display: flex; align-items: center; height: 90px; border-radius: var(--border-radius); overflow: hidden; background-size: cover; background-position: center; padding: 0 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.visual-cat-card:hover { transform: translateY(-3px); box-shadow: 0 6px 15px rgba(0,0,0,0.15); }
.cat-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to right, rgba(11, 79, 54, 0.9) 0%, rgba(11, 79, 54, 0.4) 100%); z-index: 1; }
.cat-circle-img { position: relative; z-index: 2; width: 55px; height: 55px; border-radius: 50%; overflow: hidden; border: 2px solid #fff; margin-right: 15px; flex-shrink: 0; background-color: #eee; }
.cat-circle-img img { width: 100%; height: 100%; object-fit: cover; }
.visual-cat-name { font-family: var(--font-body); position: relative; z-index: 2; color: #fff; font-size: 18px; font-weight: 700; text-transform: capitalize; letter-spacing: 0.5px; }

/* ==========================================================================
   8. Footer Styles & Bottom Sections (INLINE FOOTER UI)
   ========================================================================== */
.related-posts-section { margin-bottom: var(--section-gap); }
.related-posts-title { font-family: var(--font-heading); font-size: 26px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 25px; color: #1A202C; text-align: center; position: relative; padding-bottom: 15px; font-weight: 800; }
.related-posts-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 50px; height: 2px; background-color: var(--secondary-color); }

.site-footer { font-family: var(--font-body); background-color: #1A202C; color: #A0AEC0; padding: 40px 0; width: 100%; overflow: hidden; border-top: 4px solid var(--primary-color); }
.footer-inner-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }

.footer-copyright { font-size: 14px; font-weight: 500; }
.footer-copyright a { color: #ffffff; font-weight: 700; }
.footer-copyright a:hover { color: var(--secondary-color); }

.footer-navigation ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 25px; align-items: center; flex-wrap: wrap; }
.footer-navigation a { color: #E2E8F0; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.footer-navigation a:hover { color: var(--secondary-color); }

/* ==========================================================================
   9. MOBILE RESPONSIVENESS & TYPOGRAPHY
   ========================================================================== */
@keyframes slideDownMenu { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

@media screen and (max-width: 1024px) {
    .site-content-wrapper { flex-direction: column; }
    .sidebar { width: 100%; margin-top: 10px; }
}

@media screen and (max-width: 768px) {
    /* STRICT MOBILE HEADER LAYOUT (Logo Left, Hamburger Right) */
    .site-header { position: -webkit-sticky; position: sticky; top: 0; z-index: 999; box-shadow: 0 4px 15px rgba(0,0,0,0.05); border: none; }
    
    .header-inner-flex { padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; width: 100%; }
    
    .site-branding { flex: 1; text-align: left; margin: 0; display: flex; align-items: center; justify-content: flex-start; }
    .site-title { font-size: 1.6rem; margin-bottom: 0; letter-spacing: 1px; text-align: left; }
    .site-description { display: none; } 
    
    /* Keep nav wrapper ready for the button */
    .main-navigation-wrapper { flex: 0 0 auto; display: flex; justify-content: flex-end; }
    .main-navigation { width: 100%; display: block; }
    
    /* Reveal the hamburger button */
    .menu-toggle { display: flex; align-items: center; justify-content: center; background: transparent; border: none; color: #1A202C; cursor: pointer; padding: 5px; margin: 0; }
    
    /* Hide the UL initially, show as column when toggled */
    .main-navigation ul { display: none; position: absolute; top: 100%; left: 0; width: 100%; background-color: #ffffff; border-top: 1px solid #E2E8F0; box-shadow: 0 10px 20px rgba(0,0,0,0.05); margin: 0; z-index: 1000; flex-direction: column; padding: 0; gap: 0; }
    .main-navigation.toggled ul { display: flex; animation: slideDownMenu 0.3s ease-out; }
    .main-navigation li { width: 100%; border-bottom: 1px solid #EDF2F7; }
    .main-navigation a { padding: 18px 25px; text-align: left; display: block; font-family: var(--font-body); color: #1A202C; font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; transition: all 0.2s ease; }
    .main-navigation a::after { display: none; }
    .main-navigation a:hover { background-color: #F8F9FA; color: var(--primary-color); padding-left: 32px; }

    /* MOBILE FOOTER OVERRIDES */
    .footer-inner-flex { flex-direction: column; text-align: center; justify-content: center; }
    .footer-navigation ul { justify-content: center; }

    /* GENERAL LAYOUT OVERRIDES */
    .consistent-header { flex-direction: column; align-items: center; gap: 10px; text-align: center; }
    .site-container { padding: 0 15px; }
    .article-author-box, .about-author-inner { flex-direction: column; text-align: center; gap: 20px; }
    
    /* MOBILE TYPOGRAPHY FIXES */
    .entry-title { font-size: 26px !important; line-height: 1.35; margin-bottom: 15px; }
    .entry-content { font-size: 16px !important; line-height: 1.75; }
    .entry-content h2 { font-size: 22px !important; margin-top: 45px; margin-bottom: 15px; line-height: 1.35; }
    .entry-content h3 { font-size: 19px !important; margin-top: 30px; margin-bottom: 12px; line-height: 1.35; }
    .entry-content h4 { font-size: 17px !important; margin-top: 25px; margin-bottom: 10px; }
    .entry-content blockquote { font-size: 17px; padding: 20px; }
    .single-article { padding: 15px; } 

    /* MOBILE COMMENTS FIX */
    .comments-area { padding: 25px 20px; }
    .comment-form { gap: 15px; }
    .comment-form-author, .comment-form-email, .comment-form-url { width: 100%; } 
    .comment-form textarea { height: 100px !important; min-height: 100px; }
    .comment-body { padding-left: 0; padding-top: 65px; } 
    .comment-author .avatar { width: 45px; height: 45px; }
    .comment-list .children { margin-left: 15px; padding-left: 15px; border-left: 2px solid #EDF2F7; } 
}

/* ==========================================================================
   10. PREMIUM PAGINATION UI
   ========================================================================== */
.archive-pagination { margin-top: 50px; margin-bottom: 20px; text-align: center; width: 100%; }
.archive-pagination .nav-links { display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.archive-pagination .page-numbers { display: flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 15px; background: #ffffff; border-radius: 2px; font-family: var(--font-body); font-weight: 700; font-size: 15px; color: #1A202C; box-shadow: 0 4px 10px rgba(0,0,0,0.03); transition: all 0.3s ease; border: 1px solid #E2E8F0; text-decoration: none; }
.archive-pagination .page-numbers:hover { background: var(--primary-color); color: #ffffff; transform: translateY(-2px); border-color: var(--primary-color); }
.archive-pagination .page-numbers.current { background: var(--primary-color); color: #ffffff; border-color: var(--primary-color); pointer-events: none; }
.archive-pagination .page-numbers.dots { background: transparent; border: none; box-shadow: none; pointer-events: none; color: #718096; }

/* ==========================================================================
   11. PREMIUM COMMENTS SECTION UI (COMPACT)
   ========================================================================== */
.comments-area { background: #fff; padding: 35px 40px; border-radius: var(--border-radius); box-shadow: 0 4px 15px rgba(0,0,0,0.03); border: 1px solid #E2E8F0; margin-top: 40px; margin-bottom: var(--section-gap); width: 100%; }
.comments-title, .comment-reply-title { font-family: var(--font-heading); font-size: 22px; color: #1A202C; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 25px 0; padding: 0 0 15px 0; border-bottom: 2px solid #E2E8F0; display: block; width: 100%; }

.comment-form { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 20px; }
.comment-notes, .logged-in-as, .comment-form-comment, .comment-form-cookies-consent, .form-submit { width: 100%; margin: 0; }
.comment-form-author, .comment-form-email, .comment-form-url { width: calc(33.333% - 14px); margin: 0; }

.comment-form label { display: block; font-size: 12px; font-weight: 700; margin-bottom: 8px; color: #1A202C; text-transform: uppercase; letter-spacing: 0.5px; }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea { width: 100%; padding: 14px 18px; border: 1px solid #CBD5E0; border-radius: var(--border-radius); background: #F8F9FA; font-family: var(--font-body); font-size: 15px; color: #2D3748; outline: none; transition: all 0.3s ease; box-sizing: border-box; box-shadow: inset 0 2px 4px rgba(0,0,0,0.02); }
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--primary-color); background: #ffffff; box-shadow: inset 0 2px 4px rgba(0,0,0,0.02), 0 0 0 3px rgba(11, 79, 54, 0.1); }
.comment-form textarea { height: 120px !important; min-height: 120px; resize: vertical; }

.comment-form-cookies-consent { display: flex; align-items: center; gap: 10px; margin-top: 5px; }
.comment-form-cookies-consent input[type="checkbox"] { margin: 0; width: 16px; height: 16px; accent-color: var(--primary-color); cursor: pointer; flex-shrink: 0; }
.comment-form-cookies-consent label { font-size: 14px; font-weight: 500; text-transform: none; letter-spacing: 0; color: #4A5568; margin: 0; cursor: pointer; display: inline-block; }

.form-submit { margin-top: 10px; }
.submit { background-color: var(--primary-color); color: #fff; border: none; padding: 16px 35px; border-radius: var(--border-radius); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: all 0.3s ease; }
.submit:hover { background-color: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(11, 79, 54, 0.2); }

.comment-list { list-style: none; padding: 0; margin: 0 0 40px 0; }
.comment-body { position: relative; padding-left: 65px; padding-bottom: 25px; margin-bottom: 25px; border-bottom: 1px solid #E2E8F0; min-height: 55px; }
.comment-list > li:last-child > .comment-body { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.comment-author .avatar { position: absolute; top: 0; left: 0; width: 50px; height: 50px; border-radius: 50%; object-fit: cover; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.comment-author { font-family: var(--font-heading); font-size: 17px; font-weight: 800; color: #1A202C; display: block; margin-bottom: 4px; }
.comment-author .says { display: none; }
.comment-metadata a { font-size: 12px; color: #718096; text-transform: uppercase; font-weight: 600; text-decoration: none; letter-spacing: 0.5px; }
.comment-metadata a:hover { color: var(--primary-color); }
.comment-content { font-size: 16px; line-height: 1.7; color: #4A5568; margin-top: 10px; margin-bottom: 15px; }
.reply a { display: inline-block; font-size: 11px; font-weight: 800; text-transform: uppercase; color: var(--primary-color); padding: 6px 16px; border: 2px solid var(--primary-color); border-radius: 30px; text-decoration: none; transition: all 0.3s ease; letter-spacing: 0.5px; }
.reply a:hover { background-color: var(--primary-color); color: #fff; }
.comment-list .children { margin-left: 40px; border-left: 3px solid #EDF2F7; padding-left: 25px; margin-top: 25px; }

/* ==========================================================================
   12. SCROLL TO TOP BUTTON
   ========================================================================== */
.scroll-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background-color: var(--primary-color); color: #ffffff; border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.15); z-index: 999; }
.scroll-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-to-top:hover { background-color: var(--primary-hover); transform: translateY(-5px); }

/* ==========================================================================
   13. POST NAVIGATION CARDS
   ========================================================================== */
.premium-post-navigation { display: flex; justify-content: space-between; gap: 30px; margin: 50px 0 40px; padding: 0; }
.premium-post-navigation div { flex: 1; }
.premium-post-navigation .nav-next { text-align: right; }
.premium-post-navigation a { display: block; background-color: #ffffff; padding: 25px 30px; border-radius: var(--border-radius); box-shadow: 0 4px 15px rgba(0,0,0,0.03); border: 1px solid #E2E8F0; transition: all 0.3s ease; text-decoration: none; }
.premium-post-navigation a:hover { transform: translateY(-3px); border-color: rgba(11, 79, 54, 0.3); }
.nav-label { display: block; font-family: var(--font-body); font-size: 12px; text-transform: uppercase; color: #718096; margin-bottom: 8px; font-weight: 700; }
.nav-title { display: block; font-family: var(--font-heading); font-size: 18px; color: #1A202C; font-weight: 700; line-height: 1.4; }

/* ==========================================================================
   14. HEADER DROP-DOWN MENUS (ADA COMPLIANT) 
   ========================================================================== */
.main-navigation ul li { position: relative; }
.main-navigation ul li ul.sub-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background-color: #ffffff; min-width: 220px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-radius: 2px; padding: 8px 0; margin: 0; display: none; z-index: 1000; border: 1px solid #E2E8F0; }
.main-navigation ul li:hover > ul.sub-menu, .main-navigation ul li:focus-within > ul.sub-menu { display: block; }
.main-navigation ul li ul.sub-menu li { display: block; width: 100%; margin: 0; padding: 0; border-bottom: none; }
.main-navigation ul li ul.sub-menu li a { display: block; padding: 12px 20px; font-size: 14px; font-weight: 600; color: #2D3748; text-transform: capitalize; transition: all 0.2s ease; }
.main-navigation ul li ul.sub-menu li a:hover { color: var(--primary-color); background-color: #F8F9FA; padding-left: 25px; }
.main-navigation ul > li.menu-item-has-children > a::after { content: ""; display: inline-block; width: 7px; height: 7px; margin-left: 8px; vertical-align: middle; border-top: none; border-left: none; border-right: 2.5px solid currentColor; border-bottom: 2.5px solid currentColor; transform: translateY(-3px) rotate(45deg); opacity: 0.9; transition: transform 0.2s ease; }
.main-navigation ul > li.menu-item-has-children:hover > a::after { transform: translateY(1px) rotate(225deg); }
@media (max-width: 768px) {
    .main-navigation ul li ul.sub-menu { position: static; transform: none; background-color: #F8F9FA; display: none; border-left: 3px solid var(--primary-color); border-radius: 0; }
    .main-navigation ul li.mobile-dropdown-open > ul.sub-menu { display: block; }
    .main-navigation ul > li.mobile-dropdown-open > a::after { transform: translateY(1px) rotate(225deg); }
}

/* ==========================================================================
   15. ERROR 404 PAGE STYLES
   ========================================================================== */
.error-404-header { text-align: center; margin-bottom: 40px; padding-bottom: 40px; border-bottom: 2px solid #E2E8F0; }
.error-404-title { font-size: 120px; font-weight: 900; color: var(--primary-color); line-height: 1; margin-bottom: 10px; letter-spacing: -2px; }
.error-404-subtitle { font-size: 28px; color: #1A202C; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0; }
.error-404-content { text-align: center; padding: 60px 20px; background: #fff; border-radius: var(--border-radius); box-shadow: 0 4px 25px rgba(0,0,0,0.03); border: 1px solid #E2E8F0; }
.error-404-icon { margin-bottom: 25px; opacity: 0.8; stroke: var(--primary-color); }
.error-404-text { font-size: 18px; color: #4A5568; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.8; }
.error-404-search { max-width: 500px; margin: 0 auto 40px; }
.error-404-home-btn { background-color: var(--primary-color); color: #fff; padding: 16px 35px; border-radius: 2px; font-family: var(--font-body); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease; display: inline-block; text-decoration: none; box-shadow: 0 4px 15px rgba(11, 79, 54, 0.15); }
.error-404-home-btn:hover { background-color: var(--primary-hover); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(11, 79, 54, 0.25); }

/* ==========================================================================
   16. PREMIUM TABLE OF CONTENTS
   ========================================================================== */
.voxen-premium-toc { background-color: #ffffff; border: 1px solid #E2E8F0; border-radius: var(--border-radius); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); margin: 40px 0 50px 0; padding: 0; overflow: hidden; max-width: 100%; }
.voxen-premium-toc .toc-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 25px; background-color: var(--background-color); cursor: pointer; user-select: none; transition: background-color 0.3s ease; }
.voxen-premium-toc .toc-header:hover { background-color: rgba(11, 79, 54, 0.05); }
.voxen-premium-toc .toc-title { font-family: var(--font-heading); font-size: 17px; font-weight: 800; color: #1A202C; text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; gap: 12px; }
.voxen-premium-toc .toc-title svg { color: var(--primary-color); }
.voxen-premium-toc .toc-toggle-icon svg { transition: transform 0.3s ease; color: #718096; }
.voxen-premium-toc .toc-header.active .toc-toggle-icon svg { transform: rotate(-180deg); }
.voxen-premium-toc .toc-list { list-style: none; margin: 0; padding: 25px; border-top: 1px solid #E2E8F0; transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease; max-height: 2000px; opacity: 1; overflow: hidden; }
.voxen-premium-toc .toc-list.collapsed { max-height: 0; padding: 0 25px; border-top: none; opacity: 0; }
.voxen-premium-toc .toc-list li { margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px dashed #E2E8F0; }
.voxen-premium-toc .toc-list li:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.voxen-premium-toc .toc-list a { font-family: var(--font-body); font-size: 16px; font-weight: 600; color: #4A5568; text-decoration: none; transition: color 0.3s ease, padding-left 0.3s ease; display: block; line-height: 1.5; }
.voxen-premium-toc .toc-list a:hover { color: var(--primary-color); padding-left: 8px; }
h2[id^="toc-"] { scroll-margin-top: 120px; }

/* ==========================================================================
   17. RANK MATH FAQ ACCORDION
   ========================================================================== */
.wp-block-rank-math-faq-block { margin: 50px 0; background: #ffffff; padding: 30px; border-radius: var(--border-radius); box-shadow: 0 4px 25px rgba(0,0,0,0.03); border: 1px solid #E2E8F0; }
.wp-block-rank-math-faq-block .rank-math-list { list-style: none; padding: 0; margin: 0; }
.rank-math-list-item { border-bottom: 1px solid #E2E8F0; margin-bottom: 0; padding: 18px 0; }
.rank-math-list-item:first-child { padding-top: 0; }
.rank-math-list-item:last-child { border-bottom: none; padding-bottom: 0; }
.rank-math-question { font-family: var(--font-heading); font-size: 19px; font-weight: 700; color: #1A202C; cursor: pointer; display: flex; justify-content: space-between; align-items: center; margin: 0; padding: 5px 0; transition: color 0.3s ease; user-select: none; }
.rank-math-question:hover { color: var(--primary-color); }
.rank-math-question::after { content: '+'; font-size: 26px; font-weight: 400; color: var(--primary-color); transition: transform 0.3s ease; margin-left: 15px; }
.rank-math-list-item.faq-active .rank-math-question::after { content: '−'; transform: rotate(180deg); }
.rank-math-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease; opacity: 0; font-family: var(--font-body); font-size: 16px; color: #4A5568; line-height: 1.7; }
.rank-math-list-item.faq-active .rank-math-answer { max-height: 1000px; padding: 15px 0 10px 0; opacity: 1; }
.rank-math-answer p { margin-bottom: 0; }

/* ==========================================================================
   18. PREMIUM SIDEBAR WIDGETS & TAG CLOUDS
   ========================================================================== */
.widget ul { list-style: none; padding: 0; margin: 0; }
.widget ul li { padding: 14px 0; border-bottom: 1px solid #E2E8F0; display: flex; justify-content: space-between; align-items: center; font-size: 15px; color: #4A5568; transition: all 0.3s ease; }
.widget ul li:first-child { padding-top: 0; }
.widget ul li:last-child { border-bottom: none; padding-bottom: 0; }
.widget ul li a { color: #2D3748; font-weight: 600; text-decoration: none; transition: all 0.3s ease; flex: 1; }
.widget ul li a:hover { color: var(--primary-color); padding-left: 6px; }
.widget .post-count, .widget li > span, .widget_categories li span, .widget_archive li span { background: var(--background-color); color: #718096; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px; margin-left: 10px; transition: all 0.3s ease; }
.widget ul li:hover span { background: rgba(11, 79, 54, 0.1); color: var(--primary-color); }

.widget .tagcloud, .wp-block-tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.widget .tagcloud a, .wp-block-tag-cloud a { display: inline-block; background-color: var(--background-color); color: #4A5568; font-family: var(--font-body); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 10px 18px; border-radius: 2px; transition: all 0.3s ease; text-decoration: none; border: 1px solid transparent; }
.widget .tagcloud a:hover, .wp-block-tag-cloud a:hover { background-color: var(--primary-color); color: #ffffff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(11, 79, 54, 0.2); }

/* ==========================================================================
   19. IN-POST TAGS STYLING
   ========================================================================== */
.post-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 40px; padding-top: 25px; border-top: 2px solid #E2E8F0; }
.post-tags a { display: inline-block; background-color: var(--primary-color); color: #ffffff; font-family: var(--font-body); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 8px 18px; border-radius: 2px; transition: all 0.3s ease; text-decoration: none; border: none; box-shadow: 0 2px 8px rgba(11, 79, 54, 0.15); }
.post-tags a:hover { background-color: var(--primary-hover); color: #ffffff; transform: translateY(-2px); box-shadow: 0 6px 15px rgba(11, 79, 54, 0.25); }

/* ==========================================================================
   20. WORDPRESS BLOCK ALIGNMENTS
   ========================================================================== */
.wp-block-image.alignleft { margin: 5px 25px 20px 0; }
.wp-block-image.alignright { margin: 5px 0 20px 25px; }
.wp-block-image.aligncenter { margin-top: 20px; margin-bottom: 20px; display: block; }
@media screen and (max-width: 600px) { .wp-block-image.alignleft, .wp-block-image.alignright { float: none; margin: 0 0 20px 0; width: 100% !important; } }

/* ==========================================================================
   21. GLOBAL SEARCH FORM UI
   ========================================================================== */
.custom-search-form .search-form-wrapper, .wp-block-search .wp-block-search__inside-wrapper { display: flex; width: 100%; }
.custom-search-form .search-field, .wp-block-search__input { font-family: var(--font-body); flex: 1; padding: 12px 15px; border: 1px solid #E2E8F0; border-right: none; border-radius: 2px 0 0 2px; outline: none; font-size: 14px; background: #F8F9FA; transition: all 0.3s ease; }
.custom-search-form .search-field:focus, .wp-block-search__input:focus { border-color: var(--primary-color); background: #fff; }
.custom-search-form .search-submit, .wp-block-search__button { font-family: var(--font-body); background-color: var(--primary-color); color: #fff; border: none; padding: 12px 25px; border-radius: 0 2px 2px 0; font-weight: 700; text-transform: uppercase; font-size: 13px; cursor: pointer; transition: background 0.3s ease; }
.custom-search-form .search-submit:hover, .wp-block-search__button:hover { background-color: var(--primary-hover); }
.search-highlight { color: var(--primary-color); font-style: italic; font-weight: bold; }

/* ==========================================================================
   22. MISC ARCHIVE & FALLBACK STYLES
   ========================================================================== */
.archive-header-spacing { margin-bottom: 40px; padding-bottom: 20px; border-bottom: 2px solid #E2E8F0; }
.archive-desc-styling { color: #4A5568; font-size: 16px; max-width: 800px; }
.post-breadcrumbs { font-size: 13px; text-transform: uppercase; font-weight: 600; margin-bottom: 30px; }
.post-breadcrumbs a { color: var(--primary-color); }
.breadcrumb-sep { margin: 0 5px; color: #A0AEC0; }
.current-crumb { color: #1A202C; }
.tag-title-styling { margin-bottom: 10px; display: flex; align-items: center; gap: 12px; }

/* ==========================================================================
   FIX: STICKY SIDEBAR FOR PREMIUM AD VIEWABILITY (Mediavine/AdSense)
   ========================================================================== */
@media screen and (min-width: 1025px) {
    .sidebar { display: flex; flex-direction: column; }
    .sidebar .widget:last-child {
        position: -webkit-sticky;
        position: sticky;
        top: 130px; 
        margin-bottom: 30px;
        z-index: 10;
    }
}