.fuhrpark-einblick {
    position: relative;
    overflow: hidden;
    padding: clamp(78px, 9vw, 132px) 0;
    color: var(--weiss);
    background:
        radial-gradient(circle at 12% 18%, rgba(100, 227, 234, .14), transparent 31%),
        radial-gradient(circle at 88% 78%, rgba(0, 164, 179, .13), transparent 34%),
        var(--dunkel);
}

.fuhrpark-einblick::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .2;
    background-image:
        linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: linear-gradient(90deg, transparent, #000 28%, #000 78%, transparent);
}

.fuhrpark-einblick__raster {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
    gap: clamp(42px, 7vw, 96px);
    align-items: center;
}

.fuhrpark-einblick__text {
    max-width: 610px;
}

.fuhrpark-einblick__text h2 {
    margin: 0 0 24px;
    font-size: clamp(2.25rem, 4.2vw, 4.9rem);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.fuhrpark-einblick__text > p:not(.eyebrow) {
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: clamp(1rem, 1.25vw, 1.16rem);
}

.fuhrpark-einblick__punkte {
    display: grid;
    gap: 12px;
    margin: 30px 0 34px;
    padding: 0;
    list-style: none;
}

.fuhrpark-einblick__punkte li {
    position: relative;
    padding-left: 30px;
    color: rgba(255, 255, 255, .9);
    font-weight: 650;
}

.fuhrpark-einblick__punkte li::before {
    content: "";
    position: absolute;
    top: .72em;
    left: 0;
    width: 14px;
    height: 2px;
    background: var(--tuerkis-hell);
    box-shadow: 6px 0 0 rgba(100, 227, 234, .34);
}

.fuhrpark-einblick__galerie {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(220px, .88fr);
    gap: clamp(16px, 2vw, 26px);
    align-items: end;
}

.fuhrparkfoto {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: clamp(22px, 2.5vw, 34px);
    background: var(--dunkel-2);
    box-shadow: 0 30px 78px rgba(0, 0, 0, .3);
    transform-style: preserve-3d;
    transition:
        opacity .72s cubic-bezier(.2, .65, .25, 1),
        transform .28s ease,
        border-color .28s ease,
        box-shadow .28s ease;
}

.fuhrparkfoto:hover {
    border-color: rgba(100, 227, 234, .42);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .38);
}

.fuhrparkfoto--reise {
    margin-bottom: clamp(0px, 4vw, 54px);
}

.fuhrparkfoto__picture,
.fuhrparkfoto__picture img {
    display: block;
    width: 100%;
}

.fuhrparkfoto__picture img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2, .65, .25, 1);
}

.fuhrparkfoto--gross .fuhrparkfoto__picture img {
    object-position: 54% 46%;
}

.fuhrparkfoto--reise .fuhrparkfoto__picture img {
    aspect-ratio: 4 / 3;
    object-position: center 48%;
}

.fuhrparkfoto:hover .fuhrparkfoto__picture img {
    transform: scale(1.035);
}

.fuhrparkfoto::after {
    content: "";
    position: absolute;
    inset: 42% 0 0;
    pointer-events: none;
    background: linear-gradient(0deg, rgba(3, 22, 29, .94), rgba(3, 22, 29, .02));
}

.fuhrparkfoto figcaption {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    gap: 5px;
    padding: clamp(18px, 2.5vw, 28px);
}

.fuhrparkfoto figcaption strong {
    color: var(--weiss);
    font-size: clamp(1.05rem, 1.35vw, 1.35rem);
    line-height: 1.2;
}

.fuhrparkfoto figcaption span {
    color: rgba(255, 255, 255, .72);
    font-size: .9rem;
    line-height: 1.45;
}

@media (max-width: 1080px) {
    .fuhrpark-einblick__raster {
        grid-template-columns: 1fr;
    }

    .fuhrpark-einblick__text {
        max-width: 790px;
    }

    .fuhrpark-einblick__galerie {
        max-width: 900px;
    }
}

@media (max-width: 680px) {
    .fuhrpark-einblick::before {
        background-size: 46px 46px;
    }

    .fuhrpark-einblick__galerie {
        grid-template-columns: 1fr;
    }

    .fuhrparkfoto--reise {
        width: min(88%, 520px);
        margin: -34px 0 0 auto;
    }

    .fuhrparkfoto--gross .fuhrparkfoto__picture img {
        aspect-ratio: 4 / 3;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fuhrparkfoto,
    .fuhrparkfoto__picture img {
        transition: none;
    }

    .fuhrparkfoto:hover .fuhrparkfoto__picture img {
        transform: none;
    }
}
