/* =========================================================
   Kleiner CTA am Ende von Unterseiten
   Bootstrap 5.3 kompatibel
   Ohne CSS-Variablen
========================================================= */

.subpage-text-cta {
    position: relative;
    overflow: hidden;

    padding: 1.35rem 1.5rem;

    background:
        linear-gradient(
            135deg,
            #5f5f5f 0%,
            #4f4f4f 100%
        );

    border-left: 5px solid #e30613;

    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}


/* Dezenter Hintergrund-Akzent */
.subpage-text-cta::after {
    content: "";

    position: absolute;
    right: -70px;
    bottom: -90px;

    width: 190px;
    height: 190px;

    border: 24px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;

    pointer-events: none;
}


/* Inhalt links */
.subpage-text-cta__content {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;

    gap: 1rem;
}


/* Icon-Kreis */
.subpage-text-cta__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 54px;
    height: 54px;

    color: #ffffff;
    background-color: #e30613;

    border-radius: 50%;

    box-shadow: 0 10px 24px rgba(227, 6, 19, 0.26);
}


/* Font Awesome Icon */
.subpage-text-cta__icon i {
    font-size: 1.2rem;
    line-height: 1;
}


/* Text */
.subpage-text-cta__text {
    min-width: 0;
}


.subpage-text-cta__text p {
    margin: 0 0 0.25rem;

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

    font-size: clamp(1rem, 1.4vw, 1.5rem);
    font-weight: 400;
    line-height: 1.45;
}


.subpage-text-cta__text strong {
    display: block;

    color: #ffffff;

    font-size: clamp(1.05rem, 1.5vw, 1.5rem);
    font-weight: 800;
    line-height: 1.35;
}


.subpage-text-cta__text a {
    color: #ffffff;
    text-decoration: none;
}


.subpage-text-cta__text a:hover,
.subpage-text-cta__text a:focus {
    color: #ffffff;
    text-decoration: underline;
}





.subpage-text-cta__btn i {
    display: inline-block;

    font-size: 0.75rem;

    transition:
        transform 0.25s ease;
}


.subpage-text-cta__btn:hover i,
.subpage-text-cta__btn:focus i {
    transform: translateX(4px);
}


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

@media (max-width: 991.98px) {
    .subpage-text-cta {
        text-align: center;
    }

    .subpage-text-cta__content {
        justify-content: center;
        text-align: left;
    }

    .subpage-text-cta__btn {
        width: 100%;
        max-width: 320px;
    }
}


@media (max-width: 575.98px) {
    .subpage-text-cta {
        padding: 1.4rem 1.15rem;
    }

    .subpage-text-cta__content {
        flex-direction: column;
        text-align: center;
    }

    .subpage-text-cta__icon {
        width: 50px;
        height: 50px;
    }

    .subpage-text-cta__icon i {
        font-size: 1.1rem;
    }
}