.dpo-watermark-wrap {
  position: relative;
  display: inline-block;
  line-height: 0;
  max-width: 100%;
}
.dpo-watermark-wrap.dpo-block {
  display: block;
}
.dpo-watermark-wrap > img {
  display: block;
  max-width: 100%;
}
.dpo-watermark {
  --dpo-width: 18%;
  --dpo-offset: 14px;
  position: absolute;
  z-index: 3;
  pointer-events: none;
  user-select: none;
  box-sizing: border-box;
  width: var(--dpo-width);
  max-width: 180px;
  min-width: 46px;
  padding: 0;
  line-height: 1;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(9px, 1.25vw, 16px);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.34);
  filter: drop-shadow(0 1px 5px rgba(0,0,0,.20));
}
.dpo-watermark.dpo-compact {
  max-width: 96px;
  min-width: 34px;
  font-size: clamp(8px, .95vw, 12px);
  text-shadow: 0 1px 5px rgba(0,0,0,.28);
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.16));
}
.dpo-watermark img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 48px;
  object-fit: contain;
}
.dpo-watermark.dpo-compact img {
  max-height: 28px;
}
.dpo-bottom-right { right: var(--dpo-offset); bottom: var(--dpo-offset); }
.dpo-top-right { right: var(--dpo-offset); top: var(--dpo-offset); }
.dpo-bottom-left { left: var(--dpo-offset); bottom: var(--dpo-offset); }
.dpo-top-left { left: var(--dpo-offset); top: var(--dpo-offset); }
.dpo-bottom-center { left: 50%; bottom: var(--dpo-offset); transform: translateX(-50%); }
.dpo-top-center { left: 50%; top: var(--dpo-offset); transform: translateX(-50%); }

/* Saubere horizontale Zentrierung für Schriftzug und Logo. */
.dpo-watermark.dpo-top-center,
.dpo-watermark.dpo-bottom-center {
  text-align: center;
}
.dpo-watermark.dpo-top-center img,
.dpo-watermark.dpo-bottom-center img {
  margin-left: auto;
  margin-right: auto;
}
