/* ==========================================================================
   Block: Fahrwerksüberarbeitung (Modern Flat CSS Grid)
   ========================================================================== */

/* Haupt-Wrapper */
.fahrwerksuberarbeitung-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
}

/* 
   2-Spalten-Grid:
   3-Zeilen-Raster bei dem die Höhen absolut synchron laufen.
*/
.fahrwerk-grid {
    display: grid;
    /* grid-template-columns: 48% 48%;  */
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Gemeinsame Karten- & Boxen-Styles */
.fahrwerk-img-box,
.fahrwerk-card-blue,
.fahrwerk-text-block {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(102, 197, 238, 0.3);
    box-shadow: 0 0 20px rgba(102, 197, 238, 0.1);
    background: #0c0d0e; 
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    height: 100%; 
    box-sizing: border-box;
}

/* Hover-Effekt */
.fahrwerk-card-blue:hover,
.fahrwerk-text-block:hover {
    border-color: #b07530;
    box-shadow: 0 0 20px rgba(176, 117, 48, 0.2);
}

/* Bilder-Boxen im Grid */
.fahrwerk-img-box {
    line-height: 0;
}
.fahrwerk-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}



/* Zeile 1 links: Bild */
.grid-img-top-left {
    grid-column: 1;
    grid-row: 1;
    /* margin-right: .75rem;
    margin-bottom: .75rem; */
}

/* Zeile 1 & 2 rechts: Großer Haupttextblock spannt über beide Zeilen */
.grid-text-top-right {
    grid-column: 2;
    grid-row: 1 / span 2;
    /* margin-left: .75rem;
    margin-bottom: .75rem; */
}

/* Zeile 2 links: Blaue Vorteilskarte */
.grid-card-mid-left {
    grid-column: 1;
    grid-row: 2;
    /* margin-right: .75rem;
    margin-bottom: .75rem; */
}

/* Zeile 3 links: Bild */
.grid-img-bottom-left {
    grid-column: 1;
    grid-row: 3;
    /* margin-right:.75rem;
    margin-bottom: .75rem; */
}

/* Zeile 3 rechts: Kleinerer Textblock */
.grid-text-bottom-right {
    grid-column: 2;
    grid-row: 3;
    /* margin-left: .75rem;
    margin-bottom: .75rem; */
}


/* --- INHALTE DER ELEMENTE --- */

.fahrwerk-card-blue {
    position: relative;
    padding: 40px 50px;
    background: #003044;
    border: 1px solid #66C5EE;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fahrwerk-card-blue .fahrwerk-card-watermark {
    position: absolute;
    bottom: -20%;
    right: 0%;
    opacity: 0.2;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.fahrwerk-card-blue .card-content {
    position: relative;
    z-index: 2;
}

.fahrwerk-card-blue .card-title {
    font-size: 28px;
    font-weight: 700;
    font-style: italic;
    margin-top: 0;
    margin-bottom: 20px;
    color: #E6F5FC;
    text-transform: uppercase;
}

.fahrwerk-card-blue .card-text {
    font-size: 18px;
    line-height: 1.6;
    color: #E6F5FC;
}

.fahrwerk-card-blue .card-text ul {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}
.fahrwerk-card-blue .card-text ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}
.fahrwerk-card-blue .card-text ul li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: #E6F5FC;
}

.fahrwerk-text-block {
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center; 
}

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

.section-text {
    font-size: 18px;
    line-height: 1.6;
    color: #E6F5FC;
}

/* Unterer CTA */
.fahrwerk-cta {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* gap: 30px; */
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.cta-heading-italic {
    font-size: 2.5em;
    font-weight: 700;
    font-style: italic;
    line-height: 1.4;
    color: #E6F5FC;
    margin-bottom: 1rem;
}


/* ==========================================================================
   MEDIA OVERRIDES (Mobile & Tablet)
   ========================================================================== */

@media (max-width: 1200px) {
    .fahrwerk-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    /* Hebt die explizite Grid-Positionierung auf Mobile auf */
    .grid-img-top-left,
    .grid-text-top-right,
    .grid-card-mid-left,
    .grid-img-bottom-left,
    .grid-text-bottom-right {
        grid-column: auto;
        grid-row: auto;
    }

    .fahrwerk-card-blue,
    .fahrwerk-text-block {
        padding: 30px;
        height: auto;
    }

    .fahrwerk-card-blue .card-title,
    .section-title-italic {
        font-size: 22px;
    }

    .fahrwerk-card-blue .card-text,
    .section-text {
        font-size: 15px;
    }

    .fahrwerk-card-blue .fahrwerk-card-watermark {
        font-size: 8em;
        opacity: 0.12;
        bottom: -5%;
        right: 2%;
    }

    .fahrwerk-cta {
        /* gap: 20px; */
    }

    .fahrwerk-cta a{
        align-self:center;
    }

    .fahrwerk-cta a.header-request-btn{
        padding: 10px 30px !important;
        z-index:4 !important;
    }
    .fahrwerk-cta a.header-request-btn span{
        font-size:24px !important;
    }
    /* .cta-heading-italic {
        font-size: 24px;
        margin-bottom: 20px;
    } */
}


@media (max-width:576px){
    .cta-heading-italic{
        font-size: 21px;
    }
    .fahrwerk-cta a.header-request-btn span{
        font-size:21px !important;
    }
}


