.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.header-image {
    width: 100%;
    margin-bottom: 1rem;
    position: relative;
}

.header-image h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2.5rem;

}

.header-image img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.article-meta {
    margin-bottom: 2rem;
}

.post-info {
    /* margin-bottom: 1rem; */
    font-size: 0.9rem;
    color: #666;
}

.post-info .date,
.post-info .author {
    display: inline-block;
    /* margin-right: 1rem; */
}

.post-info .separator {
    margin-right: 0.5rem;
    margin-left: 0.5rem;
}

.title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.post-content {
    line-height: 1.5;
    padding: 0;
}

.post-content h2 {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.post-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

blockquote {
    font-style: italic;
    font-size: 1.2em;
    color: #555;
    margin: 20px 40px;
    padding: 15px 20px;
    border-left: 5px solid #ccc;
    background-color: #f9f9f9;
}

blockquote:before {
    content: "“"; /* Add a decorative quote mark */
    font-size: 2em;
    color: #ccc;
    margin-right: 10px;
}

blockquote:after {
    content: "”"; /* Add a decorative closing quote */
    font-size: 2em;
    color: #ccc;
    margin-left: 10px;
}

blockquote cite {
    display: block;
    text-align: right;
    font-size: 0.9em;
    color: #888;
    margin-top: 10px;
}