/* Einheitliche quadratische Produktbilder in allen Angebotskategorien. */
.product-card > img,
.product-card > .placeholder,
.product-card > .product-image-link > img,
.product-card > .product-image-link > .placeholder {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.product-card > .product-image-link {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
}

.overview-image-name {
  position: absolute;
  top: 24px;
  left: 26px;
  z-index: 2;
  color: #fff;
  font-family: "Segoe Script", "Brush Script MT", "Lucida Handwriting", cursive;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,.95), 0 0 2px #000;
  transform: rotate(-5deg);
  transform-origin: left center;
  pointer-events: none;
}

@media (max-width: 620px) {
  .overview-image-name {
    top: 20px;
    left: 22px;
    font-size: 24px;
  }
}
