body {
    font-family: system-ui, sans-serif;
    max-width: 680px;
    margin: 40px auto;
    padding: 0 20px;
    line-height: 1.6;
    color: #333;
}
        
.meta { color: #666; font-size: 0.9rem; margin-top: -20px; margin-bottom: 8px; }


hr {
    border: none;
    margin: 2rem 0;
}

hr.symbol {
    border: none;
    border-top: 1px solid #e5e7eb;
    overflow: visible;
    text-align: center;
    height: 0;
    margin: 12px 0 0 0;
    padding: 0;         /* Removes any vertical padding */
    line-height: 0;     /* Prevents line-height box from expanding vertical boundaries */
}

hr.symbol::after {
    content: "🚲";
    background: #ffffff;
    padding: 0 12px;    /* Keeps horizontal spacing around the icon only */
    position: relative;
    top: -0.6em;        /* Pulls icon upward to center it precisely on the 0-height line */
    font-size: 1.2rem;
    line-height: 1;
    display: inline-block;
}

a { text-decoration: none; color: #0066cc; font-size: 1.1rem; }
a:hover { text-decoration: underline; }


.nav-list {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 3px;
    background-color: #f4f4f5; /* Subtle container background */
    border-radius: 12px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.nav-list li {
    margin: 0;
    padding: 0;
}

.nav-list a {
    display: block;
    padding: 8px 16px;
    color: #52525b;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover state */
.nav-list a:hover {
    color: #09090b;
    background-color: rgba(255, 255, 255, 0.7);
}

.post-list { list-style: none; padding: 0; }
.post-list li { margin-bottom: 10px; }
.post-list a { text-decoration: none; color: #0066cc; font-size: 1.1rem; }
.post-list a:hover { text-decoration: underline; }

.post-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 24px 0;
    border-radius: 8px;
}
