#blog-filter-wrapper { max-width: 1200px; margin: 0 auto; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

/* Year Nav */
.year-nav-container { display: flex; align-items: center; justify-content: center; gap: 15px; margin-bottom: 25px; }
.year-list { display: flex; gap: 10px; }
.year-item { padding: 8px 16px; border: 1px solid #ddd; cursor: pointer; border-radius: 4px; transition: 0.3s; }
.year-item.active { background: #222; color: #fff; border-color: #222; font-weight: bold; }
.year-nav-btn { background: #f4f4f4; border: 1px solid #ddd; padding: 5px 12px; cursor: pointer; border-radius: 4px; }

/* Tabs */
.tab-container { display: flex; justify-content: center; border-bottom: 2px solid #eee; margin-bottom: 40px; }
.tab-trigger { background: none; border: none; padding: 15px 25px; cursor: pointer; font-size: 16px; font-weight: 600; color: #666; position: relative; margin-left: 10px;}
.tab-trigger.active { color: #0073aa; }
.tab-trigger.active::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 3px; background: #0073aa; }

/* Grid */
#filter-results-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; min-height: 200px; }
.filter-post-card { background: #fff; border: 1px solid #eee; border-radius: 12px; overflow: hidden; transition: 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.filter-post-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }

/* Thumbnail */
.card-thumb { width: 100%; height: 200px; background: #f9f9f9; overflow: hidden; }
.card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.no-img { height: 100%; display: flex; align-items: center; justify-content: center; color: #aaa; background: #eee; }

/* Card Content */
.card-body { padding: 20px!important; }
.post-date { font-size: 12px; color: #999; text-transform: uppercase; margin-bottom: 8px; display: block; }
.card-body h3 { margin: 0 0 12px; font-size: 18px; line-height: 1.4; color: #333; }
.card-body p { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 20px; }
.read-more { color: #0073aa; text-decoration: none; font-weight: bold; font-size: 14px; }