﻿/* Comments */
.comments {
  margin-top: 2rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 24px rgba(10, 93, 120, 0.08);
}

.comments-title {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: var(--brand-deep);
}

.comment-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.comment-list .comment {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
}

.comment-list .comment-meta {
  font-size: 0.88rem;
  color: var(--muted);
}

.comment-list .comment-meta a {
  color: inherit;
}

.comment-list .comment-content {
  margin-top: 0.6rem;
}

.comment-navigation {
  margin: 1rem 0 0;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.comment-navigation .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  min-height: 2.2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  color: var(--brand-deep);
  font-weight: 700;
}

.comment-navigation .page-numbers.current {
  background: var(--brand);
  color: #fff;
  border-color: transparent;
}

.comment-respond {
  margin-top: 1.2rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
}

.comment-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
