.like-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
}

.like-btn {
  background: #e11d48;
  color: #fff;
  padding: 10px 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.2s;
}

.like-btn:hover {
  background: #fb7185;
}

.like-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.like-count {
  font-weight: bold;
}

.like-note {
  font-size: 14px;
  margin: 10px 0;
  padding-left: 12px;
  position: relative;
  opacity: 0.9;
}

.like-note::before {
  content: "\2503";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  background: linear-gradient(45deg, #ff00cc, #00f0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}