/* 技术博客样式 */

.section-description {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border-left: 4px solid #667eea;
}

.taxonomy-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.taxonomy-item h2 {
  font-size: 1.3rem;
  margin-bottom: 0;
}

.taxonomy-item h2 a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.taxonomy-item h2 a:hover {
  color: #667eea;
}

.taxonomy-item .count {
  font-size: 0.9rem;
  color: #999;
  font-weight: normal;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }
  
  header h1 {
    font-size: 1.8rem;
  }
  
  nav ul {
    gap: 1rem;
  }
}