/* ═══════════════════════════════════════════════════════════════════════
   WWN Seasons – Erstag-Banner + Logo-Wrapper
   v1.4 – Farbüberschreibungen entfernt, Logo-System eingeführt
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Erstag-Banner ─────────────────────────────────────────────────────── */
.wwn-season-banner {
  position: relative;
  z-index: 9999;
  text-align: center;
  padding: 10px 20px;
  font-size: .9em;
  font-weight: 600;
  letter-spacing: .03em;
  animation: wwn-banner-slide .5s ease;
}
@keyframes wwn-banner-slide {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

body.wwn-season-spring .wwn-season-banner {
  background: #d5f5e3; color: #1a7a44; border-bottom: 2px solid #a9dfbf;
}
body.wwn-season-summer .wwn-season-banner {
  background: #fdebd0; color: #9c5a0e; border-bottom: 2px solid #f8c471;
}
body.wwn-season-autumn .wwn-season-banner {
  background: #fae5d3; color: #7d2e0a; border-bottom: 2px solid #e59866;
}
body.wwn-season-winter .wwn-season-banner {
  background: #d6eaf8; color: #154360; border-bottom: 2px solid #85c1e9;
}

/* ── Logo-Wrapper (für Aktionstext-Overlay) ────────────────────────────── */
.wwn-logo-wrap {
  position: relative;
  display: inline-block;
  line-height: 0;
}
.wwn-logo-wrap .custom-logo {
  display: block;
  max-width: 100%;
  height: auto;
}
.wwn-logo-action-text {
  display: block;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: #1a3a5c;
  margin-top: 3px;
  letter-spacing: .02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.wwn-logo-action-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
  height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
}
