/* comments.css — 댓글 영역 스타일 */

.pk-comments-shell {
  background: var(--pk-surface);
  border-radius: var(--pk-radius-lg);
  box-shadow: var(--pk-shadow-soft);
  margin-top: 18px;
  padding: 16px 16px 20px;
}

/* 댓글 헤더 */
.pk-comments-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.pk-comments-title {
  font-size: 16px;
  font-weight: 600;
}

/* 댓글 입력 */
.pk-comment-input { margin-bottom: 12px; }

.pk-comment-textarea {
  width: 100%;
  min-height: 70px;
  border-radius: 12px;
  border: 1px solid var(--pk-border-subtle);
  padding: 8px 10px;
  font-family: inherit;
  font-size: 13px;
  resize: vertical;
}

.pk-comment-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 6px;
  gap: 8px;
}

.pk-comment-submit {
  border-radius: 999px;
  border: none;
  background: var(--pk-accent);
  color: #ffffff;
  font-size: 12px;
  padding: 6px 14px;
  cursor: pointer;
}

/* 댓글 리스트 */
.pk-comment-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pk-comment-item { font-size: 16px; }

.pk-comment-bubble {
  border-radius: 14px;
  padding: 1rem;
  background: var(--pk-surface-soft);
}

.pk-comment-head {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 4px;
}

.pk-comment-author { font-weight: 600; }

.pk-comment-meta {
  font-size: 11px;
  color: var(--pk-text-sub);
}

.pk-comment-body { font-size: 14px; }

@media (max-width: 640px) {
  .pk-comments-shell {
    border-radius: 14px;
    padding-inline: 12px;
  }
}
