/* Blog Page Specific Layout */
.blog-article {
    max-width: 800px;
    margin: 120px auto 80px;
    padding: 0 24px;
    font-family: 'Inter', sans-serif;
}

.blog-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-category {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.blog-header h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    line-height: 1.25;
    color: var(--text-primary);
    margin: 0;
    font-weight: 700;
}

/* Hero Image Box */
.blog-hero-image {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 48px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.blog-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Typography and Spacing for Content */
.blog-body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.blog-body p {
    margin-bottom: 28px;
}

.blog-body p:last-child {
    margin-bottom: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .blog-article {
        margin-top: 100px;
        margin-bottom: 60px;
    }
    .blog-hero-image {
        height: 250px;
        margin-bottom: 32px;
        border-radius: 12px;
    }
    .blog-body {
        font-size: 1.05rem;
        line-height: 1.7;
    }
}