.vorteile{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
@media(max-width:1100px){.vorteile{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.vorteile{grid-template-columns:1fr;gap:16px}}
.vort-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius);padding:28px;transition:all .25s ease;position:relative}
.vort-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);border-color:var(--primary)}
.vort-icon{width:52px;height:52px;border-radius:12px;background:var(--accent-soft);display:grid;place-items:center;margin-bottom:20px;color:#1f8a4d}
.vort-icon svg{width:26px;height:26px}
.vort-card:nth-child(even) .vort-icon{background:#EFE3FF;color:var(--primary)}
.vort-card .vort-num{position:absolute;top:20px;right:24px;font-size:36px;font-weight:800;color:var(--bg-alt);line-height:1}
.vort-card h4{margin-bottom:10px;font-size:18px;font-weight:700;color:var(--ink)}
.vort-card p{font-size:14.5px;color:var(--text);line-height:1.55}

.vort-card--featured{background:linear-gradient(135deg,#EFE3FF,#F7F7FA);border-color:transparent}
.vort-card--featured .vort-num{color:#fff}
.vort-card--featured .vort-icon,
.vorteile .vort-card--featured:nth-child(even) .vort-icon{background:var(--primary);color:#fff}
