/* ============================================================
   Weihnachtsbeilage Teaser
   Farben: Tannengrün, Weihnachtsrot, Gold, Creme
   ============================================================ */

.weihnachtsbeilage .card {
  overflow: hidden;
  border: none;
}

.weihnachtsbeilage .card-body {
  border-bottom: 4px solid #c0392b !important;
}

.weihnachtsbeilage .card-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.weihnachtsbeilage .card-footer {
  border-top: none;
  padding: 0;
}

.weihnachtsbeilage .card-footer .row {
  padding: 1.25rem !important;
}

.wb-badge {
  display: inline-block;
  background-color: #c0392b;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  margin-bottom: 12px;
}

.wb-headline {
  color: #1a3e2b;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.wb-text {
  color: #2a3642;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.wb-star {
  color: #d4af37;
}

.btn-weihnacht {
  background-color: #c0392b;
  border-color: #c0392b;
  color: #fff !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  padding: 0.45rem 1.1rem;
  transition: background-color 0.25s, border-color 0.25s;
}

.btn-weihnacht:hover {
  background-color: #1a3e2b;
  border-color: #1a3e2b;
  color: #f5e6c8 !important;
}

.wb-preview-img {
  border: 3px solid #d4af37;
  display: block;
  width: 100%;
}

.wb-contact {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.75rem;
}

.wb-contact a {
  color: #c0392b;
  text-decoration: none;
  font-weight: 600;
}

.wb-contact a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .wb-preview-img {
    margin-bottom: 1.25rem;
  }
}

/* ---------- Schneeflocken-Animation ---------- */

.weihnachtsbeilage {
  position: relative;
}

.wb-snow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.wb-snowflake {
  position: absolute;
  top: -5%;
  color: #fff;
  text-shadow: 0 0 4px rgba(26, 62, 43, 0.35);
  user-select: none;
  animation-name: wb-snow-fall, wb-snow-sway;
  animation-timing-function: linear, ease-in-out;
  animation-iteration-count: infinite, infinite;
  will-change: top, margin-left;
}

@keyframes wb-snow-fall {
  from {
    top: -5%;
  }
  to {
    top: 105%;
  }
}

@keyframes wb-snow-sway {
  0%, 100% {
    margin-left: -12px;
  }
  50% {
    margin-left: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wb-snow {
    display: none;
  }
}