/* =========================================
   Weihnachtsbanner – stabil & mobil-sicher
========================================= */

.ctls-xmas-banner {
  background: #b30000;
  color: #fff;
  padding: 0.6rem 1rem;
  text-align: center;

  /* WICHTIG: Breite absichern */
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

/* Innerer Container */
.ctls-xmas-banner .ctls-newsbanner-inner {
  display: inline-flex;           /* inline = kein Überstand */
  align-items: center;
  justify-content: center;
  gap: 0.4rem;

  max-width: 100%;
  flex-wrap: wrap;                /* Mobile Umbruch */
}

/* Icon */
.ctls-xmas-banner .xmas-icon {
  font-size: 1.3rem;
  line-height: 1;
}

/* Text */
.ctls-xmas-banner .xmas-text {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.3px;

  /* verhindert Überbreite */
  max-width: 100%;
  word-break: break-word;
}
@media (min-width: 1024px) {
  .ctls-snowflake {
    position: fixed;
    top: -10px;
    color: white;
    font-size: 16px;
    opacity: 0.6;
    pointer-events: none;
    z-index: 9999;
    animation: fall linear infinite;
  }

  @keyframes fall {
    0%   { transform: translateY(-10vh); }
    100% { transform: translateY(110vh); }
  }
}