.sg-promo-wrapper {
  all: initial;
  display: block;
  font-family: 'Arial Black', 'Arial', sans-serif;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  border: 4px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: inherit;
}

.sg-promo-wrapper--clickable {
  cursor: pointer;
}

.sg-promo-wrapper--clickable::after {
  content: 'Zum Shop klicken';
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font: 700 12px/1 'Arial', sans-serif;
  letter-spacing: 0.02em;
  padding: 6px 10px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  z-index: 12;
}

.sg-promo-wrapper--clickable:hover::after,
.sg-promo-wrapper--clickable:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.sg-promo-wrapper * {
  box-sizing: border-box;
}

.sg-photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
}

.sg-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(22, 22, 22, 0.92);
  color: #fff;
  padding: 7px 9px 11px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-align: center;
  font-size: clamp(8px, 1.05vw, 12px);
  line-height: 1.05;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
  z-index: 10;
  min-width: 62px;
  max-width: 92px;
}

.sg-badge::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -7px;
  transform: translateX(-50%);
  width: 16px;
  height: 9px;
  background: rgba(22, 22, 22, 0.92);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.sg-badge strong {
  font-weight: 900;
  letter-spacing: 0.015em;
}

@media (max-width: 720px) {
  .sg-badge {
    top: 8px;
    right: 8px;
    padding: 6px 8px 9px;
    min-width: 56px;
    max-width: 80px;
    font-size: clamp(7px, 2.6vw, 10px);
  }

  .sg-badge::after {
    width: 14px;
    height: 8px;
    bottom: -6px;
  }

  .sg-promo-wrapper--clickable::after {
    font-size: 11px;
    left: 10px;
    bottom: 10px;
    padding: 5px 8px;
  }
}
