/* =============================================================
   NATIONAL DAY — Plugin CSS  ·  v3 Accordion
   Personal HUB · Today sidebar widget
============================================================= */

#national-day-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--sage);
  border-radius: var(--radius-xl);
  padding: 14px 16px 10px;
  box-shadow: var(--shadow-sm);
}

.national-day-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.national-day-label { font-size: 9.5px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: var(--sage); }
.national-day-date { font-size: 10px; color: var(--text-3); font-family: var(--mono); }

/* ── Accordion-Liste ─────────────────────────────────────── */
.national-day-list { display: flex; flex-direction: column; }

.nd-item { display: flex; flex-direction: column; }
.nd-item--bordered { border-bottom: 1px solid var(--border); }

.nd-title-row {
  display: flex;
  align-items: center;
  gap: 7px;
  width: 100%;
  background: none;
  border: none;
  padding: 7px 0;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  font-size: 12.5px;
  font-weight: 500;
  font-family: var(--font);
  transition: color 120ms;
}
.nd-title-row:hover { color: var(--sage); }
.nd-title-row:focus { outline: none; }

.nd-arrow {
  font-size: 8px;
  color: var(--text-3);
  flex-shrink: 0;
  transition: transform 200ms ease;
  display: inline-block;
  line-height: 1;
}
.nd-item.nd-open .nd-arrow { transform: rotate(90deg); color: var(--sage); }
.nd-title-text { flex: 1; line-height: 1.35; }

/* Beschreibung — eingeklappt by default, smooth transition */
.nd-desc {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.55;
  padding: 0 0 0 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 250ms ease, opacity 200ms ease, padding-bottom 200ms ease;
  opacity: 0;
}
.nd-item.nd-open .nd-desc {
  max-height: 120px;
  opacity: 1;
  padding-bottom: 8px;
}
