/*
 * styles.css — Design-System "Clean SaaS" für Roboratgeber.de
 * Quelle der Gestaltungsvorgaben: inbox/redesign-webseite.txt + research/redesign1.png
 * Vanilla CSS, keine Frameworks, keine Build-Tools (02_GUARDRAILS.md §F).
 * Wiederverwendbar für alle product/website/-Seiten.
 */

:root {
  /* Hintergründe */
  --bg:        #ffffff;   /* Reinweiß, Clean-Look-Basis */
  --bg-soft:   #f0f2f5;   /* sehr leichte Flächen */
  --bg-card:   #ffffff;
  /* Text / UI-Kontrast */
  --navy:      #1a3c63;   /* tiefes Marineblau — H1/H2/Navi */
  --ink:       #1c2b39;   /* Anthrazit-Blau — Fließtext */
  --fg:        #1c2b39;   /* Alias zu --ink für Legacy-Seitenstile (z.B. TrueCost-Ergebnis) */
  --muted:     #5a6b7b;   /* gedämpfter Text */
  /* Akzent / CTA */
  --accent:    #1d8bfd;   /* SaaS-Blau */
  --accent-d:  #0f6fd6;   /* Hover */
  /* Kategorie-Akzente */
  --cobot:     #00c2e8;   /* Cyan */
  --industrie: #f7931e;   /* Orange */
  --humanoid:  #1d8bfd;   /* SaaS-Blau */
  --verified:  #4caf50;   /* dezentes Grün */
  /* Linien / Schatten */
  --line:      #e1e8ee;
  /* Status-/Hinweis-Töne (Artikel-/Formular-Layer) */
  --warn:      #7a5200;   /* Amber-Text für Pflicht-Hinweise */
  --warn-bg:   #fffbf0;
  --ok:        #1a4a1a;
  --ok-bg:     #f0fff0;
  --err:       #a32525;   /* Formular-Fehler */
  --shadow:    0 1px 2px rgba(26,60,99,.04), 0 6px 20px rgba(26,60,99,.06);
  --shadow-h:  0 2px 6px rgba(26,60,99,.08), 0 12px 32px rgba(26,60,99,.12);
  --radius:    12px;
  --maxw:      1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 64px; gap: 1rem;
}
.brand {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 700; font-size: 1.08rem; color: var(--navy); white-space: nowrap;
}
.brand:hover { text-decoration: none; }
.brand .logo-mark { width: 26px; height: 26px; flex: none; }
.main-nav { display: flex; align-items: center; gap: .35rem; flex-wrap: wrap; }
.main-nav a {
  color: var(--navy); font-size: .92rem; font-weight: 500;
  padding: .4rem .6rem; border-radius: 8px;
}
.main-nav a:hover { background: var(--bg-soft); text-decoration: none; }
.main-nav a.is-cta {
  background: var(--accent); color: #fff;
}
.main-nav a.is-cta:hover { background: var(--accent-d); }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 8px; padding: .35rem .55rem; cursor: pointer; color: var(--navy);
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  padding: .45rem 0;
  font-size: .82rem;
}
.breadcrumb ol {
  max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem;
  list-style: none; display: flex; align-items: center; gap: .3rem; flex-wrap: wrap;
}
.breadcrumb li { display: flex; align-items: center; gap: .3rem; color: var(--muted); }
.breadcrumb li + li::before { content: '›'; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--navy); text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--ink); font-weight: 500; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 600; font-size: .98rem; line-height: 1;
  padding: .85rem 1.4rem; border-radius: 10px; border: 2px solid transparent;
  cursor: pointer; transition: background .15s, border-color .15s, color .15s;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-d); border-color: var(--accent-d); }
