/* ===== GENERAL BLOG POST STYLES ===== */

.blog-hero {
    position: relative;
    padding: 150px 0 80px;
    overflow: hidden;
    background-color: var(--light-gray);
    z-index: 1;
    text-align: center;
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.blog-hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.blog-hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.blog-post-content {
    padding: var(--spacing-xxl) 0;
    background-color: #fff;
}

.blog-post-content .container {
    max-width: 900px;
}

.post-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.post-body h2 {
    font-size: 2rem;
    margin-top: var(--spacing-xxl);
    margin-bottom: var(--spacing-lg);
    color: var(--dark-blue);
    position: relative;
    padding-bottom: 10px;
}

.post-body h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.post-body p {
    margin-bottom: var(--spacing-lg);
}
