/* zl-content v1.1.0 — Editorial-Karten für News/Tips/Angebote */
.zl-content { max-width: 1080px; margin: 24px auto; font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif; }
.zl-content * { box-sizing: border-box; }

.zlc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.zlc-grid--compact { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }

.zlc-card { display: flex; flex-direction: column; background: #fff; border: 1px solid #eee4da;
  border-radius: 14px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,.05);
  transition: box-shadow .15s, transform .15s; }
.zlc-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,.12); transform: translateY(-2px); }
.zlc-card--offer { background: #fff8f0; }

/* v1.1.1: feste Bildzone — das Bild bestimmt NICHT die Kartengröße
   (Torsten 2026-07-28), wird aber nie beschnitten (contain auf warmem Grund) */
.zlc-img { width: 100%; height: 210px; object-fit: contain;
    background: #f6f1e9; display: block; }
.zlc-grid--compact .zlc-img { height: 170px; }
.zlc-body { display: flex; flex-direction: column; gap: 8px; padding: 16px 18px 18px; flex: 1; }

.zlc-badge { align-self: flex-start; font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 3px 9px; border-radius: 999px; color: #fff; }
.zlc-badge--news { background: #0a7d6b; }
.zlc-badge--tip { background: #b45309; }
.zlc-badge--offer { background: #c2410c; }

.zlc-title { margin: 0; font-size: 1.15rem; font-weight: 800; line-height: 1.3; color: #1f2937; }
.zlc-text { font-size: .95rem; line-height: 1.55; color: #4b5563; }
.zlc-text p { margin: 0 0 .6em; }
.zlc-text p:last-child { margin-bottom: 0; }

.zlc-meta { font-size: .82rem; color: #9a6b3f; margin-top: auto; }
.zlc-btn { align-self: flex-start; background: #0a7d6b; color: #fff; border-radius: 8px;
  padding: 9px 16px; font-size: .95rem; font-weight: 600; text-decoration: none; }
.zlc-btn:hover { background: #086655; color: #fff; }
.zlc-link { align-self: flex-start; color: #0a7d6b; font-weight: 600;
    font-size: .92rem; text-decoration: none; }
.zlc-link:hover { text-decoration: underline; color: #086655; }

@media (max-width: 600px) {
  .zlc-grid, .zlc-grid--compact { grid-template-columns: 1fr; }
}
