body {
    background-color: var(--bg-dark);
    color: var(--white);
    line-height: 1.8;
    margin: 0;
    font-family: var(--font-main);
}

/* Navigation */
.blog-nav {
    height: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.95);
    z-index: 100;
}

.nav-container {
    width: 90%;
    max-width: 1200px; /* Increased from 800px to match wider layout */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
    font-weight: 600;
}

.back-link:hover {
    color: var(--vivid-azure);
}

.blog-logo {
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white);
}

/* Article Layout */
.blog-post {
    max-width: 1100px; /* Increased from 800px to reduce side space */
    margin: 60px auto;
    padding: 0 5%;
}

.post-header {
    margin-bottom: 40px;
    text-align: center;
}

.post-category {
    color: var(--vivid-azure);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 700;
}

.post-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--white);
}

.post-meta {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Content Styling */
.post-content h2 {
    margin-top: 40px;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
}

.post-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.post-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.post-content li {
    color: var(--text-gray);
    margin-bottom: 10px;
}

.highlight-box {
    background: rgba(13, 106, 159, 0.1); 
    border-left: 4px solid var(--vivid-azure);
    padding: 30px;
    font-style: italic;
    font-size: 1.2rem;
    margin: 40px 0;
    color: var(--white);
}

/* Footer CTA */
.post-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.btn-cta {
    display: inline-block;
    background: var(--vivid-azure);
    color: var(--white);
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 4px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-cta:hover {
    background: #0b5a87; 
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 106, 159, 0.3);
}

@media (max-width: 768px) {
    .post-title { font-size: 2.2rem; }
    
    /* Ensure small screens still have decent padding */
    .blog-post {
        margin: 30px auto;
    }
}