.reader-reactions.reader-reactions {
  --reaction-color: #a06a62;
  --reaction-color: #9a756d;
  --reaction-soft: rgb(240 90 69 / 0.07);
  --reaction-ring: rgb(240 90 69 / 0.14);
  display: flex;
  width: fit-content;
  max-width: 100%;
  align-self: flex-end;
  align-items: center;
  justify-content: flex-end;
  flex-flow: row nowrap;
  gap: 2px;
  margin: 8px 0 0 auto;
}

.reader-reaction-button {
  display: inline-flex;
  min-width: 34px;
  min-height: 26px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 1px 3px;
  border: 0;
  border-radius: 3px;
  color: var(--reaction-color);
  background: transparent;
  cursor: pointer;
}

.reader-reaction-button svg {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  stroke: currentColor;
  stroke-width: 1.9;
}

.reaction-question {
  width: 13px;
  flex: 0 0 13px;
  font-family: ui-rounded, "Arial Rounded MT Bold", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.reaction-count {
  min-width: 1ch;
  font-family: ui-rounded, "Arial Rounded MT Bold", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
}

.reader-reaction-button[aria-pressed="true"] {
  background: var(--reaction-soft);
  box-shadow: inset 0 0 0 1px var(--reaction-ring);
}

.reader-reaction-button:focus-visible {
  outline: 2px solid var(--reaction-color);
  outline-offset: 2px;
}

.reader-reaction-button:disabled {
  cursor: wait;
  opacity: 0.45;
}

.flash-item > .reader-reactions {
  grid-column: 2;
  justify-self: end;
  margin: 3px 0 0 auto;
}

.mega-story > .reader-reactions {
  margin: 8px 0 0 auto;
}

.friend-card > .reader-reactions {
  margin: auto 15px 10px auto;
}

.photo-strip figure > .reader-reactions {
  margin: auto 0 0 auto;
}

.ranking-list li > .reader-reactions {
  grid-column: 2 / -1;
  justify-self: end;
  margin: 0 0 9px auto;
}

.ranking .reader-reactions {
  --reaction-color: rgb(246 202 101 / 0.58);
  --reaction-soft: rgb(246 202 101 / 0.1);
  --reaction-ring: rgb(246 202 101 / 0.16);
}

.ranking .reader-reaction-button[aria-pressed="true"] {
  color: rgb(246 202 101 / 0.86);
}

.preview-event > .reader-reactions {
  grid-column: 2;
  justify-self: end;
  margin: 0 0 0 auto;
}

@media (hover: hover) {
  .reader-reaction-button:hover:not(:disabled) {
    background: var(--reaction-soft);
  }
}
