.account-name.account-greeting {
  max-width: min(280px, calc(100vw - 190px));
  font-size: 17px;
  line-height: 1.28;
  white-space: normal;
}

.hero-copy[data-live="subtitle"] {
  display: none;
}

.community-composer .composer-actions small::after {
  content: ' · 30분 최대 3개';
}

.post-actions {
  grid-template-columns: repeat(3, max-content);
  align-items: center;
}

.comment-count {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 999px;
  padding: 0 11px;
  color: var(--muted);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 850;
}

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

.comment-item {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 9px;
  align-items: start;
  border: 1px solid rgba(229, 232, 235, 0.9);
  border-radius: 8px;
  padding: 10px;
  background: var(--surface-soft);
}

.avatar.mini.comment-avatar {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  font-size: 13px;
}

.comment-content {
  min-width: 0;
}

.comment-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: baseline;
}

.comment-meta strong {
  color: var(--text);
  font-size: 13px;
  line-height: 1.3;
}

.comment-meta span {
  color: var(--faint);
  font-size: 12px;
  line-height: 1.3;
}

.community-post .comment-content p {
  margin: 4px 0 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
}

.comment-delete {
  min-height: 30px;
  border-radius: 8px;
  padding: 0 10px;
  font-size: 12px;
}

.comment-empty {
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--muted);
  background: var(--surface-soft);
  font-size: 13px;
  font-weight: 750;
  text-align: center;
}

.comment-form {
  display: grid;
  grid-template-columns: 1fr 70px;
  gap: 8px;
  align-items: center;
}

.comment-form input {
  min-height: 44px;
  border-radius: 12px;
  background: var(--surface-soft);
  font-size: 14px;
}

.comment-form .secondary-btn {
  min-height: 44px;
  border-radius: 12px;
  padding: 0 12px;
  font-size: 14px;
}

@media (max-width: 420px) {
  .account-name.account-greeting {
    max-width: calc(100vw - 168px);
    font-size: 15px;
  }

  .post-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .post-actions .comment-count {
    justify-content: center;
  }

  .comment-item {
    grid-template-columns: 28px 1fr;
  }

  .comment-delete {
    grid-column: 2;
    justify-self: start;
  }
}
