.tag-posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; max-width: 900px; margin: 0 auto; }
.tag-post-item { background: var(--color-bg-alt); border-radius: var(--radius-sm); padding: 8px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.tag-post-item .tag-post-thumbnail { max-height: 100px; overflow: hidden; border-radius: var(--radius-sm); margin-bottom: 8px; }
.tag-post-item .tag-post-thumbnail img { width: 100%; height: 100px; object-fit: cover; }
.tag-post-item .tag-post-title { font-size: 0.9em; font-weight: 600; text-decoration: none; color: var(--color-text); line-height: 1.3; }
.tag-post-item .tag-post-title:hover { color: var(--color-accent); }