.hero-klein{
    position:relative;
    min-height:320px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;

    background-image:url('../images/teaser/team-mueller.jpg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.contact-card{
    background:rgba(255,255,255,0.04);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:1rem;
    padding:2rem;
    height:100%;
}

.contact-item{
    display:flex;
    gap:1.25rem;
    margin-bottom:2rem;
}

.contact-item:last-child{
    margin-bottom:0;
}

.contact-item i{
    font-size:1.4rem;
    color:var(--color-akzent);
    margin-top:.35rem;
    min-width:24px;
}

.contact-item h3{
    font-size:1rem;
    margin-bottom:.35rem;
}

.contact-item p{
    margin-bottom:0;
    line-height:1.6;
}

.map-section{
    margin-top:4rem;
}

.mapsiframe{
    width:100%;
    height:500px;
    border:none;
    display:block;
}

@media(max-width:992px){

    .hero-klein{
        min-height:220px;
    }

    .contact-card{
        padding:1.5rem;
    }

    .mapsiframe{
        height:400px;
    }

}