/* ==========================================================================
   BLOCK: TITEL, TEXT, BUTTON
   ========================================================================== */

/* Haupt-Wrapper */
.flow-titel-text-button-wrapper {
    /* padding: 0 20px 0px 20px; */
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Zentraler Container */
.titel-text-button-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Große Text-Box */
.titel-text-button-main-card {
    position: relative;
    background-color: #0c0d0e; 
    border: 1px solid #66C5EE;
    border-radius: 12px;
    padding: 50px;
    width: 100%;
}

.titel-text-button-content {
    width: 100%;
}

.titel-text-button-title {
    color: #E6F5FC;
    font-size: 28px;
    font-weight: 700;
    font-style: italic; 
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.titel-text-button-text {
    color: #E6F5FC; 
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

/* Button-Wrapper & Button */
.titel-text-button-btn-wrapper {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.titel-text-button-main-card .startseite-request-btn {
    display: inline-block;
    text-align: center;
}

/* Responsive Overrides (Tablet & Mobile) */
@media (max-width: 992px) {
    /* .titel-text-button-container {
        width: 90vw; 
    } */

    .titel-text-button-main-card {
        padding: 30px 15px;
    }

    .titel-text-button-title {
        font-size: 22px;
    }

    .titel-text-button-text {
        font-size: 15px;
    }

    .titel-text-button-btn-wrapper {
        justify-content: center;
    }

    .titel-text-button-main-card .startseite-request-btn {
        width: 80%;
        max-width: 340px; 
    }
}