/* Custom CSS for Individual Blog Post Pages */

.blog-post {
    max-width: 800px;
    margin: 3rem auto;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    color: var(--text-dark-gray);
}

.post-header {
    text-align: center;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1.5rem;
}

.post-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-black);
    line-height: 1.2;
}

.post-meta {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.post-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-black);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.post-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-black);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.post-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.post-content a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
}

.post-content a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-post {
        padding: 1.5rem;
        margin: 2rem auto;
    }

    .post-header h1 {
        font-size: 2rem;
    }
}