/* Featured-Beitrag */
.nz-rg-featured {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  background: var(--nz-bg); border: 1px solid var(--nz-border);
  border-radius: 8px; overflow: hidden; margin-top: 3rem;
  box-shadow: var(--nz-shadow); text-decoration: none; color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nz-rg-featured:hover { transform: translateY(-4px); box-shadow: var(--nz-shadow-deep); text-decoration: none; }
.nz-rg-featured-img {
  background: linear-gradient(145deg, var(--nz-cream-dark) 0%, var(--nz-cream) 100%);
  min-height: 280px; position: relative; display: flex; align-items: center; justify-content: center;
}
.nz-rg-featured-img::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 18px, rgba(0,68,94,0.03) 18px, rgba(0,68,94,0.03) 19px);
}
.nz-rg-featured-img span { position: relative; font-size: 0.8rem; color: var(--nz-text-muted); }
.nz-rg-featured-body { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.nz-rg-featured-tag {
  display: inline-flex; align-items: center; gap: 0.5rem; align-self: flex-start;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--nz-accent); font-weight: 700; margin-bottom: 1rem;
}
.nz-rg-featured-body h2 { font-size: 1.9rem; font-weight: 400; margin-bottom: 1rem; line-height: 1.25; }
.nz-rg-featured-body p { color: var(--nz-text-muted); margin-bottom: 1.5rem; }
.nz-rg-meta { font-size: 0.82rem; color: var(--nz-text-muted); font-weight: 600; }

/* Filter-Pills (als div role=button — Breakdance überschreibt <button>) */
.nz-rg-filters { display: flex; flex-wrap: wrap; gap: 0.7rem; margin: 4rem 0 2rem; }
.nz-rg-pill {
  padding: 0.55rem 1.25rem; border-radius: 100px; cursor: pointer;
  font-size: 0.88rem; font-weight: 600; border: 1px solid var(--nz-border);
  background: var(--nz-bg); color: var(--nz-text-muted); transition: all 0.18s;
  user-select: none;
}
.nz-rg-pill:hover { border-color: var(--nz-accent); color: var(--nz-primary); }
.nz-rg-pill.is-active { background: var(--nz-primary); color: #fff; border-color: var(--nz-primary); }

/* Beitrags-Grid */
.nz-rg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.nz-rg-card {
  display: flex; flex-direction: column;
  background: var(--nz-bg); border: 1px solid var(--nz-border);
  border-radius: 6px; overflow: hidden; text-decoration: none; color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nz-rg-card:hover { transform: translateY(-4px); box-shadow: var(--nz-shadow); text-decoration: none; }
.nz-rg-card-img {
  height: 150px; background: linear-gradient(145deg, var(--nz-cream-dark) 0%, var(--nz-cream) 100%);
  position: relative; flex-shrink: 0;
}
.nz-rg-card-img::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 14px, rgba(0,68,94,0.03) 14px, rgba(0,68,94,0.03) 15px);
}
.nz-rg-card-body { padding: 1.6rem; display: flex; flex-direction: column; flex-grow: 1; }
.nz-rg-card-tag {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--nz-accent); font-weight: 700; margin-bottom: 0.7rem;
}
.nz-rg-card-body h3 { font-size: 1.25rem; font-weight: 500; margin-bottom: 0.7rem; line-height: 1.3; }
.nz-rg-card-body p { font-size: 0.9rem; color: var(--nz-text-muted); margin-bottom: 1.2rem; flex-grow: 1; }
.nz-rg-card .nz-rg-meta { margin-top: auto; }

.nz-rg-empty { display: none; text-align: center; padding: 3rem; color: var(--nz-text-muted); }

@media (max-width: 860px) {
  .nz-rg-featured { grid-template-columns: 1fr; }
  .nz-rg-featured-img { min-height: 180px; }
  .nz-rg-grid { grid-template-columns: 1fr; }
}
