.category-container {
    max-width: 1200px;
    margin: 60px auto 0 auto;
    padding: 0 16px 40px 16px;
}
.category-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 60px;
    color: #222;
    text-align: center;
}
.category-desc {
    color: #888;
    margin-bottom: 24px;
    font-size: 15px;
    text-align: center;
}
.category-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 28px;
    margin-bottom: 36px;
}
.category-post-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s;
}
.category-post-card:hover {
    transform: translateY(-4px) scale(1.02);
}
.category-post-thumbnail {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}
.category-post-thumbnail img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
}
.category-post-content {
    padding: 18px 18px 14px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.category-post-title {
    font-size: 18px;
    margin: 0 0 10px 0;
    line-height: 1.4;
}
.category-post-title a {
    color: #222;
    text-decoration: none;
}
.category-post-title a:hover {
    color: #2563eb;
}
.category-post-excerpt {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.6;
    flex: 1;
}
.category-post-meta {
    font-size: 13px;
    color: #888;
    margin-top: auto;
}
.category-post-date i {
    margin-right: 5px;
}
.category-pagination {
    text-align: center;
    margin: 32px 0 0 0;
}
.category-pagination .page-numbers {
    display: inline-block;
    margin: 0 4px;
    padding: 6px 14px;
    border-radius: 6px;
    background: #f3f6fa;
    color: #2563eb;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.category-pagination .page-numbers.current,
.category-pagination .page-numbers:hover {
    background: #2563eb;
    color: #fff;
}
.no-posts {
    color: #aaa;
    text-align: center;
    font-size: 16px;
    padding: 40px 0;
}
@media (max-width: 800px) {
    .category-list {
        grid-template-columns: 1fr;
    }
} 