/* KW Step-CTA — „In drei Schritten" (Bordeaux-Sektion). Übernimmt die vormaligen inline-Styles.
   .kw-block-section(--bordeaux) kommt global aus kw-blocks.css (BG + Padding). */
.kw-step-cta__inner {
    max-width: 1100px;
    margin: 0 auto;
    color: #fff;
    text-align: center;
}
.kw-step-cta__overline {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 700;
    margin: 0 0 14px 0;
}
.kw-step-cta__headline {
    font-size: 2.2rem;
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
    margin: 0 0 48px 0;
}
.kw-step-cta__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}
.kw-step-cta__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}
.kw-step-cta__num {
    width: 56px;
    height: 56px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Josefin Sans', sans-serif;
}
.kw-step-cta__text {
    font-size: 1.05rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
}
.kw-step-cta__text .kw-ps-step-partner__name { font-weight: 700; }

/* Button-Zeile (geteilt mit kw-cta-pair; hier self-contained, falls cta-pair-Block nicht auf der Page) */
.kw-cta-pair {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}
.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--dark  .kw-cta-pair__btn--outline { background: transparent; color: #7A1C33; border-color: rgba(122,28,51,0.5); }
.kw-cta-pair--dark  .kw-cta-pair__btn--solid   { background: #7A1C33; color: #fff; border-color: #7A1C33; }
.kw-cta-pair__btn:hover { opacity: .88; }

@media (max-width: 880px) {
    .kw-step-cta__headline { font-size: 1.9rem; }
    .kw-step-cta__steps { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 600px) {
    .kw-cta-pair { flex-direction: column; align-items: stretch; }
    .kw-cta-pair__btn { width: 100%; }
}
