.post-like-button {
  display: inline-flex;
  align-items: center;
  gap: .34rem;
  padding: .34rem .55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-family: var(--sans);
  font-size: .7rem;
  line-height: 1;
  cursor: pointer;
  transition: color .15s ease, border-color .15s ease, background .15s ease, opacity .15s ease, transform .15s ease;
}

.post-like-button:hover,
.post-like-button:focus-visible {
  color: var(--accent);
  border-color: rgba(79, 90, 73, .38);
  background: rgba(79, 90, 73, .06);
}

.post-like-button:focus-visible {
  outline: 1px solid var(--line);
  outline-offset: 3px;
  border-radius: 999px;
}

.post-like-button:active {
  transform: scale(.96);
}

.post-like-button:disabled {
  cursor: default;
  opacity: .55;
}

.post-like-heart {
  font-size: 1rem;
  line-height: 1;
}

.post-like-label {
  white-space: nowrap;
}

.post-like-button.is-liked {
  color: var(--accent);
}

.post-like-count {
  min-width: .65em;
  font-variant-numeric: tabular-nums;
}

.article-related {
  display: none !important;
}

.image-lightbox-nav {
  position: fixed;
  top: 50%;
  z-index: 202;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 4.5rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, .18);
  color: rgba(255, 255, 255, .88);
  font-family: var(--sans);
  font-size: 3.1rem;
  font-weight: 200;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .15s ease, color .15s ease, opacity .15s ease;
}

.image-lightbox-nav:hover,
.image-lightbox-nav:focus-visible {
  background: rgba(0, 0, 0, .42);
  color: #fff;
}

.image-lightbox-nav:focus-visible {
  outline: 1px solid rgba(255, 255, 255, .75);
  outline-offset: 3px;
}

.image-lightbox-nav[hidden] {
  display: none;
}

.image-lightbox-prev {
  left: 1.25rem;
}

.image-lightbox-next {
  right: 1.25rem;
}

@media (max-width: 520px) {
  .image-lightbox-nav {
    width: 2.7rem;
    height: 3.8rem;
    font-size: 2.6rem;
  }

  .image-lightbox-prev {
    left: .35rem;
  }

  .image-lightbox-next {
    right: .35rem;
  }
}
