/* yanyu-photo-like-v1：江湖相册照片点赞 */

.yanyu-photo-like-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 5px 0 8px;
  line-height: 1;
}

.yanyu-photo-like-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 4px 9px;
  border: 1px solid rgba(133, 43, 34, 0.18);
  border-radius: 999px;
  color: #8d2a23;
  background: rgba(255,255,255,0.68);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  user-select: none;
}

.yanyu-photo-like-btn:hover {
  color: #fff8ed;
  background: linear-gradient(135deg, #171312, #8d2a23);
}

.yanyu-photo-like-btn.is-liked,
.yanyu-photo-like-btn:disabled {
  color: #fff8ed;
  background: linear-gradient(135deg, #8d2a23, #1d1715);
  cursor: default;
  opacity: 0.92;
}

.yanyu-photo-like-tip {
  color: rgba(62,45,34,.58);
  font-size: 11px;
}

.yanyu-photo-ranking-thumb {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  object-fit: cover;
  border: 1px solid rgba(80,50,38,.14);
  background: rgba(255,255,255,.38);
}

.yanyu-ranking-item.photo-ranking {
  grid-template-columns: 26px 38px minmax(0,1fr) auto;
}

@media (max-width: 760px) {
  .yanyu-photo-like-wrap {
    margin-top: 4px;
  }

  .yanyu-photo-like-btn {
    min-height: 24px;
    padding: 3px 8px;
    font-size: 11px;
  }

  .yanyu-photo-ranking-thumb {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }

  .yanyu-ranking-item.photo-ranking {
    grid-template-columns: 24px 34px minmax(0,1fr) auto;
  }
}
