/* ============================================================
   LEASING MIETEN1 SECTION
   ============================================================ */

   .leasing-mieten1-section {
    background-color: var(--nachtblau);
    overflow: hidden;
}

.leasing-mieten1-text {
    padding: 60px 24px;
}

.leasing-mieten1-headline {
    color: var(--weiss);
    margin: 0 0 24px;
}

.leasing-mieten1-copy {
    color: var(--weiss);
    margin: 0 0 16px;
}

.leasing-mieten1-copy:last-child {
    margin-bottom: 0;
}

.leasing-mieten1-liste {
    color: var(--weiss);
    margin: 0;
    padding-left: 20px;
}

.leasing-mieten1-liste li {
    margin-bottom: 8px;
}

.leasing-mieten1-link {
    color: var(--weiss);
    text-decoration: underline;
}

.leasing-mieten1-link:hover {
    color: var(--sonnenuntergangsgelb);
}

.leasing-mieten1-bild {
    width: 100%;
    line-height: 0;
}

.leasing-mieten1-img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 720 / 540;
}

@media (min-width: 700px) {
    .leasing-mieten1-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }

    .leasing-mieten1-text {
        padding: 60px 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .leasing-mieten1-bild {
        overflow: hidden;
    }

    .leasing-mieten1-img {
        width: 100%;
        height: 100%;
        aspect-ratio: unset;
        object-fit: cover;
        display: block;
    }
}


/* ============================================================
   LEASING VORTEILE SECTION
   ============================================================ */

.leasing-vorteile-section {
    background-color: var(--nachtblau);
    padding: 60px 24px 0;
}

.leasing-vorteile-headline {
    color: var(--weiss);
    margin: 0 0 40px;
}

.leasing-vorteile-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.leasing-vorteile-card {
    border: 1px solid var(--weiss);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.leasing-vorteile-nr {
    color: var(--weiss);
    margin: 0;
}

.leasing-vorteile-copy {
    color: var(--weiss);
    margin: 0;
}

@media (min-width: 700px) {
    .leasing-vorteile-section {
        padding: 60px 60px 0;
    }

    .leasing-vorteile-grid {
        flex-direction: row;
    }

    .leasing-vorteile-card {
        flex: 1;
    }
}


/* ============================================================
   LEASING FC3 SECTION
   ============================================================ */

.leasing-fc3-section {
    background-color: var(--nachtblau);
    padding: 60px 24px;
}

.leasing-fc3-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.leasing-fc3-card {
    border-radius: 12px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.leasing-fc3-card--sandgelb  { background-color: var(--sandgelb); }
.leasing-fc3-card--gelb      { background-color: var(--sonnenuntergangsgelb); }
.leasing-fc3-card--nachtblau { background-color: var(--nachtblau); }

.leasing-fc3-title        { color: var(--nachtblau); margin: 0; }
.leasing-fc3-title--weiss { color: var(--weiss); }

.leasing-fc3-copy        { color: var(--nachtblau); margin: 0; }
.leasing-fc3-copy--weiss { color: var(--weiss); }

.leasing-fc3-list {
    color: var(--nachtblau);
    margin: 0;
    padding-left: 20px;
}

.leasing-fc3-list li {
    margin-bottom: 6px;
}

.leasing-fc3-link {
    color: var(--weiss);
    text-decoration: underline;
}

.leasing-fc3-link:hover {
    color: var(--sonnenuntergangsgelb);
}

@media (min-width: 700px) {
    .leasing-fc3-section {
        padding: 60px 60px;
    }

    .leasing-fc3-grid {
        flex-direction: row;
        align-items: stretch;
    }

    .leasing-fc3-card {
        flex: 1;
    }
}


/* ============================================================
   LEASING RECHNER TEXT SECTION
   ============================================================ */

.leasing-rechner-text-section {
    background-color: var(--nachtblau);
    padding: 60px 24px 40px;
}

.leasing-rechner-text-headline {
    color: var(--weiss);
    margin: 0;
}

@media (min-width: 700px) {
    .leasing-rechner-text-section {
        padding: 60px 60px 40px;
    }
}


/* ============================================================
   LEASING RECHNER SECTION
   ============================================================ */

.leasing-rechner-section {
    background-color: var(--nachtblau);
    padding: 0 24px 60px;
}

.leasing-rechner-container {
    max-width: 700px;
    margin: 0;
}

.leasing-rechner-iframe {
    display: block;
    border: none;
    height: 800px;
    width: 100%;
}

@media (min-width: 700px) {
    .leasing-rechner-section {
        padding: 0 60px 60px;
    }

    .leasing-rechner-iframe {
        width: 700px;
        height: 830px;
    }
}