/* コメント */
.comment-list li {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.comment-list li:nth-child(even) {
  background-color: #f1f3f4;
}

.comment-notes,
.comment-notes-before,
.logged-in-as {
  display: none !important;
}

.comment-author {
  font-weight: 600;
  color: #374151;
  margin-bottom: 4px;
}

.comment-meta {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 8px;
}

.comment-content {
  color: #374151;
  line-height: 1.6;
}

.reply {
  margin-top: 8px;
}

.reply a {
  color: #3b82f6;
  text-decoration: none;
  font-size: 0.875rem;
}

.reply a:hover {
  text-decoration: underline;
}

/* ダークモード対応 */
@media (prefers-color-scheme: dark) {
  .comment-list li {
    background-color: #2d2d2d !important;
  }

  .comment-list li:nth-child(even) {
    background-color: #1a1a1a !important;
  }

  .comment-author {
    color: #e5e5e5 !important;
  }

  .comment-meta {
    color: #b3b3b3 !important;
  }

  .comment-content {
    color: #e5e5e5 !important;
  }

  .reply a {
    color: #60a5fa !important;
  }

  .reply a:hover {
    color: #93c5fd !important;
  }
}
