header {
    margin-bottom: 1.9rem;
    text-align: center;
}

header h1 {
    margin-bottom: 1.2rem;
    color: #31312c;
}

.tag-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.tag-filter-btn {
    padding: 0.5rem 1rem;
    background-color: #e8e6d9;
    border: 1px solid #d4d2c4;
    border-radius: 1.2rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #31312c;
    transition: all 0.2s ease;
}

.tag-filter-btn:hover {
    background-color: #d4d2c4;
}

.tag-filter-btn.active {
    background-color: #31312c;
    color: #f9f7e7;
    border-color: #31312c;
}

.post-list {
    max-width: none;
}

.post-item {
    display: block;
    margin-bottom: 0;
    padding: 1rem;
    background-color: #f9f7e7;
    border-bottom: 1px solid #e8e6d9;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s ease;
}

.post-item:hover {
    background-color: #e8e6d9;
}

.post-item h2 {
    margin: 0 0 0.6rem 0;
    color: #31312c;
}

.post-item .meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.6rem;
}

.post-item .tags-container {
    margin-left: auto;
}
