.pc-card,
.acc-card,
.emb-card {
  position: relative;
}

.pehramni-heart {
  position: absolute;
  right: 13px;
  bottom: 13px;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(86, 46, 31, .26);
  border-radius: 50%;
  color: #7b342c;
  background: rgba(255, 250, 243, .88);
  box-shadow: 0 3px 12px rgba(56, 31, 20, .14);
  cursor: pointer;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  transition: transform .18s ease, color .18s ease, background .18s ease;
}

.pehramni-heart:hover,
.pehramni-heart:focus-visible {
  transform: scale(1.07);
  outline: 2px solid rgba(164, 36, 36, .28);
  outline-offset: 2px;
}

.pehramni-heart svg {
  width: 22px;
  height: 22px;
  overflow: visible;
}

.pehramni-heart path {
  fill: transparent;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linejoin: round;
  transition: fill .18s ease;
}

.pehramni-heart.is-liked {
  color: #a42424;
  background: rgba(255, 247, 240, .96);
  cursor: default;
}

.pehramni-heart.is-liked path {
  fill: currentColor;
}

@media (max-width: 640px) {
  .pehramni-heart {
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
  }
}