.btn-outline { background: #fff; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover { background: rgba(29,139,253,.06); }

/* ---------- Hero ---------- */
.hero { padding: 4.5rem 0 3.5rem; }
.hero .container {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 3rem; align-items: center;
}
.hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.1rem); line-height: 1.08;
  letter-spacing: -.02em; color: var(--navy);
  font-weight: 800; margin: 0 0 1rem; text-transform: uppercase;
}
.hero .lede {
  font-size: 1.25rem; color: var(--navy); font-weight: 600; margin: 0 0 .6rem;
}
.hero .who { font-size: 1.02rem; color: var(--muted); margin: 0 0 1.8rem; max-width: 54ch; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-media {
  background: linear-gradient(135deg, #eef3f9 0%, #f7fafd 60%, #ffffff 100%);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 1.5rem; aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-media svg { width: 100%; height: 100%; }

/* ---------- Section ---------- */
.section { padding: 3.5rem 0; }
.section.alt { background: var(--bg-soft); }
.section-head { max-width: 62ch; margin: 0 0 2rem; }
.section-head h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem); color: var(--navy);
  font-weight: 700; letter-spacing: -.01em; margin: 0 0 .5rem;
}
.section-head .sub { color: var(--muted); font-size: 1.05rem; margin: 0; }

/* ---------- Cards ---------- */
.cards { display: grid; gap: 1.5rem; grid-template-columns: repeat(3, 1fr); }
.cards.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  position: relative; display: flex; flex-direction: column;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.6rem 1.5rem; transition: box-shadow .18s, transform .18s;
}
.card:hover { box-shadow: var(--shadow-h); transform: translateY(-2px); }
.card-icon {
  width: 52px; height: 52px; border-radius: 12px; margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center; flex: none;
}
.card-icon svg { width: 30px; height: 30px; }
.card h3 {
  font-size: 1.15rem; color: var(--navy); font-weight: 700;
  margin: 0 0 .5rem; text-transform: uppercase; letter-spacing: .01em;
}
.card p { font-size: .96rem; color: var(--ink); margin: 0 0 1.4rem; flex: 1; }
.card .btn { align-self: flex-start; }

/* kleinere Card-Variante für Text-Listen (Ratgeber etc.) */
.card.simple { padding: 1.4rem 1.4rem; }
.card.simple h3 { text-transform: none; font-size: 1.08rem; }

/* Verified-/Quellenbelegt-Badge oben rechts */
.badge-verified {
  position: absolute; top: 1rem; right: 1rem;
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .74rem; font-weight: 600; color: var(--verified);
  background: rgba(76,175,80,.1); border-radius: 999px; padding: .2rem .55rem;
}
.badge-verified svg { width: 13px; height: 13px; }

/* kleines Kategorie-Tag (inline) */
.tag {
  display: inline-block; font-size: .72rem; font-weight: 600; color: var(--muted);
  border: 1px solid var(--line); background: #fff; border-radius: 999px;
  padding: .12rem .55rem; margin-bottom: .6rem; align-self: flex-start;
}

