.pc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.pc-card {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.pc-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.pc-zoom-link {
  cursor: zoom-in;
  display: block;
  width: 100%;
  height: 100%;
}
.pc-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pc-vote-button {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  cursor: pointer;
}

.pc-vote-button.is-voted .pc-heart,
.pc-vote-button:hover .pc-heart {
  color: #e0245e;
}

.pc-vote-button.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

.pc-heart {
  line-height: 1;
  font-size: 16px;
}

.pc-title {
  margin: 0;
  padding: 12px 12px 6px;
  font-size: 16px;
}

.pc-location {
  margin: 0;
  padding: 0 12px 12px;
  color: #666;
  font-size: 14px;
}

.pc-lightbox-vote {
  position: fixed;
  top: auto;
  right: auto;
  bottom: 105px;
  left: 50%;
  transform: translateX(-50%);

  z-index: 2147483647;
  display: none;
  width: auto;
  max-width: max-content;

  align-items: center;
  gap: 10px;

  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.pc-lightbox-vote.is-visible {
  display: inline-flex !important;
}
.pc-lightbox-vote .pc-heart {
  font-size: 22px;
}

.pc-lightbox-vote .pc-label {
  font-size: 16px;
}

.pc-lightbox-vote .pc-count {
  font-size: 16px;
  opacity: 0.7;
}
.pc-lightbox-vote:hover .pc-heart {
  color: #e0245e;
}
.pc-lightbox-vote.is-voted .pc-heart {
  color: #e0245e;
}
@media (max-width: 768px) {
  .pc-lightbox-vote {
    bottom: 70px;
    font-size: 15px;
    padding: 8px 14px;
  }

  .pc-lightbox-vote .pc-heart {
    font-size: 22px;
  }

  .pc-lightbox-vote .pc-count {
    font-size: 18px;
  }
}