.hnp-btn {
  padding: 11px 18px;
  font-size: 16px;
  border: none;
  border-radius: 0;
  transition: all ease-in-out 0.2s;
  cursor: pointer;
  background-color: #000;
  color: #fff;
  min-width: 166px;

  &.hnp-btn-primary {
    background-color: #212121;
    color: #fff;

    &:hover {
      background-color: #fff;
      color: #212121;
    }
  }

  &.share-btn {
    border-radius: 999px;
    background-color: #ffbb0065;
    border: 1px solid #FFB200;
    color: #FFB200;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
    white-space: nowrap;
  }
}

.hnp-search-btn,
.hnp-follow-btn {
  padding: 4px;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;

  img {
    width: 28px;
    height: 28px;
    object-fit: contain;

  }
}

.hnp-search-btn {
  display: none;

  @media (max-width: 992px) {
    display: flex;
  }
}