/* ---------- Kategorie-/Inhaltsseiten ---------- */
/* Hinweis-/Disclaimer-Box (z.B. „Angaben ohne Gewähr") */
.note {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-left: 3px solid var(--accent); border-radius: 10px;
  padding: 1rem 1.2rem; color: var(--muted); font-size: .95rem; margin: 0;
}
/* Modellkarte: Titel ist Link zur Datenblatt-Seite */
.card h3 a { color: inherit; }
.card h3 a:hover { color: var(--accent); text-decoration: none; }
/* Weiterführende Link-Listen */
.link-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.link-list li {
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: .8rem 1.1rem; font-size: .96rem; box-shadow: var(--shadow);
}
.link-list li a { font-weight: 600; }
.subhead {
  font-size: 1.2rem; color: var(--navy); font-weight: 700;
  margin: 0 0 1rem; letter-spacing: -.01em;
}
.subhead:not(:first-child) { margin-top: 2.2rem; }
.cat-cross { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Trust-Liste ---------- */
.trust { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem;
         grid-template-columns: repeat(3, 1fr); }
.trust li {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.3rem 1.4rem; box-shadow: var(--shadow); font-size: 1rem;
}
.trust li strong { color: var(--navy); display: block; margin-bottom: .3rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink); color: #c7d2dd; padding: 3rem 0 1.5rem; margin-top: 4rem;
}
.site-footer a { color: #c7d2dd; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem;
  padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand .brand { color: #fff; }
.footer-brand p { font-size: .92rem; color: #9fb0be; margin: .9rem 0 0; max-width: 30ch; }
.footer-col h4 {
  font-size: .8rem; text-transform: uppercase; letter-spacing: .06em;
  color: #fff; margin: 0 0 .9rem; font-weight: 700;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin: .5rem 0; }
.footer-col a { font-size: .93rem; }
.social { display: flex; gap: .7rem; margin-top: 1.1rem; }
.social a {
  width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
}
.social a:hover { background: rgba(255,255,255,.18); }
.social svg { width: 17px; height: 17px; fill: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
  padding-top: 1.4rem; font-size: .85rem; color: #9fb0be;
}
.footer-bottom [data-site-notice] p { margin: .2rem 0; }
.footer-bottom .muted { color: #9fb0be; font-size: .85rem; }

/* ---------- Responsiv ---------- */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 2rem; }
  .hero-media { order: -1; aspect-ratio: 16 / 9; }
  .cards, .cards.cols-2 { grid-template-columns: 1fr 1fr; }
  .trust { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .main-nav {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: .5rem 1rem 1rem;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: .7rem .4rem; }
  .nav-toggle { display: inline-flex; }
  .hero { padding: 2.5rem 0; }
  .section { padding: 2.5rem 0; }
  .cards, .cards.cols-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
 * Artikel-/Inhaltsseiten-Layer (Ratgeber, FAQ, Glossar, Förderungen, RaaS …)
 * Prosa-, Tabellen- und Formular-Stile — bewusst unter .article gescopt,
 * damit die komponentenbasierten Landingpages (Hero/Cards) unberührt bleiben.
 * Klassennamen sind 1:1 zu den bestehenden Seiten-Markups gewählt.
 * ========================================================================= */

.article {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}
.article.narrow { max-width: 760px; }

.article h1 {
  font-size: clamp(1.7rem, 3vw, 2.1rem); line-height: 1.18;
  color: var(--navy); font-weight: 800; letter-spacing: -.01em; margin: 0 0 .5rem;
}
.article h2 {
  font-size: 1.3rem; color: var(--navy); font-weight: 700;
  margin: 2.6rem 0 .5rem; padding-top: .9rem; border-top: 1px solid var(--line);
}
.article h3 { font-size: 1.08rem; color: var(--navy); font-weight: 700; margin: 1.6rem 0 .35rem; }
.article p { margin: .6rem 0 1rem; }
.article ul, .article ol { padding-left: 1.3rem; margin: .5rem 0 1rem; }
.article li { margin: .35rem 0; }
.article a { color: var(--accent); }
.article sup { font-size: .7em; }

.article-meta { color: var(--muted); font-size: .88rem; margin: .5rem 0 2rem; }
.article .lede {
  font-size: 1.15rem; color: var(--ink); margin: 0 0 1.5rem; max-width: 70ch; font-weight: 500;
}
.article .who { color: var(--muted); font-size: .98rem; margin: 0 0 1.5rem; max-width: 66ch; }
.muted { color: var(--muted); font-size: .9rem; }

/* ---------- Tabellen ---------- */
.article table, .prog-table, .compare-table {
  width: 100%; border-collapse: collapse; font-size: .92rem; margin: 1rem 0 1.5rem;
}
.article th, .prog-table th, .compare-table th {
  text-align: left; font-weight: 600; border-bottom: 2px solid var(--line);
  padding: .5rem .6rem; background: var(--bg-soft); color: var(--navy);
}
.article td, .prog-table td, .compare-table td {
  border-bottom: 1px solid var(--line); padding: .5rem .6rem; vertical-align: top;
}
.prog-table tr:last-child td { border-bottom: none; }
.prog-table td:first-child { font-weight: 600; white-space: nowrap; }
.compare-table td:nth-child(2), .compare-table td:nth-child(3),
.compare-table th:nth-child(2), .compare-table th:nth-child(3) { text-align: center; }
@media (max-width: 600px) { .prog-table td:first-child { white-space: normal; } }

/* ---------- Hinweis-/Status-Boxen ---------- */
.notice {
  background: var(--warn-bg); border-left: 3px solid var(--warn);
  padding: .75rem 1rem; font-size: .92rem; margin: 1.5rem 0; color: var(--warn);
  border-radius: 0 8px 8px 0;
}
.hint-ok {
  background: var(--ok-bg); border-left: 3px solid var(--ok);
  padding: .75rem 1rem; font-size: .92rem; margin: 1.5rem 0; color: var(--ok);
  border-radius: 0 8px 8px 0;
}
.cta-box {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.3rem 1.5rem; margin: 2.5rem 0;
}
.cta-box h3 { margin: 0 0 .5rem; font-size: 1.1rem; color: var(--navy); }
.cta-box a { font-weight: 600; }
.newsletter-cta {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.3rem 1.5rem; margin: 2.5rem 0;
  display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.5rem;
  justify-content: space-between;
}
.newsletter-cta p { margin: 0; flex: 1 1 280px; font-size: .95rem; color: var(--navy); }
.newsletter-cta-btn {
  display: inline-block; background: var(--accent); color: #fff; font-weight: 600;
  padding: .6rem 1.1rem; border-radius: 8px; white-space: nowrap;
}
.newsletter-cta-btn:hover { background: var(--accent-d); text-decoration: none; }
.step {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.1rem 1.3rem; margin: 1rem 0;
}
.step h3 { margin-top: 0; }
.step .num { display: inline-block; font-weight: 700; color: var(--accent); margin-right: .4rem; }
.toc, .toc-section {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1rem 1.3rem; margin: 1.5rem 0 2rem; font-size: .95rem;
}
.toc ol, .toc-section ol { margin: .4rem 0 .2rem; }
.toc-section h2 { margin: 0 0 .5rem; font-size: .92rem; font-weight: 700; border: none; padding: 0; color: var(--muted); }

/* ---------- Quellen ---------- */
.sources {
  font-size: .85rem; color: var(--muted); margin-top: 2.5rem;
  border-top: 1px solid var(--line); padding-top: 1rem;
}
.sources ol { margin: .5rem 0; }
.sources li { margin: .4rem 0; }

/* ---------- Inline-Badges / Labels ---------- */
.badge-est, .badge-primary, .term-badge, .label {
  display: inline-block; font-size: .72rem; font-weight: 600; border-radius: 4px;
  padding: .05rem .4rem; margin-left: .3rem; vertical-align: middle; line-height: 1.5;
}
.badge-est, .term-badge { color: var(--muted); border: 1px solid var(--line); background: #fff; }
.badge-primary { color: var(--ok); border: 1px solid #a8d5a8; background: var(--ok-bg); }
.label-de { background: #e8eef8; color: #1a2a5e; }
.label-at { background: #fde8e8; color: #5e1a1a; }
.label-ch { background: #e8f4e8; color: #1a4a1a; }
.label-eu { background: #f4e8ff; color: #3a1a5e; }
.badge {
  display: inline-block; font-size: .72rem; font-weight: 600; color: var(--muted);
  border: 1px solid var(--line); background: #fff; border-radius: 999px;
  padding: .1rem .55rem; margin-bottom: .6rem;
}
.pro { color: #1a6a1a; font-weight: 600; }
.con { color: #8a1a1a; font-weight: 600; }
.neutral { color: var(--muted); }

/* ---------- FAQ-Akkordeon ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  font-size: 1.05rem; font-weight: 600; color: var(--navy); cursor: pointer; padding: 1rem 0;
  list-style: none; display: flex; justify-content: space-between; align-items: flex-start; gap: .75rem;
}
.faq-q::after { content: "+"; font-size: 1.2rem; color: var(--muted); flex-shrink: 0; margin-top: .05rem; }
details[open] .faq-q::after { content: "\2212"; }
.faq-q::-webkit-details-marker { display: none; }
.faq-a { padding: 0 0 1rem; max-width: 70ch; }
.faq-a p { margin: 0 0 .6rem; }
.faq-a p:last-child { margin-bottom: 0; }
.index-list { columns: 2; column-gap: 2rem; margin: 1rem 0 2rem; padding-left: 1.2rem; font-size: .93rem; }
.index-list li { margin: .3rem 0; }
@media (max-width: 580px) { .index-list { columns: 1; } }
.article h2.section-label {
  font-size: .85rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); margin: 2.6rem 0 .75rem; padding-top: .9rem; border-top: 1px solid var(--line);
}

/* ---------- Glossar ---------- */
.glossary-index { display: flex; flex-wrap: wrap; gap: .35rem .75rem; padding: .75rem 0 1.5rem; font-size: .92rem; }
.glossary-index a { text-decoration: none; color: var(--accent); border-bottom: 1px dotted var(--accent); }
.glossary-index a:hover { border-bottom-style: solid; }
.term { scroll-margin-top: 5rem; }
.back-to-top { font-size: .85rem; color: var(--muted); text-decoration: none; float: right; margin-top: .25rem; }
.back-to-top:hover { color: var(--accent); }

/* ---------- Definitionslisten (Newsletter-Meta o.ä.) ---------- */
.value-list { margin: .75rem 0 0; padding-left: 1.1rem; }
.value-list li { margin: .5rem 0; font-size: .98rem; }
.meta-grid { display: grid; gap: .6rem 1.5rem; grid-template-columns: max-content 1fr; margin: .75rem 0 0; font-size: .95rem; }
.meta-grid dt { color: var(--muted); font-weight: 600; }
.meta-grid dd { margin: 0; }

/* ---------- Formulare (TrueCost, Newsletter, Lead-Forms) ---------- */
.article form { margin: 1.5rem 0; }
.form-card {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem 1.4rem;
}
.article fieldset {
  border: 1px solid var(--line); border-radius: 10px; margin: 0 0 1.25rem; padding: 1rem 1.1rem 1.25rem;
}
.article legend { font-weight: 600; color: var(--navy); padding: 0 .4rem; }
.field { margin-bottom: 1rem; }
.grid2 { display: flex; flex-wrap: wrap; gap: 1rem; }
.grid2 .field { flex: 1 1 240px; }
label.block { display: block; font-weight: 600; margin-bottom: .28rem; }
.article input[type=email], .article input[type=number], .article input[type=text], .article select {
  width: 100%; padding: .6rem .75rem; font-size: 1rem;
  border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink);
}
.article input:focus, .article select:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.hint { display: block; }
.consent { display: flex; gap: .65rem; align-items: flex-start; font-size: .94rem; }
.consent input { margin-top: .35rem; flex-shrink: 0; width: auto; }
.hp { position: absolute; left: -5000px; height: 0; overflow: hidden; }
.error { color: var(--err); font-size: .9rem; margin-top: .35rem; }
.form-note { font-size: .87rem; color: var(--muted); margin-top: .9rem; }
/* Formular-Buttons (Submit/Aktions-Buttons in Artikel-Formularen) */
.article button {
  padding: .7rem 1.4rem; font-size: 1rem; font-weight: 600; line-height: 1;
  border: 0; border-radius: 8px; background: var(--accent); color: #fff; cursor: pointer;
  transition: background .15s;
}
.article button:hover { background: var(--accent-d); }
.btn-secondary { background: #fff; color: var(--accent); border: 1.5px solid var(--accent); margin-bottom: .5rem; }
.btn-secondary:hover { background: rgba(29,139,253,.06); }

/* Footer-Variante am Artikelende (interner Hinweis-Slot, falls genutzt) */
.article > footer { margin-top: 3rem; padding-top: 1rem; border-top: 1px solid var(--line); }

/* Beleg-Tags (wie-wir-arbeiten.html): Quellenstatus von Angaben */
.tag-belegt, .tag-schaetz, .tag-unbelegt {
  display: inline-block; font-size: .78rem; font-weight: 600;
  border-radius: 3px; padding: .05rem .4rem; margin-right: .3rem;
}
.tag-belegt { background: #e8f4e8; color: #2a6b2a; }
.tag-schaetz { background: #fff3e0; color: #7a5200; }
.tag-unbelegt { background: #f5f5f5; color: #555; }
