.comment-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin-bottom: 1rem;
  box-shadow: 0 4px 6px -1px rgba(194, 24, 91, 0.02), 0 2px 4px -1px rgba(194, 24, 91, 0.02);
}

.comment-avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}

.comment-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.comment-avatar .default-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 9px;
  background-color: #c2185b;
  color: #ffffff;
  box-sizing: border-box;
}

.comment-content {
  flex-grow: 1;
  min-width: 0;
}

.comment-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.comment-author {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #27272a;
}

.comment-author a {
  color: #c2185b;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s ease;
}

.comment-author a:hover {
  color: #880e4f;
  text-decoration: underline;
}

.comment-meta time {
  font-size: 0.8rem;
  color: #71717a;
}

.comment-body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #3f3f46;
  word-break: break-word;
}