.isn-zoomfx {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06), inset 0 0 18px rgba(17, 20, 24, 0.08);
  transition: box-shadow 320ms cubic-bezier(0.4, 0, 0.2, 1);
}

.isn-zoomfx img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.post-card__thumb .isn-zoomfx {
  border-radius: 16px 16px 0 0;
}

.post-card__thumb .isn-zoomfx img {
  height: 100%;
}

.isn-zoomfx:focus-within,
.isn-zoomfx:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18), inset 0 0 24px rgba(17, 20, 24, 0.12);
}

.isn-zoomfx:focus-within img,
.isn-zoomfx:hover img {
  transform: scale(1.06);
}

@media (prefers-reduced-motion: reduce) {
  .isn-zoomfx,
  .isn-zoomfx img {
    transition: none;
  }

  .isn-zoomfx:focus-within img,
  .isn-zoomfx:hover img {
    transform: none;
  }
}