/* topic_list.css — Topic list page unique styles */

.topic-list { max-width: 800px; margin: 20px auto; padding: 20px; }
.topic-list h1 { margin-top: 0; color: #333; }
.topic-card {
    border: 1px solid #ccc; border-radius: 4px; padding: 15px;
    margin-bottom: 15px; background: #f9f9f9; transition: box-shadow 0.2s;
}
.topic-card:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.topic-card h2 { margin: 0 0 10px 0; }
.topic-card h2 a { color: #417690; text-decoration: none; }
.topic-card h2 a:hover { text-decoration: underline; }
.topic-card .description { color: #666; margin-bottom: 10px; }
.topic-card .meta { font-size: 12px; color: #888; }