.news-feedback {
  clear: both;
  margin: 2rem 0 1rem;
  padding: 0.7rem 0;
  background: transparent;
  border-top: 1px solid #e0e0e0;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
}

.news-feedback__question {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: #777;
}

.news-feedback__buttons {
  display: flex;
  gap: 0.5rem;
}

.news-feedback__btn {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  padding: 0.25rem 0.7rem;
  border: 1px solid #ccc;
  border-radius: 14px;
  background: #fafafa;
  cursor: pointer;
  font-size: 0.82rem;
  color: #555;
  transition: border-color 0.2s, background-color 0.2s;
}

.news-feedback__btn:hover:not(:disabled) {
  border-color: var(--sc-burgundy, #b50c40);
  background: #fdf0f3;
}

.news-feedback__btn:disabled {
  opacity: 0.5;
  cursor: default;
}

.news-feedback__icon {
  font-size: 0.95rem;
  line-height: 1;
}

.news-feedback__count {
  font-weight: 700;
  font-size: 0.8rem;
  min-width: 1em;
  color: #888;
}


.news-feedback--voted .news-feedback__btn--helpful {
  border-color: var(--sc-burgundy, #b50c40);
  background: #fdf0f3;
}

@media (max-width: 480px) {
  .news-feedback {
    flex-direction: column;
    align-items: flex-start;
  }
}
