/* ===================== ARTICLE PAGE ===================== */

/* Key Takeaways callout */
.key-takeaways {
  background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
  border-radius: 16px; padding: 24px 28px;
  margin-bottom: 32px; position: relative;
  border-left: 4px solid var(--amber);
  box-shadow: 0 2px 12px rgba(245,158,11,0.1);
}
.kt-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.kt-icon { font-size: 22px; }
.kt-title {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 16px; color: var(--ink);
  letter-spacing: -0.01em;
}
.kt-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.kt-item {
  font-size: 14.5px; color: #78350F; line-height: 1.6;
  padding-left: 26px; position: relative;
}
.kt-item::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--amber); font-weight: 800; font-size: 14px;
}

/* Reading progress bar */
.reading-progress {
  position: fixed; top: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--cat1), var(--teal));
  z-index: 1000; transition: width 0.1s linear;
}

/* Table of Contents */
.toc-card {
  background: white; border-radius: 16px;
  padding: 22px; box-shadow: 0 1px 12px rgba(49,46,129,0.07);
}

.toc-header {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Syne', 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 12.5px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray, #6B7280); margin-bottom: 16px;
}

.toc-bar {
  display: block; width: 3px; height: 16px;
  border-radius: 2px; background: var(--indigo, #312E81);
  flex-shrink: 0;
}

.toc-list { display: flex; flex-direction: column; }

.toc-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; cursor: pointer;
  border-bottom: 1px solid var(--light, #F3F4F6);
  text-decoration: none; transition: all 0.15s;
  font-size: 13.5px; color: var(--gray, #6B7280);
  font-weight: 500; line-height: 1.4;
}
.toc-item:last-child { border-bottom: none; }
.toc-item:hover { color: var(--indigo, #312E81); }
.toc-item.active { color: var(--indigo, #312E81); font-weight: 700; }

.toc-num {
  font-family: 'Syne', 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 13px;
  color: var(--indigo, #312E81); opacity: 0.4;
  min-width: 20px; flex-shrink: 0;
}
.toc-item.active .toc-num { opacity: 1; }

/* Page layout */
.article-page-layout {
  max-width: 1200px; margin: 0 auto;
  padding: 24px 32px 0;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

/* Article main */
.article-main { min-width: 0; }

.article-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(124,58,237,0.1);
  color: var(--cat1);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  cursor: pointer;
  transition: background 0.15s;
}

.article-cat-badge:hover { background: rgba(124,58,237,0.16); }

.article-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.article-deck {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--gray);
  line-height: 1.55;
  margin-bottom: 24px;
  border-left: 3px solid var(--cat1);
  padding-left: 20px;
}

.article-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--light);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.article-author-pic {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cat1), var(--indigo2));
  display: flex; align-items: center;
  justify-content: center; font-size: 16px;
  flex-shrink: 0;
}

.article-author-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}

.article-date { font-size: 12.5px; color: var(--gray2); }

.meta-divider { width: 1px; height: 32px; background: var(--light); }

.meta-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 12.5px; color: var(--gray);
}

.article-hero-img {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 36px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-hero-emoji {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 120px; opacity: 0.18; user-select: none;
}

.article-hero-caption {
  margin-top: -24px;
  margin-bottom: 32px;
  font-size: 12px;
  color: var(--gray2);
  text-align: center;
  font-style: italic;
}

/* Article body typography */
.article-body {
  font-size: 17px;
  line-height: 1.85;
  color: #1F2937;
}

.article-body p { margin-bottom: 24px; }

.article-body h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--ink);
  margin: 40px 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.article-body h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  margin: 32px 0 12px;
}

.article-body ul, .article-body ol {
  margin: 12px 0 22px 24px;
}

.article-body li { margin-bottom: 8px; }

.article-body blockquote,
.pull-quote {
  border-left: 4px solid var(--cat1);
  padding: 28px 32px;
  margin: 36px 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.06), rgba(13,148,136,0.04));
  border-radius: 16px;
  position: relative;
}

.article-body blockquote::before,
.pull-quote::before {
  content: '"';
  position: absolute; top: 10px; left: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 72px; color: var(--cat1);
  opacity: 0.15; line-height: 1;
}

.article-body blockquote p,
.pull-quote-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 21px;
  color: var(--indigo);
  line-height: 1.55;
  padding-left: 8px;
  margin-bottom: 0;
}

.pull-quote-attr {
  font-size: 12.5px;
  color: var(--gray2);
  margin-top: 12px;
  font-style: normal;
  padding-left: 8px;
}

/* Key takeaway box */
.key-box {
  background: var(--indigo);
  color: white;
  border-radius: 16px;
  padding: 24px 28px;
  margin: 32px 0;
}

.key-box-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal2);
  margin-bottom: 12px;
}

.key-box-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

/* Numbered list items in article */
.article-number-item {
  background: white;
  border-radius: 16px;
  padding: 22px 24px;
  margin-bottom: 16px;
  border-left: 4px solid var(--cat1);
  box-shadow: 0 1px 12px rgba(49,46,129,0.06);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.item-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--cat1);
  opacity: 0.35;
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}

