/* なんJショートニュース風 — index.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;
}
.site-header {
  background: linear-gradient(to bottom, #ffce00 0%, #ffc000 100%);
  border-bottom: 2px solid #ffd900;
  padding: 14px 20px;
}
.site-header h1 { font-size: 22px; font-weight: bold; color: #333; }
.site-header p  { font-size: 12px; color: #666; margin-top: 2px; }
.container { max-width: 900px; margin: 0 auto; padding: 14px 10px; }
.updated { text-align: right; font-size: 0.78rem; color: #888; padding: 4px 0 8px; }
.thread-list { list-style: none; background: #fff; border: 1px solid #ddd; border-radius: 2px; }
.thread-item { border-bottom: 1px dashed #c2c2c2; }
.thread-item:last-child { border-bottom: none; }
.thread-item > a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px; text-decoration: none; color: #333;
}
.thread-item > a:hover { background: #fff9dd; }
.thread-title {
  flex: 1; font-size: 14px; font-weight: bold; line-height: 1.5;
  border-left: 4px solid #ffc000; padding-left: 8px;
}
.thread-date { font-size: 11px; color: #888; white-space: nowrap; margin-left: 10px; }
.thread-tags { padding: 2px 14px 8px; }
.thread-tag {
  display: inline-block; padding: 2px 8px;
  background: #fff2c6; color: #555; border: 1px solid #ffc100;
  border-radius: 3px; font-size: 0.78rem; text-decoration: none;
  margin-right: 4px; margin-bottom: 2px;
}
.thread-tag:hover { background: #ffc000; color: #333; }
.tag-cloud { margin-top: 24px; border-top: 3px solid #ffc000; padding-top: 14px; }
.tag-cloud-label {
  font-size: 14px; font-weight: bold; color: #333;
  border-left: 5px solid #333; padding-left: 8px; margin-bottom: 10px;
}
.tag-cloud-item {
  display: inline-block; padding: 3px 10px;
  background: #fff; border: 1px solid #ddd; border-radius: 3px;
  font-size: 0.82rem; text-decoration: none; color: #333; margin: 2px;
}
.tag-cloud-item:hover { background: #fff2c6; border-color: #ffc100; }
.tag-count { font-size: 0.75rem; color: #888; margin-left: 3px; }
.no-articles { padding: 24px; text-align: center; color: #888; }