/* =========================================================
   Putzig Call-to-Action Strip
   Bootstrap 5.3 kompatibel
========================================================= */

:root {
   
}
[data-theme="dark"] {

}


/* =========================================================
   Außenbereich
========================================================= */

.putzig-cta-strip {
    position: relative;
    padding: 0;
    background-image:
        url("../images/background/cta--279765997.jpg");
        background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


/* =========================================================
   Innerer CTA-Bereich
========================================================= */

.putzig-cta-strip__inner {
    position: relative;
    overflow: hidden;
    padding: 1.35rem 1.8rem;
}


/* Optionaler dunkler Rand unten/oben für mehr Tiefe */
.putzig-cta-strip__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}


/* =========================================================
   Inhalt links
========================================================= */

.putzig-cta-strip__content {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;

    gap: 1rem;
}


/* Rotes Icon */
.putzig-cta-strip__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 58px;
    height: 58px;

    color: var(--putzig-white);
    background-color: var(--putzig-red);

    border-radius: 50%;

    box-shadow: 0 12px 28px var(--putzig-cta-red-shadow);
}


/* Icon selbst */
.putzig-cta-strip__icon i {
    font-size: 1.35rem;
    line-height: 1;
}


/* Textwrapper */
.putzig-cta-strip__text {
    min-width: 0;
    color: #fff;
}


/* Überschrift */
.putzig-cta-strip__title {
    margin: 0 0 0.35rem;

    color: var(--putzig-white);

    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 900;
    line-height: 1.15;

    text-transform: uppercase;
}


/* Unterzeile */
.putzig-cta-strip__subtitle {
    margin: 0;

    color: rgba(255, 255, 255, 0.92);

   
    font-weight: 500;
    line-height: 1.45;
}





/* =========================================================
   Responsive Feinschliff
========================================================= */

@media (max-width: 991.98px) {
    .putzig-cta-strip__inner {
        padding: 1.5rem;
    }

    .putzig-cta-strip__content {
        justify-content: center;
        text-align: left;
    }

    .putzig-cta-strip .text-lg-end {
        text-align: center;
    }
}


@media (max-width: 575.98px) {
    .putzig-cta-strip__inner {
        padding: 1.6rem 1.2rem;
    }

    .putzig-cta-strip__content {
        flex-direction: column;
        text-align: center;
    }

    .putzig-cta-strip__icon {
        width: 54px;
        height: 54px;
    }

    .putzig-cta-strip__icon i {
        font-size: 1.2rem;
    }

    .putzig-cta-strip__subtitle {
        font-size: 0.92rem;
    }

    .putzig-cta-strip__btn {
        width: 100%;
        max-width: 300px;
    }
}