/* Hueb Arts Post Like Button */

.hpl-like-box {
  max-width: 920px;
  margin: 48px auto 36px;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(214, 179, 106, 0.10), transparent 34%),
    #050505;
  border: 1px solid rgba(214, 179, 106, 0.28);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
}

.hpl-like-box * {
  box-sizing: border-box;
}

.hpl-like-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #d6b36a;
  color: #000;
  border: 1px solid #d6b36a;
  border-radius: 0;
  padding: 14px 20px;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: all .22s ease;
  box-shadow: none;
}

.hpl-like-button:hover {
  background: transparent;
  color: #d6b36a;
}

.hpl-like-button:disabled {
  cursor: default;
  opacity: .85;
}

.hpl-like-icon {
  font-size: 18px;
  line-height: 1;
}

.hpl-like-count {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #d6b36a;
  white-space: nowrap;
}

.hpl-count-number {
  font-size: 28px;
  line-height: 1;
  font-weight: 500;
}

.hpl-count-label {
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #9f8651;
}

.hpl-like-message {
  flex: 1;
  color: #9f978b;
  font-size: 13px;
  line-height: 1.5;
  text-align: right;
}

.hpl-liked .hpl-like-button {
  background: transparent;
  color: #d6b36a;
}

.hpl-loading .hpl-like-button {
  opacity: .65;
}

@media (max-width: 640px) {
  .hpl-like-box {
    flex-direction: column;
    align-items: stretch;
    margin: 38px auto 30px;
    padding: 22px;
  }

  .hpl-like-button {
    width: 100%;
  }

  .hpl-like-count {
    justify-content: center;
  }

  .hpl-like-message {
    text-align: center;
  }
}