.item-content { flex: 1; }

.item-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16.5px;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.3;
}

.item-desc {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
  margin: 0;
}

.article-number-badge {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: white;
  flex-shrink: 0;
}

.article-number-content { flex: 1; }

.article-number-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 6px;
}

.article-number-text {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.65;
}

/* In-article ad placeholder */
.ad-placeholder {
  background: var(--light);
  border-radius: 12px;
  padding: 20px;
  margin: 32px 0;
  text-align: center;
  border: 1.5px dashed #D1D5DB;
}

.ad-placeholder-text {
  font-size: 11px;
  color: var(--gray2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
}

.ad-placeholder-size {
  font-size: 12px;
  color: #C4C4C4;
  margin-top: 4px;
}

/* Inline newsletter CTA */
.inline-newsletter {
  background: linear-gradient(135deg, #1A1744, #312E81);
  border-radius: 16px;
  padding: 28px 32px;
  margin: 36px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.inline-newsletter::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at right, rgba(13,148,136,0.2), transparent 60%);
}

.inline-newsletter-icon {
  font-size: 36px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.inline-newsletter-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.inline-newsletter-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: white;
  margin-bottom: 4px;
}

.inline-newsletter-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.inline-newsletter-btn {
  background: var(--amber);
  color: var(--ink);
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  border: none;
  text-decoration: none;
}

/* Tags section */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 40px 0 32px;
  padding-top: 28px;
  border-top: 1px solid var(--light);
}

.article-tag {
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--light);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--gray);
  transition: all 0.15s;
  cursor: pointer;
}

.article-tag:hover { background: rgba(124,58,237,0.1); color: var(--cat1); }

/* ===================== BOTTOM SHARE ===================== */
.article-share-bottom {
  margin-top: 32px;
  padding: 24px 28px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 1px 12px rgba(49,46,129,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.share-bottom-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}

.share-bottom-sub {
  font-size: 12.5px;
  color: var(--gray2);
  margin-top: 2px;
}

.share-bottom-btns { display: flex; gap: 8px; }

.share-big-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s;
  text-decoration: none;
  border: none;
}

.share-big-btn:hover { opacity: 0.85; }

/* Author box */
.author-box {
  margin-top: 32px;
  padding: 28px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 1px 12px rgba(49,46,129,0.07);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.author-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cat1), var(--indigo2));
  display: flex; align-items: center;
  justify-content: center; font-size: 28px;
  flex-shrink: 0;
}

.author-info { flex: 1; }

.author-byline {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gray2); margin-bottom: 4px;
}

.author-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 16px;
  color: var(--ink); margin-bottom: 2px;
}

.author-box-role {
  font-size: 12px;
  color: var(--cat1);
  font-weight: 600;
  margin-bottom: 10px;
}

.author-bio {
  font-size: 13.5px; color: var(--gray);
  line-height: 1.65;
}

/* Related articles grid */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

/* ===================== FAQ SECTION ===================== */
.article-body .faq-item {
  background: white;
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 14px;
  border-left: 3px solid var(--indigo, #312E81);
  box-shadow: 0 1px 8px rgba(49,46,129,0.06);
}

.article-body .faq-item h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.4;
}

.article-body .faq-item p {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}

