/* なんJショートニュース風 — thread.css */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: Helvetica, Verdana, "Hiragino Sans", "Meiryo", sans-serif;
  background: #f5f2e8;
  color: #333;
  font-size: 14px;
  line-height: 1.7;
}
.thread-header {
  background: linear-gradient(to bottom, #ffce00 0%, #ffc000 100%);
  border-bottom: 3px solid #ffd900;
  padding: 12px 16px;
}
.thread-header a { color: #555; font-size: 0.85rem; text-decoration: none; }
.thread-header a:hover { text-decoration: underline; }
.thread-header h1 {
  margin-top: 6px; font-size: 1.05rem; line-height: 1.5; color: #333;
  border-left: 5px solid #333; padding-left: 8px;
}
.thread-tags { margin: 8px 0 0; }
.thread-tag {
  display: inline-block; padding: 2px 8px;
  background: rgba(255,255,255,0.5); color: #555;
  border: 1px solid #e0a000; border-radius: 3px;
  font-size: 0.78rem; text-decoration: none; margin-right: 4px;
}
.thread-tag:hover { background: rgba(255,255,255,0.85); }
.thread-body { max-width: 900px; margin: 0 auto; padding: 12px 8px; }
.post-container {
  background: #fff; border: 1px solid #e0e0d8;
  border-left: 3px solid #ffc000;
  margin-bottom: 3px; padding: 6px 12px;
}
.post-container:nth-child(even) { background: #fffdf5; }
.id-line { font-size: 0.78rem; color: #888; margin-bottom: 2px; }
.user-name { color: #996600; }
.post-content { font-size: 0.92rem; white-space: pre-wrap; word-break: break-word; }
.thread-footer { text-align: center; padding: 24px; color: #888; font-size: 0.8rem; }