/* ════════════════════════════════════════════════════════════════════
   aktuelles.css
   Accordion "Aktuelles" für index.html Hero-Bereich!
   ════════════════════════════════════════════════════════════════════ */

.news-accordion {
  margin: 1.5rem auto 2rem;
  max-width: 480px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}
.news-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 1rem;
  background: transparent;
  border: none;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s;
}
.news-trigger:hover { color: var(--text); }
.news-arrow {
  font-size: 0.65rem;
  transition: transform 0.3s;
}
.news-accordion.open .news-arrow { transform: rotate(180deg); }
.news-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.news-accordion.open .news-body { max-height: 1000px; }
.news-list {
  list-style: none;
  padding: 0 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid var(--border);
}
.news-list li {
  font-size: 0.8rem;
  color: var(--muted);
  padding-top: 0.5rem;
}
.news-date {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  margin-right: 0.5rem;
}
