/* DriveSolution – Leistungen als große Bildstreifen */

.ds-feature-list{display:flex;flex-direction:column;gap:18px}
.ds-feat{position:relative;display:grid;grid-template-columns:1.1fr 1fr;min-height:340px;border:1px solid var(--ds-border);border-radius:var(--ds-r);overflow:hidden;background:var(--ds-surface)}
.ds-feat--rev{grid-template-columns:1fr 1.1fr}
.ds-feat__img{position:relative;overflow:hidden}
.ds-feat__img img{width:100%;height:100%;object-fit:cover;transition:transform .8s cubic-bezier(.16,1,.3,1)}
.ds-feat:hover .ds-feat__img img{transform:scale(1.06)}
.ds-feat--rev .ds-feat__img{order:2}
.ds-feat__body{padding:48px;display:flex;flex-direction:column;justify-content:center}
.ds-feat__num{font-family:"Archivo",sans-serif;font-weight:800;font-size:.8rem;letter-spacing:.2em;color:var(--ds-accent);margin-bottom:1rem}
.ds-feat__body h3{font-family:"Archivo",sans-serif;font-weight:800;text-transform:uppercase;font-size:2rem;letter-spacing:-.01em;line-height:1;margin-bottom:1rem}
.ds-feat__body p{color:var(--ds-muted);font-size:1.05rem;max-width:42ch;margin-bottom:1.6rem}
.ds-feat__more{font-family:"Archivo",sans-serif;font-weight:700;font-size:.84rem;letter-spacing:.08em;text-transform:uppercase;color:#fff;display:inline-flex;gap:.5rem;align-items:center;transition:gap .2s,color .2s}
.ds-feat__more .ds-ico{font-size:1rem}
.ds-feat:hover .ds-feat__more{gap:.9rem;color:var(--ds-accent)}
.ds-feature-all{margin-top:40px;text-align:center}

@media(max-width:980px){
  .ds-feat,.ds-feat--rev{grid-template-columns:1fr}
  .ds-feat__img{min-height:240px}
  .ds-feat--rev .ds-feat__img{order:0}
  .ds-feat__body{padding:36px}
}
