/* Blog-specific styles */

.logo a {
    color: var(--black);
    text-decoration: none;
}

.blog-header {
    text-align: center;
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, var(--kraft-light) 0%, var(--cream) 100%);
}

.blog-header h1 {
    font-size: 4rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.blog-header p {
    font-size: 1.4rem;
    color: var(--charcoal);
}

.blog-listing {
    padding: 4rem 6rem;
    background-color: var(--cream);
}

.blog-date {
    display: block;
    font-size: 0.9rem;
    color: var(--purple);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Blog Post Styles */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: var(--cream);
}

.post-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--kraft-light);
}

.post-header h1 {
    font-size: 3.5rem;
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.post-meta {
    font-size: 1rem;
    color: var(--charcoal);
}

.post-featured-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 25px;
    margin-bottom: 3rem;
}

.post-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--charcoal);
}

.post-content h2 {
    font-size: 2.5rem;
    color: var(--black);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.post-content h3 {
    font-size: 2rem;
    color: var(--purple);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content ul, .post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.8rem;
}

.post-content strong {
    color: var(--black);
    font-weight: 600;
}

.back-to-blog {
    display: inline-block;
    margin-top: 3rem;
    padding: 1rem 2rem;
    background-color: var(--kraft-light);
    color: var(--charcoal);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    background-color: var(--purple);
    color: white;
}

/* Responsive */
@media (max-width: 968px) {
    .blog-header h1 {
        font-size: 2.5rem;
    }

    .blog-header p {
        font-size: 1.2rem;
    }

    .blog-listing {
        padding: 3rem 2rem;
    }

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

    .post-content {
        font-size: 1.1rem;
    }

    .post-content h2 {
        font-size: 2rem;
    }

    .post-content h3 {
        font-size: 1.6rem;
    }
}
