/* KW Sticky-CTA — „Frühbucher-Aktion"-Balken. Übernimmt die vormaligen inline-Styles. */
.kw-aktionsleiste {
    background: #7A1C33;
    color: #fff;
}
.kw-aktionsleiste__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.kw-aktionsleiste__msg {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.kw-aktionsleiste__overline {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    color: #F4D9A0;
}
.kw-aktionsleiste__text {
    font-size: 1.05rem;
    line-height: 1.3;
    font-weight: 600;
    color: #fff;
}

/* Button-Basis (self-contained, geteilt mit kw-cta-pair) */
.kw-cta-pair { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; }
.kw-cta-pair--inline { display: inline-flex; gap: 10px; }
.kw-cta-pair__btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 18px 36px; font-family: 'Josefin Sans', sans-serif; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px; font-size: 1rem; line-height: 1;
    text-decoration: none; border-radius: 6px; border: 2px solid transparent; cursor: pointer;
    transition: opacity .15s ease;
}
.kw-cta-pair--light .kw-cta-pair__btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.kw-cta-pair--light .kw-cta-pair__btn--solid   { background: #fff; color: #7A1C33; border-color: #fff; }
.kw-cta-pair__btn:hover { opacity: .88; }
/* kompakte Sticky-Buttons */
.kw-aktionsleiste__btn { padding: 10px 20px; font-size: 0.82rem; letter-spacing: 1.2px; }

/* Variante „banner": größerer Aktions-Banner (z.B. „Nicht verpassen").
   WICHTIG: Der Block-Klassenname `kw-aktionsleiste` kollidiert mit der gleichnamigen
   Theme-Komponente (fixe Slide-Bar: position:fixed; bottom:0; transform:translateY(120%)).
   WEDER die Banner- NOCH die Compact-Variante ist ein Sticky — beide stehen im
   Inhaltsfluss wie auf Live (Banner = großes Band, Compact = kleiner „Aktion"-Streifen
   oben). Die Theme-eigene, ID-lose `.kw-aktionsleiste`-Slide-Bar bleibt fix (nicht getroffen,
   sie hat kein --banner/--compact). Darum hier die geerbten Fixed-Props neutralisieren: */
.kw-aktionsleiste--banner,
.kw-aktionsleiste--compact {
    position: static !important;
    left: auto !important; right: auto !important; bottom: auto !important;
    transform: none !important;
    transition: none !important;
    z-index: auto !important;
    box-shadow: none !important;
    border-top: 0 !important;
    max-width: none !important;
    overflow: visible !important;
    padding: 0 !important;   /* Band-Innenabstand kommt von __inner / umgebender Gruppe */
}
.kw-aktionsleiste--banner .kw-aktionsleiste__overline { font-size: 0.95rem; letter-spacing: 0.22em; margin-bottom: 4px; }
.kw-aktionsleiste--banner .kw-aktionsleiste__text { font-size: 1.4rem; line-height: 1.4; font-weight: 700; }
.kw-aktionsleiste--banner .kw-aktionsleiste__btn { padding: 14px 28px; font-size: 0.95rem; }

/* responsive Labels: lang ab Desktop, kurz auf Mobile */
.kw-cta-label-short { display: none; }
.kw-cta-label-long  { display: inline; }
@media (max-width: 640px) {
    .kw-cta-label-short { display: inline; }
    .kw-cta-label-long  { display: none; }
    .kw-aktionsleiste__inner { justify-content: center; text-align: center; }
}
