/* Pin-Save: "Auf Pinterest merken" button, overlaid on the article hero image.
   Opens pinterest.com/pin/create/button with the page URL, pin media and
   description. Loop 27 (T-077). */

/* Provide the positioning context for the overlay button. Additive: the hero
   figure carries no other positioned children. */
.article-hero__figure {
  position: relative;
}

.pin-save {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: #e60023; /* Pinterest brand red */
  color: #fff;
  font-family: var(--font-body, 'Patrick Hand', cursive);
  font-size: 1.05rem;
  line-height: 1;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
  transition: background 0.15s ease, transform 0.15s ease;
}

.pin-save:hover,
.pin-save:focus-visible {
  background: #ad081b;
  transform: translateY(-1px);
  color: #fff;
}

.pin-save svg {
  display: block;
  width: 20px;
  height: 20px;
  flex: none;
}

@media (max-width: 480px) {
  .pin-save {
    top: 10px;
    right: 10px;
    padding: 8px 14px;
    font-size: 0.95rem;
  }
}
