/* Shared chrome for Hilfe / help topic pages */
:root {
  --ink: #3a3228;
  --mute: #7a6f62;
  --line: rgba(90, 70, 50, 0.18);
  --teal: #2a5c5c;
  --coral: #c45c4a;
  --paper: #fff9f0;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Manrope, system-ui, sans-serif;
  color: var(--ink);
  background: #e8dfd2;
  line-height: 1.55;
  min-height: 100%;
}
.top {
  position: sticky; top: 0; z-index: 5;
  background: rgba(255, 249, 240, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.top-inner {
  max-width: 920px; margin: 0 auto;
  padding: 12px 22px;
  display: flex; flex-wrap: wrap; gap: 10px 16px;
  align-items: center; justify-content: space-between;
}
.top a.back { color: var(--coral); font-weight: 800; text-decoration: none; }
.toc {
  display: flex; flex-wrap: wrap; gap: 6px 10px;
  font-size: 12px;
}
.toc a {
  color: var(--teal); text-decoration: none; font-weight: 600;
  padding: 4px 8px; border-radius: 999px;
}
.toc a:hover { text-decoration: underline; }
.toc a.on {
  background: rgba(42, 92, 92, 0.12);
  font-weight: 800;
  text-decoration: none;
}
.lang-btn {
  font: inherit; font-size: 12px; font-weight: 800;
  border: 1.5px solid var(--line); background: #fff;
  border-radius: 999px; padding: 6px 12px; cursor: pointer; color: var(--ink);
}
.wrap { max-width: 720px; margin: 0 auto; padding: 28px 22px 72px; }
.crumb {
  font-size: 12.5px; color: var(--mute); margin-bottom: 10px; font-weight: 600;
}
.crumb a { color: var(--teal); text-decoration: none; font-weight: 700; }
.crumb a:hover { text-decoration: underline; }
.tag {
  display: inline-block; font-size: 11px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--mute); margin-bottom: 8px;
}
h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem; color: var(--teal); margin-bottom: 14px;
}
.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 22px 18px;
  margin-bottom: 18px;
}
.panel + .panel { margin-top: 0; }
.panel h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  color: var(--teal);
  margin: 18px 0 10px;
}
.panel h2:first-child { margin-top: 0; }
.panel h3 {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  margin: 14px 0 6px;
}
.draft {
  background: #fff3e8; border: 1px solid var(--line);
  border-radius: 12px; padding: 12px 14px; font-size: 13.5px; margin-bottom: 20px;
}
.callout {
  background: rgba(42, 92, 92, 0.08);
  border-left: 3px solid var(--teal);
  border-radius: 0 10px 10px 0;
  padding: 12px 14px;
  margin: 14px 0;
  font-size: 14px;
}
.callout.warn {
  background: #fff3e8;
  border-left-color: var(--coral);
}
.table-wrap { overflow-x: auto; margin: 12px 0 16px; }
table.help {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
table.help th, table.help td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
table.help th {
  background: rgba(42, 92, 92, 0.1);
  font-weight: 800;
  color: var(--teal);
}
table.help td strong { color: var(--ink); }
.topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin: 12px 0 8px;
}
.topic-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--teal);
  transition: border-color .15s, box-shadow .15s;
}
.topic-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 14px rgba(42, 92, 92, 0.12);
}
.topic-card span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--mute);
  margin-top: 4px;
}
p, li { font-size: 14.5px; margin-bottom: 8px; }
ul, ol { padding-left: 1.2em; margin-bottom: 10px; }
ol li { margin-bottom: 6px; }
a { color: var(--coral); font-weight: 700; }
.muted { color: var(--mute); font-size: 13px; }
.foot-link { margin-top: 20px; font-size: 13.5px; }
/* FAQ: flat question list (no category headings) */
#faqList {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: transparent;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 12px 14px;
  font-weight: 700;
  font-size: 14px;
  list-style: none;
  background: transparent;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }
.faq-a {
  padding: 0 14px 14px;
  font-size: 14px;
  color: var(--ink);
  white-space: pre-wrap;
  background: transparent;
}
.faq-item.hot summary { border-left: 3px solid #ff2a00; }
/* Help topics under FAQ (and other help pages): one line, fully transparent BG */
.help-under-line {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px 16px;
  margin-top: 18px;
  padding: 12px 0 0;
  border-top: 1px solid var(--line);
  overflow-x: auto;
  white-space: nowrap;
  background: transparent; /* 100% transparent */
  -webkit-overflow-scrolling: touch;
}
.help-under-line a {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  background: transparent;
  border: 0;
  padding: 0;
  white-space: nowrap;
}
.help-under-line a:hover { text-decoration: underline; }
/* Legacy sibling chips → same one-line transparent style on all help pages */
.sibling {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px 16px;
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  overflow-x: auto;
  white-space: nowrap;
  background: transparent;
  -webkit-overflow-scrolling: touch;
}
.sibling a {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: var(--teal);
  border: 0;
  background: transparent;
  border-radius: 0;
  padding: 0;
  white-space: nowrap;
}
.sibling a:hover {
  border-color: transparent;
  text-decoration: underline;
}
