/* ── COMMENTS ── */
.comments { margin-bottom: 48px; }
.comments-title {
  font-size: 20px;
  font-weight: 600;
  color: #111;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}
.comment-textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  color: #374151;
  resize: vertical;
  min-height: 80px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.15s;
}
.comment-textarea:focus { border-color: #9ca3af; }
.comment-textarea::placeholder { color: #9ca3af; }
.comment-form-actions {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 28px;
}
.btn-cancel {
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 100px;
  padding: 9px 20px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #374151;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-cancel:hover { background: #f3f4f6; }
.btn-submit {
  background: #111;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 9px 22px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-submit:hover { background: #333; }

.comment-list { display: flex; flex-direction: column; gap: 0; }
.comment {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid #f3f4f6;
}
.comment:last-child { border-bottom: none; }
.comment-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  margin-top: 2px;
}
.comment-body {
  flex: 1;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.comment-top {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.comment-author { font-size: 14px; font-weight: 600; color: #374151; font-family: 'Inter', sans-serif; }
.comment-dot { color: #d1d5db; font-size: 13px; }
.comment-date { font-size: 13px; color: #9ca3af; font-family: 'Inter', sans-serif; }
.comment-more {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  color: #9ca3af;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 2px 4px;
  border-radius: 6px;
  transition: background 0.15s;
}
.comment-more:hover { background: #f3f4f6; color: #374151; }
.comment-text {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}
.comment-foot {
  display: flex;
  align-items: center;
  gap: 10px;
}
.comment-like {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 28px;
  padding: 0 10px 0 8px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.comment-like--gray { background: #f3f4f6; color: #6b7280; }
.comment-like--gray:hover { background: #fff1f2; color: #e11d48; }
.comment-like--red { background: #fff1f2; color: #ef4444; }
.comment-like--red:hover { background: #fee2e2; }
.comment-reply {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #6b7280;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.comment-reply:hover { background: #f3f4f6; color: #111; }

.btn-view-comments {
  width: 100%;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.15s;
}
.btn-view-comments:hover { background: #222; }
