.container {
    background: #FFF;
    margin-top: 1rem;
}

.grid-container {
    background-color: #FFF;
}

.archive-header {
    margin-bottom: 1.5rem;
    padding: 1rem;
}

.archive-title {
    margin: 0;
    font-size: 2rem;
    line-height: 1.2;
}

.posts-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.post-item {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem;
    background: #FFF;
    padding: 1rem;
    border-bottom: 1px solid #DDD;
}

.post-thumbnail {
    flex: 0 0 auto;
    margin-right: 1rem;
}

.post-thumbnail img {
    width: 128px;
    height: 72px;
    object-fit: cover;
}

.post-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-title {
    font-size: 1.5rem;
    margin: 0 0 0.25rem;
    line-height: 1.3;
}

.post-title a {
    text-decoration: none;
    color: #333;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-category {
    font-size: 0.875rem;
    font-weight: inherit;
    text-transform: inherit;
    background: #e40001;
    padding: 0.125rem 1.25rem;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
}

.post-date {
    font-size: 0.875rem;
    color: #666;
    display: inline-flex;
    align-items: center;
}

.pagination {
    margin-top: 2rem;
    text-align: center;
}

.pagination .nav-links {
    display: inline-flex;
    gap: 0.5rem;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #FFF;
    border: 1px solid #DDD;
    text-decoration: none;
    color: #333;
}

.pagination .prev,
.pagination .next {
    font-weight: bold;
}

.post-title a:hover {
    color: #e40001;
}

.pagination .page-numbers.current {
    background: #e40001;
    color: #FFF;
    border-color: #e40001;
}

.pagination .page-numbers:hover {
    background: #e40001;
    color: #FFF;
    border-color: #e40001;
}

.sidebar {
}

@media (max-width: 1000px) {
    .post-category {
        font-size: 0.75rem;
    }

    .post-date {
        font-size: 0.75rem;
    }
}