.lp-providers{
margin-top:30px;
}

/* Anbieter Card */

.lp-card{
display:flex;
gap:25px;
align-items:center;
border:1px solid #e3e3e3;
padding:22px;
margin-bottom:20px;
border-radius:10px;
background:white;
position:relative;
transition:box-shadow .2s ease;
}

.lp-card:hover{
box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

/* Badge */

.lp-badge{
position:absolute;
top:12px;
right:12px;
background:#0a7c3f;
color:white;
padding:5px 12px;
font-size:12px;
border-radius:6px;
font-weight:600;
}

/* Logo */

.lp-logo{
width:200px;
flex-shrink:0;
}

.lp-logo img{
width:100%;
height:auto;
object-fit:contain;
}

/* Content */

.lp-content{
flex:1;
}

/* Firmenname */

.lp-content h3{
font-size:28px;
margin:0 0 8px 0;
color:#1d5c52;
font-weight:600;
}

/* Leistungen */

.lp-services{
margin-bottom:10px;
}

.lp-services span{
display:inline-block;
background:#f2f2f2;
padding:5px 10px;
margin:3px;
font-size:12px;
border-radius:6px;
color:#666;
}

/* Kontakt */

.lp-contact{
margin-top:5px;
font-size:15px;
}

.lp-contact a{
display:inline-block;
margin-right:20px;
color:#1d5c52;
text-decoration:none;
font-weight:500;
}

.lp-contact a:hover{
text-decoration:underline;
}

/* Banner */

.lp-banner{
margin:25px 0;
display:flex;
justify-content:center;
}

.lp-banner a{
display:block;
width:100%;
max-width:640px;
border-radius:10px;
overflow:hidden;
box-shadow:0 3px 10px rgba(0,0,0,0.12);
transition:transform .2s ease, box-shadow .2s ease;
}

.lp-banner img{
width:100%;
height:auto;
display:block;
}

.lp-banner a:hover{
transform:translateY(-2px);
box-shadow:0 6px 16px rgba(0,0,0,0.16);
}

/* Mobile */

@media (max-width:768px){

.lp-card{
flex-direction:column;
align-items:flex-start;
}

.lp-logo{
width:90px;
}

.lp-content h3{
font-size:22px;
}

.lp-banner a{
max-width:100%;
}

}