main {
    max-width: 860px;
    padding: 2rem;
    margin: 0 auto;

    h1 {
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #9c8e82;
        margin-bottom: 2rem;
    }

    .blog-entry {
        padding: 1.5rem 0;
        border-top: 1px solid #d4cdc7;
        display: flex;
        flex-direction: column;
        gap: 0.4rem;

        .blog-title {
            font-size: 0.95rem;
            color: #3a2f22;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .blog-title:hover {
            color: #5c4f3d;
        }

        .blog-date {
            font-size: 0.75rem;
            color: #9c8e82;
            font-style: italic;
        }

        .blog-excerpt {
            font-size: 0.85rem;
            color: #5c4f3d;
            line-height: 1.8;
            margin: 0;
        }
    }
}