.posts .post-image {
  height: 260px;
  padding: 0;
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.posts .post-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s ease;
}

.posts .post-image:hover img {
  transform: scale(1.035);
}

.posts .post-image span {
  position: absolute;
  top: 20px;
  right: 20px;
}
