body {
    font-family: Georgia, 'Times New Roman', serif;
    background-color: #faf8f3;
    line-height: 1.4;
    margin: 40px;
}

pre {
    font-family: 'Courier New', monospace;
    background-color: #f0ede5;
    padding: 10px;
    overflow-x: auto;
}

.article-image {
    display: block;
    width: 100%;
    max-width: 760px;
    height: auto;
    margin: 24px 0;
}

.recent-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
}

.recent-posts-grid h3 {
    margin-top: 0;
}

@media (max-width: 640px) {
    .recent-posts-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
