.octagnt-like-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin: 28px 0 10px;
  width: 100%;
}

.octagnt-like-button {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 5px 12px 5px 6px;
  border: 1px solid #79d000;
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, opacity .18s ease, transform .18s ease;
}

.octagnt-like-button:hover,
.octagnt-like-button:focus-visible {
  background: rgba(121, 208, 0, .10);
  outline: none;
}

.octagnt-like-button:active {
  transform: translateY(1px);
}

.octagnt-like-button:disabled {
  cursor: default;
}

.octagnt-like-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #79d000;
  color: #0a0a0a;
}

.octagnt-like-count {
  min-width: 1ch;
  color: #79d000;
  font-variant-numeric: tabular-nums;
}

.octagnt-like-button.is-liked {
  background: rgba(121, 208, 0, .10);
  opacity: .9;
}

.octagnt-like-button.is-loading {
  opacity: .65;
}

.octagnt-like-status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 767px) {
  .octagnt-like-wrap {
    justify-content: flex-start;
    margin-top: 22px;
  }

  .octagnt-like-button {
    font-size: 12px;
  }
}
