.favorite {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
}
.favorite__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: var(--border-w) solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--surface-raised);
  color: var(--text);
  font-size: 17px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-press);
}
.favorite__toggle:hover {
  background: var(--surface-sunken);
}
.favorite__toggle:active {
  transform: var(--press-nudge);
}
.favorite__toggle--on {
  background: var(--highlight);
}
.favorite__toggle--on:hover {
  background: var(--highlight);
}
