/* Heart like — same circle control as SocialShareLinks (.nr-share-links__btn) */

.contentLike-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  position: relative;
  z-index: 20;
}

.contentLike {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 21;
  pointer-events: auto;
}

/* Reset native <button> chrome so the circle matches share <a> icons */
button.contentLike-btn.nr-share-links__btn {
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  outline: none;
  font-family: inherit;
  line-height: 1;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-decoration: none;
  vertical-align: middle;
}

button.contentLike-btn.nr-share-links__btn .fa-heart {
  font-size: 1rem;
  line-height: 1;
}

/* Wider pill only when a count is shown */
button.contentLike-btn.contentLike-btn--has-count {
  width: auto;
  min-width: 40px;
  padding: 0 0.55rem;
  gap: 0.25rem;
  border-radius: 999px;
}

.contentLike-count {
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1;
}

.contentLike-count[hidden] {
  display: none !important;
}

.contentLike-btn--active,
.contentLike-btn--active:hover {
  background: rgba(186, 29, 72, 0.12);
  border-color: rgba(186, 29, 72, 0.45);
  color: #ba1d48;
}

.contentLike-btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

button.contentLike-btn.nr-share-links__btn:focus-visible {
  outline: 2px solid rgba(186, 29, 72, 0.45);
  outline-offset: 2px;
}
