/* blog.css */
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap');

.blog-post.paper-style {
    max-width: 800px;
    margin: 2rem auto;
    background-color: #f4eee3;
    /* warmer cream tone */
    color: #1f1f1f;
    /* charcoal-black for text */
    font-family: 'EB Garamond', serif;
    padding: 2.5rem;
    line-height: 1.7;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0d6c3;
}

.blog-post.paper-style h1 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2.5rem;
    margin-bottom: 0.6rem;
    color: #221e1a;
    /* very dark brown-black */
}

.blog-post.paper-style .post-meta {
    font-size: 0.95rem;
    color: #4b4035;
    margin-bottom: 2rem;
    font-style: italic;
}

.blog-post.paper-style p {
    color: #2b2b2b;
    /* consistent strong body text */
    margin-bottom: 1.25rem;
}

.blog-post.paper-style blockquote {
    border-left: 4px solid #c0aa88;
    padding-left: 1rem;
    margin: 2rem 0;
    font-style: italic;
    background-color: #f2e9da;
    color: #2b2b2b;
}