.article-feedback {
  margin-top: 52px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
}
.article-feedback p { margin: 0 !important; color: var(--white) !important; font-weight: 700; }
.article-feedback-actions { display: flex; gap: 8px; }
.article-feedback button {
  min-width: 48px;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  background: var(--bg-light);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.article-feedback button:hover { border-color: var(--gold); color: var(--gold); }
.toc-toggle { display: none; }

@media (max-width: 640px) {
  .toc-title { display: none; }
  .toc-toggle {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--white);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
  }
  .toc-list.is-collapsed { display: none; }
  .article-feedback { align-items: flex-start; flex-direction: column; }
}

