/* Insight nested comments — SaaS-style UI */
.ic-root {
  --ic-accent: #42d1b3;
  --ic-accent-dim: rgba(66, 209, 179, 0.22);
  --ic-surface: linear-gradient(165deg, rgba(3, 14, 30, 0.98) 0%, rgba(5, 26, 48, 0.94) 100%);
  --ic-card: linear-gradient(135deg, rgba(3, 16, 36, 0.92) 0%, rgba(5, 26, 48, 0.82) 100%);
  --ic-text: rgba(226, 252, 247, 0.92);
  --ic-muted: rgba(142, 199, 214, 0.72);
  --ic-radius: 14px;
  font-family: Cabin, system-ui, sans-serif;
}

/* —— Thread shell & composer —— */
.ic-comments-shell {
  padding: 4px 0 8px;
}

.ic-thread-header {
  margin-bottom: 22px;
}

.ic-root .ic-thread-header .comments-heading {
  margin-bottom: 8px;
  padding-bottom: 0;
  border-bottom: none;
  font-size: 1.45rem;
}

.ic-thread-sub {
  margin: 0;
  max-width: 52ch;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ic-muted);
}

.ic-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ic-composer-card {
  margin-bottom: 28px;
  padding: 4px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(66, 209, 179, 0.18) 0%,
    rgba(56, 189, 248, 0.08) 50%,
    rgba(66, 209, 179, 0.12) 100%
  );
  box-shadow: 0 12px 40px rgba(2, 12, 24, 0.35);
}

.ic-composer-inner.comment-form-wrap {
  margin-bottom: 0;
  align-items: flex-start;
}

.ic-composer-avatar {
  width: 48px;
  height: 48px;
  margin-top: 4px;
  border: 2px solid rgba(66, 209, 179, 0.35);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.ic-root .ic-composer-inner .comment-form {
  border-radius: 14px;
  border: 1px solid rgba(104, 198, 220, 0.22);
  background: rgba(4, 18, 36, 0.88);
}

.ic-root .ic-thread-list.comments-list {
  gap: 16px;
}

/* —— Comment cards —— */
.ic-root .ic-comment-card.comment {
  position: relative;
  padding: 18px 18px 16px;
  border-radius: 16px;
  border: 1px solid rgba(104, 198, 220, 0.18);
  background: linear-gradient(160deg, rgba(5, 28, 48, 0.92) 0%, rgba(4, 20, 38, 0.78) 100%);
  box-shadow: 0 8px 28px rgba(2, 10, 22, 0.28);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.ic-root .ic-comment-card.comment:hover {
  border-color: rgba(66, 209, 179, 0.35);
  box-shadow: 0 12px 36px rgba(2, 14, 28, 0.38);
}

.ic-root .ic-comment-card.comment.reply {
  margin-top: 12px;
  margin-left: 0;
  border-left: 3px solid rgba(66, 209, 179, 0.55);
  padding-left: 20px;
  background: linear-gradient(90deg, rgba(66, 209, 179, 0.06) 0%, rgba(5, 28, 48, 0.88) 28%);
}

.ic-root .ic-comment-card .comment-avatar {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(66, 209, 179, 0.28);
}

.ic-root .ic-comment-card .comment-header {
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.ic-root .ic-comment-card .comment-author {
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.ic-root .ic-comment-card .comment-time::before {
  content: '·';
  margin: 0 0.35em;
  color: rgba(142, 199, 214, 0.45);
}

.ic-root .ic-comment-card .comment-text {
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 12px;
}

/* Toolbar: reactions + actions */
.ic-comment-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 4px;
}

.ic-comment-toolbar__end {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: auto;
}

.ic-reactions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ic-reaction {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(103, 188, 211, 0.22);
  background: rgba(8, 32, 52, 0.55);
  color: rgba(200, 235, 228, 0.88);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.15s ease;
}

.ic-reaction:hover {
  background: rgba(66, 209, 179, 0.12);
  border-color: rgba(66, 209, 179, 0.4);
  color: #c6fff0;
}

.ic-reaction:active {
  transform: scale(0.97);
}

.ic-reaction--static {
  cursor: default;
  opacity: 0.85;
}

.ic-reaction--static:hover {
  transform: none;
  background: rgba(8, 32, 52, 0.55);
  border-color: rgba(103, 188, 211, 0.22);
}

.ic-reaction-count {
  font-variant-numeric: tabular-nums;
  min-width: 1ch;
}

.ic-reaction--like.ic-liked {
  background: rgba(66, 209, 179, 0.22);
  border-color: rgba(66, 209, 179, 0.55);
  color: #b6ffe8;
}

.ic-reaction--dislike.ic-disliked {
  background: rgba(248, 113, 113, 0.14);
  border-color: rgba(248, 113, 113, 0.45);
  color: #fecaca;
}

.ic-root .ic-comment-toolbar .ic-edit,
.ic-root .ic-comment-toolbar .ic-reply {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(103, 188, 211, 0.2);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 600;
}

.ic-root .ic-comment-toolbar .ic-edit:hover,
.ic-root .ic-comment-toolbar .ic-reply:hover {
  background: rgba(66, 209, 179, 0.12);
  border-color: rgba(66, 209, 179, 0.4);
}

.ic-root .comment-children {
  margin-top: 4px;
  padding-left: 0;
}

.ic-root .comment-children .comment.reply {
  margin-top: 12px;
}

.ic-root .comment.reply::before {
  display: none;
  content: none;
}

.ic-root .ic-own-comment .comment-actions,
.ic-root .ic-own-comment .ic-comment-toolbar {
  gap: 10px;
}

.ic-root .ic-load-more-btn.load-more-btn {
  margin: 24px auto 32px;
  border-radius: 999px;
  padding: 12px 28px;
  border: 1px solid rgba(66, 209, 179, 0.35);
  background: rgba(4, 22, 40, 0.5);
  color: #9cffd2;
  font-weight: 700;
}

.ic-root .ic-load-more-btn.load-more-btn:hover {
  background: rgba(66, 209, 179, 0.14);
  border-color: rgba(66, 209, 179, 0.55);
}

/* Classic inline form — inherits insights-details-source.css */
.ic-root .comment-form-wrap:not(.ic-composer-inner):not(.ic-inline-reply-form) {
  margin-bottom: 36px;
}

.ic-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--ic-accent-dim);
}

.ic-header h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: #e8fcf7;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ic-header h3 i { color: #7be8d8; }

.ic-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: none;
  border-radius: 10px;
  background: var(--ic-accent);
  color: #042018;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.ic-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(66, 209, 179, 0.35); }
.ic-btn-primary:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

.ic-compose-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  margin-bottom: 24px;
  border-radius: var(--ic-radius);
  border: 1px solid var(--ic-accent-dim);
  background: rgba(4, 20, 38, 0.65);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.ic-compose-bar:hover {
  border-color: rgba(66, 209, 179, 0.45);
  background: rgba(6, 32, 54, 0.75);
}

.ic-compose-bar img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--ic-accent-dim);
  object-fit: cover;
}