/* External links in article body */
.article-body a[target="_blank"] {
  color: var(--cat1, #7C3AED);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(124,58,237,0.25);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.15s;
}

.article-body a[target="_blank"]:hover {
  text-decoration-color: var(--cat1, #7C3AED);
}

.article-body a[target="_blank"]::after {
  content: ' ↗';
  font-size: 11px;
  opacity: 0.5;
}

/* ===================== STICKY LEFT SHARE ===================== */
.sticky-share {
  position: fixed;
  left: max(16px, calc(50% - 660px));
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 50;
}

.sticky-share-label {
  font-size: 10px;
  color: var(--gray2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.sticky-share-divider {
  width: 1px;
  height: 24px;
  background: var(--light);
}

.sticky-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s;
  font-size: 15px;
  font-weight: 700;
  border: none;
  text-decoration: none;
}

.sticky-btn:hover { transform: scale(1.1); }

/* ===================== RESPONSIVE — Article ===================== */
@media (max-width: 1400px) {
  .sticky-share { display: none; }
}

@media (max-width: 960px) {
  .article-page-layout {
    grid-template-columns: 1fr;
    padding: 16px 16px 0;
  }

  .sidebar { position: static; }
  .article-title { font-size: 28px; }
  .article-deck { font-size: 17px; }
  .article-hero-img { height: 260px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .meta-divider { display: none; }
  .share-row { margin-left: 0; width: 100%; }
  .inline-newsletter { flex-direction: column; gap: 16px; }
  .article-share-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .article-title { font-size: 24px; }
  .article-hero-img { height: 200px; }
  .related-grid { grid-template-columns: 1fr; }
  .author-box { flex-direction: column; }
  .article-meta-row { gap: 10px; }
  .share-bottom-btns { flex-wrap: wrap; }
}

/* ===================== SAVE / BOOKMARK BUTTON ===================== */
.article-save-btn {
  width: 38px; height: 38px;
  border-radius: 10px; border: 1.5px solid var(--light);
  background: white; color: var(--gray);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
  flex-shrink: 0;
}
.article-save-btn:hover {
  border-color: var(--cat1); color: var(--cat1);
}
.article-save-btn.saved {
  background: var(--cat1); border-color: var(--cat1); color: white;
  animation: savePopIn 0.3s cubic-bezier(0.16,1,0.3,1);
}
@keyframes savePopIn {
  0% { transform: scale(0.85); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* ===================== MOBILE TOC (cloned) ===================== */
.toc-card-mobile {
  margin-bottom: 24px;
  border: 1.5px solid rgba(49,46,129,0.08);
}

/* Hide mobile TOC on desktop */
@media (min-width: 961px) {
  .toc-card-mobile { display: none !important; }
}

/* ===================== COMMENTS SECTION ===================== */
.comments-section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--light, #F3F4F6);
}

.comments-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.comments-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.comments-title-bar {
  display: block;
  width: 4px;
  height: 20px;
  border-radius: 2px;
  background: var(--teal, #0D9488);
  flex-shrink: 0;
}

.comments-count {
  font-size: 13px;
  color: var(--gray2, #9CA3AF);
  font-weight: 500;
}

/* Comment form */
.comment-form {
  margin-bottom: 32px;
  position: relative;
}

.comment-form-body {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.comment-input-wrap {
  flex: 1;
}

.comment-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #E5E7EB;
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  resize: vertical;
  transition: border-color 0.2s;
  background: white;
  box-sizing: border-box;
}

.comment-textarea:focus {
  outline: none;
  border-color: var(--teal, #0D9488);
  box-shadow: 0 0 0 3px rgba(13,148,136,0.1);
}

.comment-textarea-sm {
  font-size: 13px;
  padding: 10px 14px;
}

.comment-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.comment-hint {
  font-size: 11.5px;
  color: var(--gray2, #9CA3AF);
}

.comment-submit-btn {
  padding: 8px 20px;
  background: var(--teal, #0D9488);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}

.comment-submit-btn:hover {
  background: #0F766E;
  transform: translateY(-1px);
}

.comment-submit-sm {
  padding: 6px 16px;
  font-size: 12px;
}

/* Login prompt */
.comment-login-prompt {
  background: var(--light, #F3F4F6);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  margin-bottom: 32px;
}

.comment-login-prompt p {
  font-size: 15px;
  color: var(--gray);
  margin: 0 0 12px;
}

.comment-login-btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--teal, #0D9488);
  color: white;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s;
}

.comment-login-btn:hover {
  background: #0F766E;
}

/* Flash messages */
.comment-flash {
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.comment-flash-success {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.comment-flash-error {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

/* Comment items */
.comments-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.comment-item {
  display: flex;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--light, #F3F4F6);
}

.comment-item:last-child {
  border-bottom: none;
}

.comment-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cat1, #7C3AED), var(--teal, #0D9488));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  overflow: hidden;
}

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

.comment-avatar-sm {
  width: 28px;
  height: 28px;
  font-size: 11px;
}

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

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

.comment-author {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
}

.comment-date {
  font-size: 11.5px;
  color: var(--gray2, #9CA3AF);
}

.comment-delete-btn {
  background: none;
  border: none;
  color: var(--gray2, #9CA3AF);
  font-size: 16px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  transition: color 0.15s;
}

.comment-delete-btn:hover {
  color: #EF4444;
}

.comment-body {
  font-size: 14px;
  line-height: 1.65;
  color: #374151;
  word-wrap: break-word;
}

.comment-reply-toggle {
  background: none;
  border: none;
  font-size: 12px;
  color: var(--teal, #0D9488);
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0;
  margin-top: 4px;
  transition: opacity 0.15s;
}

.comment-reply-toggle:hover {
  opacity: 0.7;
}

/* Reply form */
.comment-reply-form {
  margin-top: 12px;
}

.comment-reply-actions {
  display: flex;
  gap: 8px;
  margin-top: 6px;
  justify-content: flex-end;
}

.comment-cancel-btn {
  padding: 6px 14px;
  background: none;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.15s;
}

.comment-cancel-btn:hover {
  border-color: #D1D5DB;
  background: var(--light, #F3F4F6);
}

/* Replies (nested) */
.comment-replies {
  margin-top: 12px;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 2px solid var(--light, #F3F4F6);
}

.comment-reply-item {
  padding: 12px 0;
}

.comments-empty {
  padding: 40px 0;
  text-align: center;
}

.comments-empty p {
  font-size: 14px;
  color: var(--gray2, #9CA3AF);
  margin: 0;
}

/* Responsive comments */
@media (max-width: 600px) {
  .comments-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .comment-form-body {
    flex-direction: column;
  }

  .comment-form-body .comment-avatar {
    display: none;
  }
}
