.pin-card {
  max-width: 262px;
  position: relative;
}

.pin-iw {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--surface-low);
}

.pin-top-stack {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.pin-top-stack .conv-chip {
  font-size: 9px;
  padding: 5px 8px;
}

.pin-bottom-panel {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 12px;
  border-radius: 16px;
  background: rgba(12, 18, 30, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(12px);
}

.pin-bottom-panel strong {
  display: block;
  font-size: 13px;
  line-height: 1.35;
  margin-bottom: 4px;
}

.pin-bottom-panel p {
  font-size: 11px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.8);
}

.pin-iw img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pin-hov {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.25s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
}

.pin-card:hover .pin-hov {
  opacity: 1;
}

.pin-save {
  background: #e60023;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(230, 0, 35, 0.4);
}

.pin-board-select {
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.pin-bot-act {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.pin-act-btn {
  background: rgba(255,255,255,0.9);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.pin-act-btn .material-symbols-outlined {
  font-size: 18px;
  color: #111;
}

.pin-product-tag {
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  color: #fff;
  border-radius: 24px;
  padding: 6px 12px 6px 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: auto;
  margin-bottom: 24px;
  margin-left: 12px;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
}

.pin-meta {
  margin-top: 12px;
}

.pin-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
}

.pin-author {
  font-size: 13px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