.ic-compose-placeholder { color: var(--ic-muted); font-size: 0.95rem; flex: 1; }

.ic-root .load-more-btn {
  margin: 28px auto 36px;
}

.ic-root .load-more-btn[hidden] {
  display: none !important;
}

.ic-root .load-more-btn.load-more-btn--less {
  border-style: solid;
}

.ic-root .ic-edit-form {
  margin: 8px 0 12px;
}

.ic-root .ic-edit-textarea {
  width: 100%;
  min-height: 88px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(66, 209, 179, 0.35);
  background: rgba(4, 20, 38, 0.85);
  color: rgba(226, 252, 247, 0.95);
  font-family: inherit;
  font-size: 0.9rem;
  line-height: 1.6;
  resize: vertical;
}

.ic-root .ic-edit-textarea:focus {
  outline: none;
  border-color: rgba(66, 209, 179, 0.65);
  box-shadow: 0 0 0 2px rgba(66, 209, 179, 0.15);
}

.ic-root .ic-edit-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}

.ic-root .ic-edit-cancel {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid rgba(104, 198, 220, 0.35);
  background: transparent;
  color: rgba(200, 235, 228, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.ic-root .ic-edit-cancel:hover {
  background: rgba(66, 209, 179, 0.1);
}

.ic-root .ic-edit-save {
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

.ic-root .comment.ic-editing {
  border-color: rgba(66, 209, 179, 0.45);
}

.ic-root .comment.ic-editing .comment-text,
.ic-root .comment.ic-editing .comment-actions {
  display: none !important;
}

.ic-root .comment-actions .ic-edit {
  padding: 6px 10px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: rgba(200, 235, 228, 0.88);
  font-size: 0.82rem;
  cursor: pointer;
}

.ic-root .comment-actions .ic-edit:hover {
  background: rgba(66, 209, 179, 0.12);
  color: #7be8d8;
}

.ic-inline-reply {
  margin-top: 14px;
  padding-top: 4px;
}

.ic-inline-reply-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 10px;
  font-size: 0.82rem;
  color: rgba(142, 199, 214, 0.88);
}

.ic-inline-reply-head strong {
  color: #dffbf4;
}

.ic-inline-reply-cancel {
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(103, 188, 211, 0.28);
  background: transparent;
  color: rgba(146, 201, 214, 0.9);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.ic-inline-reply-cancel:hover {
  background: rgba(66, 209, 179, 0.12);
  color: #7fe8d4;
}

.ic-inline-reply-form.comment-form-wrap {
  margin-bottom: 0;
}

.ic-inline-reply .comment-form textarea {
  min-height: 72px;
}

.ic-reply-banner {
  display: none;
  align-items: center;
  gap: 10px;
  margin: -12px 0 16px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(66, 209, 179, 0.1);
  border: 1px solid rgba(66, 209, 179, 0.25);
  color: rgba(200, 235, 228, 0.9);
  font-size: 0.88rem;
}

.ic-reply-banner.ic-reply-banner--visible {
  display: flex;
}

.ic-reply-banner[hidden] {
  display: none !important;
}
.ic-cancel-reply {
  margin-left: auto;
  padding: 4px 10px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: #7be8d8;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}
.ic-cancel-reply:hover { background: rgba(66, 209, 179, 0.15); }

.ic-list { display: flex; flex-direction: column; gap: 16px; }

.ic-comment {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--ic-radius);
  border: 1px solid rgba(96, 185, 212, 0.18);
  background: var(--ic-card);
  transition: border-color 0.2s, opacity 0.25s;
}

.ic-comment.ic-pending { opacity: 0.65; }
.ic-comment.ic-error { border-color: rgba(248, 113, 113, 0.5); }

.ic-comment img.ic-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--ic-accent-dim);
  flex-shrink: 0;
  object-fit: cover;
}

.ic-comment-body { flex: 1; min-width: 0; }

.ic-comment-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.ic-author { font-weight: 700; color: #dffbf4; font-size: 0.9rem; }
.ic-time { font-size: 0.73rem; color: var(--ic-muted); }
.ic-badge-pending { font-size: 0.65rem; padding: 2px 8px; border-radius: 999px; background: rgba(251, 191, 36, 0.2); color: #fcd34d; }

.ic-body {
  font-size: 0.9rem;
  line-height: 1.72;
  color: var(--ic-text);
  margin-bottom: 10px;
  word-break: break-word;
}

.ic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ic-actions button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--ic-muted);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.ic-actions button:hover {
  color: #7be8d8;
  background: rgba(66, 209, 179, 0.1);
  border-color: rgba(66, 209, 179, 0.2);
}

.ic-replies {
  margin-top: 12px;
  margin-left: 12px;
  padding-left: 16px;
  border-left: 2px solid rgba(66, 209, 179, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ic-load-replies { display: none !important; }

.ic-load-more,
.ic-load-replies {
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  border-radius: 10px;
  border: 1px dashed var(--ic-accent-dim);
  background: transparent;
  color: #7be8d8;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.ic-load-more:hover,
.ic-load-replies:hover {
  background: rgba(66, 209, 179, 0.08);
  border-color: rgba(66, 209, 179, 0.45);
}

.ic-load-more:disabled,
.ic-load-replies:disabled { opacity: 0.5; cursor: wait; }

.ic-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(66, 209, 179, 0.25);
  border-top-color: var(--ic-accent);
  border-radius: 50%;
  animation: ic-spin 0.7s linear infinite;
}

@keyframes ic-spin { to { transform: rotate(360deg); } }

.ic-empty, .ic-error-banner {
  text-align: center;
  padding: 28px 16px;
  color: var(--ic-muted);
  font-size: 0.92rem;
}

.ic-error-banner {
  color: #fca5a5;
  background: rgba(127, 29, 29, 0.25);
  border-radius: var(--ic-radius);
  margin-bottom: 16px;
}

/* Identity modal */
.ic-modal-overlay {
  --ic-accent: #42d1b3;
  --ic-accent-dim: rgba(66, 209, 179, 0.22);
  --ic-muted: rgba(142, 199, 214, 0.72);
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(2, 8, 18, 0.72);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s, visibility 0.28s;
}

.ic-modal-overlay.ic-open {
  opacity: 1;
  visibility: visible;
}

.ic-modal {
  width: min(100%, 420px);
  padding: 28px 24px 24px;
  border-radius: 20px;
  border: 1px solid rgba(66, 209, 179, 0.28);
  background: linear-gradient(160deg, rgba(4, 14, 28, 0.98) 0%, rgba(8, 40, 62, 0.96) 100%);
  box-shadow: 0 24px 80px rgba(1, 5, 12, 0.65);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.ic-modal-overlay.ic-open .ic-modal {
  transform: translateY(0) scale(1);
}

.ic-modal h4 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  color: #e8fcf7;
}

.ic-modal p.ic-modal-sub {
  margin: 0 0 20px;
  font-size: 0.88rem;
  color: var(--ic-muted);
  line-height: 1.5;
}

.ic-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #a8d4c8;
  cursor: pointer;
}

.ic-modal { position: relative; }

.ic-avatar-picker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.ic-avatar-picker img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 3px solid rgba(66, 209, 179, 0.45);
  background: rgba(4, 20, 38, 0.8);
}

.ic-btn-ghost {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--ic-accent-dim);
  background: transparent;
  color: #7be8d8;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.ic-field { margin-bottom: 16px; }

.ic-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #a8d4c8;
}

.ic-field input,
.ic-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(96, 185, 212, 0.25);
  background: rgba(4, 18, 32, 0.85);
  color: #e8fcf7;
  font-family: inherit;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ic-field input:focus,
.ic-field textarea:focus {
  border-color: rgba(66, 209, 179, 0.6);
  box-shadow: 0 0 0 3px rgba(66, 209, 179, 0.12);
}

.ic-field textarea { min-height: 100px; resize: vertical; }

.ic-field-error {
  margin-top: 6px;
  font-size: 0.78rem;
  color: #f87171;
}

.ic-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.ic-modal-actions .ic-btn-primary {
  flex: 1;
  justify-content: center;
  padding: 12px 20px;
  font-size: 0.92rem;
  background: linear-gradient(135deg, #4de0c4 0%, #42d1b3 50%, #2ab89d 100%);
  color: #041a14;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 20px rgba(66, 209, 179, 0.45);
}

.ic-modal-actions .ic-btn-primary:hover {
  background: linear-gradient(135deg, #5ae8cc 0%, #48dbb8 50%, #32c4a8 100%);
  color: #021210;
  box-shadow: 0 8px 28px rgba(66, 209, 179, 0.55);
}

.ic-modal-actions .ic-btn-cancel {
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(96, 185, 212, 0.35);
  background: rgba(4, 20, 38, 0.6);
  color: #c8ebe4;
  font-weight: 600;
  cursor: pointer;
}

.ic-modal-actions .ic-btn-cancel:hover {
  background: rgba(6, 32, 54, 0.85);
  border-color: rgba(66, 209, 179, 0.45);
  color: #e8fcf7;
}

.ic-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* Notice popup (e.g. already liked) */
.ic-notice-overlay {
  --ic-accent: #42d1b3;
  position: fixed;
  inset: 0;
  z-index: 12050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(2, 8, 18, 0.72);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.ic-notice-overlay[hidden] {
  display: none !important;
}

.ic-notice-overlay.ic-open {
  opacity: 1;
  visibility: visible;
}

.ic-notice-modal {
  position: relative;
  width: min(100%, 380px);
  padding: 28px 24px 22px;
  border-radius: 20px;
  border: 1px solid rgba(66, 209, 179, 0.28);
  background: linear-gradient(160deg, rgba(4, 14, 28, 0.98) 0%, rgba(8, 40, 62, 0.96) 100%);
  box-shadow: 0 24px 80px rgba(1, 5, 12, 0.65);
  text-align: center;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.ic-notice-overlay.ic-open .ic-notice-modal {
  transform: translateY(0) scale(1);
}

.ic-notice-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: rgba(200, 235, 228, 0.75);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.ic-notice-close:hover {
  background: rgba(66, 209, 179, 0.12);
  color: #e8fcf7;
}

.ic-notice-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(66, 209, 179, 0.14);
  border: 1px solid rgba(66, 209, 179, 0.35);
  color: #7be8d8;
  font-size: 1.5rem;
}

.ic-notice-modal.ic-notice--liked .ic-notice-icon-wrap {
  background: rgba(66, 209, 179, 0.2);
  color: #9cffd2;
}

.ic-notice-modal h4 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #e8fcf7;
}

.ic-notice-modal p {
  margin: 0 0 22px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(200, 235, 228, 0.88);
}

.ic-notice-modal .ic-notice-ok {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 18px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #42d1b3 0%, #2eb89a 100%);
  color: #042018;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.ic-notice-ok:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(66, 209, 179, 0.35);
}

@media (max-width: 768px) {
  .ic-header { flex-direction: column; align-items: stretch; }
  .ic-replies { margin-left: 4px; padding-left: 12px; }
  .ic-modal { padding: 24px 18px 18px; }
}
