/* Pack 3.1: comments section on entry detail page */
.comments-section {
  margin: 3rem 0 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(124, 92, 230, 0.18);
}
.comments-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #e6e6f5;
  margin: 0 0 1.5rem;
  letter-spacing: 0.02em;
}
.comments-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.comment-card {
  background: rgba(15, 15, 30, 0.55);
  border: 1px solid rgba(124, 92, 230, 0.22);
  border-radius: 14px;
  padding: 0.95rem 1.05rem;
  transition: border-color 160ms ease, transform 160ms ease;
}
.comment-card:hover {
  border-color: rgba(124, 92, 230, 0.45);
  transform: translateY(-1px);
}
.comment-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
  flex-wrap: wrap;
}
.comment-author {
  font-weight: 600;
  color: #c8c8e0;
  font-size: 0.95rem;
}
.comment-date {
  font-size: 0.78rem;
  color: rgba(200, 200, 224, 0.5);
  font-variant-numeric: tabular-nums;
}
.comment-body {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #d9d9ee;
  word-wrap: break-word;
}
.comment-body .desc-link {
  color: #9b86ff;
  text-decoration: underline;
}
.comments-empty {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(15, 15, 30, 0.4);
  border: 1px dashed rgba(124, 92, 230, 0.25);
  border-radius: 14px;
}
.comments-empty-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  color: #d9d9ee;
  margin: 0 0 0.4rem;
}
.comments-empty-sub {
  color: rgba(200, 200, 224, 0.65);
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
}
