/* ==================================================================
   9044.de – Design-System
   Basis: Mockup (Schwarz + Neongelb), Space Grotesk + Inter
   ================================================================== */

:root {
  --black:        #000000;
  --bg:           #0B0B0B;
  --bg-card:      #111111;
  --bg-card-2:    #161616;
  --light:        #F4F4F4;
  --white:        #FFFFFF;
  --accent:       #E7FF00;
  --accent-2:     #FAFA03;
  --accent-dim:   #423D1A;
  --text:         #EDEDED;
  --text-muted:   #9A9A9A;
  --text-dark:    #111111;
  --text-dark-2:  #4A4A4A;
  --line:         #232323;
  --line-light:   #ECECEC;
  --green:        #2FBF71;
  --yellow-warn:  #E5B800;
  --red:          #E5484D;
  --radius:       18px;
  --radius-sm:    12px;
  --maxw:         1180px;
  --font-head:    "Space Grotesk", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;
  --shadow-card:  0 8px 30px rgba(0,0,0,.35);
  --glow-accent:  0 0 24px rgba(231,255,0,.28);
}

/* ------------------------------------------------------------------
   Reset + Basis
------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.3rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.22rem; }

p { margin: 0 0 1.1em; }

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.accent { color: var(--accent); }

/* ------------------------------------------------------------------
   Header
------------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,11,11,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--white);
  text-decoration: none;
}
.logo:hover { text-decoration: none; }
.logo svg { width: 26px; height: 26px; flex: 0 0 auto; }
.logo .tld { color: var(--accent); }

.main-nav { margin-left: auto; }
.main-nav ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  color: var(--text);
  font-size: .98rem;
  text-decoration: none;
}
.main-nav a:hover { color: var(--accent); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--glow-accent);
}
.btn .arr { font-family: var(--font-body); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); box-shadow: none; }

.btn-header { padding: 10px 20px; font-size: .94rem; }
.cta-short { display: none; }

/* Mobile Nav */
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font-size: 1.3rem;
  line-height: 1;
  padding: 8px 12px;
  cursor: pointer;
}

/* ------------------------------------------------------------------
   Hero
------------------------------------------------------------------ */
.hero {
  position: relative;
  background: var(--black);
  overflow: hidden;
  padding: 64px 0 72px;
}

.hero .container { position: relative; z-index: 2; width: 100%; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 48px;
  align-items: center;
}

.hero h1 {
  position: relative;
  z-index: 0;
  margin-bottom: .45em;
}
.hero h1::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -40px -60px;
  background: radial-gradient(closest-side, var(--accent-dim), transparent 70%);
  filter: blur(48px);
  pointer-events: none;
}

.hero-lead {
  font-size: 1.13rem;
  color: var(--text-muted);
  max-width: 46ch;
}
.hero-lead strong { color: var(--accent); font-weight: 600; }

/* Visual rechts: 3D-Badge-Platzhalter */
.hero-visual { position: relative; min-height: 300px; }
.hero-badge {
  position: relative;
  margin: 0 auto;
  width: min(100%, 420px);
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  background:
    radial-gradient(120% 140% at 78% 20%, rgba(231,255,0,.16), transparent 55%),
    linear-gradient(160deg, #181818, #050505);
  border: 1px solid rgba(231,255,0,.45);
  box-shadow: 0 0 60px rgba(231,255,0,.18), inset 0 0 40px rgba(0,0,0,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero-badge .b-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(3.4rem, 7vw, 5.6rem);
  color: var(--accent);
  text-shadow: 0 0 34px rgba(231,255,0,.55);
  line-height: 1;
}
.hero-badge .b-tld {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  align-self: flex-end;
  margin-right: 18%;
}

/* Beispiel-Link-Chip über dem Badge */
.hero-chip {
  position: absolute;
  top: -26px;
  left: -8px;
  background: #101010;
  border: 1px solid rgba(231,255,0,.35);
  border-radius: 14px;
  padding: 10px 16px;
  font-size: .86rem;
  color: var(--text-muted);
  box-shadow: var(--shadow-card);
}
.hero-chip strong { display: block; color: var(--accent); font-style: italic; }

/* Partikel */
.pp-field { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.pp {
  position: absolute;
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 700;
  opacity: 0;
  animation: pp-rise var(--d, 7s) linear infinite;
  animation-delay: var(--dl, 0s);
  font-size: var(--s, 14px);
}
.pp.alt { color: var(--accent-2); }
@keyframes pp-rise {
  0%   { opacity: 0; transform: translate(0, 30px) rotate(0deg); }
  12%  { opacity: .85; }
  70%  { opacity: .5; }
  100% { opacity: 0; transform: translate(var(--dx, 8px), -110px) rotate(var(--rot, 20deg)); }
}

/* ------------------------------------------------------------------
   Shortener-Box (Herzstück auf der Startseite)
------------------------------------------------------------------ */
.shorten-box {
  margin-top: 34px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-card);
}

.shorten-row {
  display: flex;
  gap: 12px;
}

.input {
  width: 100%;
  background: #0A0A0A;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 16px;
}
.input::placeholder { color: #6E6E6E; }
.input:focus { border-color: var(--accent); outline: none; }

.shorten-row .btn { flex: 0 0 auto; }

.shorten-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: .88rem;
  color: var(--text-muted);
}
.shorten-meta span::before { content: "✓ "; color: var(--accent); }

.field { margin-top: 14px; }
.field label {
  display: block;
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .88rem;
  color: var(--text-muted);
  margin-top: 14px;
}
.check input {
  margin-top: 3px;
  width: 17px; height: 17px;
  accent-color: var(--accent);
  flex: 0 0 auto;
}

.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-msg {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  display: none;
}
.form-msg.ok    { display: block; background: rgba(47,191,113,.12); border: 1px solid rgba(47,191,113,.4);  color: #7FE0AC; }
.form-msg.err   { display: block; background: rgba(229,72,77,.1);   border: 1px solid rgba(229,72,77,.4);   color: #F1888C; }

/* Ergebnis-Anzeige nach dem Kürzen */
.result-box {
  margin-top: 16px;
  background: #0A0F00;
  border: 1px solid rgba(231,255,0,.5);
  border-radius: var(--radius-sm);
  padding: 18px;
  display: none;
}
.result-box.show { display: block; }
.result-link {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--accent);
  word-break: break-all;
}
.result-note { font-size: .88rem; color: var(--text-muted); margin: 8px 0 0; }

/* ------------------------------------------------------------------
   Sektionen
------------------------------------------------------------------ */
.section { padding: 74px 0; position: relative; }
.section-light { background: var(--light); color: var(--text-dark); }
.section-light h2, .section-light h3 { color: var(--text-dark); }
.section-light p { color: var(--text-dark-2); }

.section-head { max-width: 720px; margin-bottom: 40px; }
.eyebrow {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-light .eyebrow { color: #7A7400; }

/* Stat-Band */
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 40px;
}
.stat {
  background: var(--bg-card);
  padding: 24px 20px;
  text-align: left;
}
.stat .n {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--accent);
}
.stat .l { font-size: .86rem; color: var(--text-muted); }

/* Feature-Karten (dunkel) */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(231,255,0,.5);
  box-shadow: var(--glow-accent);
}
.card .ico {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(231,255,0,.09);
  border: 1px solid rgba(231,255,0,.3);
  color: var(--accent);
  margin-bottom: 16px;
}
.card .ico svg { width: 22px; height: 22px; }
.card-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.08rem;
  margin: 0 0 8px;
  color: var(--white);
}
.card p { font-size: .95rem; color: var(--text-muted); margin: 0; }
.card .more { display: inline-block; margin-top: 12px; font-size: .9rem; }

/* Karten auf hellen Flächen */
.section-light .card {
  background: var(--white);
  border-color: var(--line-light);
  box-shadow: 0 3px 14px rgba(0,0,0,.05);
}
.section-light .card:hover { box-shadow: 0 12px 26px rgba(0,0,0,.09); border-color: #DDDDDD; }
.section-light .card-title { color: var(--text-dark); }
.section-light .card p { color: var(--text-dark-2); }
.section-light .card .ico {
  background: var(--accent);
  border-color: var(--black);
  color: var(--black);
}

/* Akzent-Plus auf hellem Grund: harter Versatzschatten statt Blur */
.plus-accent {
  color: var(--accent);
  text-shadow: 2px 2px 0 var(--black);
  font-family: var(--font-head);
  font-weight: 700;
}

/* Schritt-Liste */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

/* FAQ */
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  background: var(--bg-card);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--accent); font-weight: 700; }
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-body { padding: 0 20px 18px; color: var(--text-muted); font-size: .97rem; }

.section-light .faq-item { background: var(--white); border-color: var(--line-light); }
.section-light .faq-item .faq-body { color: var(--text-dark-2); }

/* CTA-Band */
.cta-band {
  background: var(--black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { position: relative; z-index: 0; display: inline-block; }
.cta-band h2::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -30px -50px;
  background: radial-gradient(closest-side, var(--accent-dim), transparent 70%);
  filter: blur(48px);
}
.cta-band p { color: var(--text-muted); max-width: 54ch; margin: 0 auto 26px; }

/* Breadcrumb (gehoert IN den Hero) */
.breadcrumb {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 26px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { margin: 0 7px; opacity: .5; }

/* Unterseiten-Hero */
.hero-sub { padding: 44px 0 56px; min-height: 0; }
.hero-sub h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
.hero-sub > .container { width: 100%; }

/* Prose (Fliesstext-Seiten wie AGB, Blog) */
.prose { max-width: 780px; }
.prose h2 { margin-top: 1.6em; font-size: 1.5rem; }
.prose h3 { margin-top: 1.3em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .4em; }

/* ------------------------------------------------------------------
   Tabellen (Admin-Bereich)
------------------------------------------------------------------ */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-sm); }
table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
table.data th, table.data td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
table.data th {
  font-family: var(--font-head);
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-card);
  position: sticky;
  top: 0;
}
table.data tr:hover td { background: rgba(255,255,255,.02); }

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
}
.badge-green  { background: rgba(47,191,113,.15); color: var(--green);  border: 1px solid rgba(47,191,113,.4); }
.badge-yellow { background: rgba(229,184,0,.12);  color: var(--yellow-warn); border: 1px solid rgba(229,184,0,.4); }
.badge-red    { background: rgba(229,72,77,.12);  color: var(--red);    border: 1px solid rgba(229,72,77,.4); }
.badge-gray   { background: rgba(255,255,255,.06); color: var(--text-muted); border: 1px solid var(--line); }

.btn-mini {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-size: .82rem;
  cursor: pointer;
}
.btn-mini:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
.btn-mini.danger:hover { border-color: var(--red); color: var(--red); }

/* ------------------------------------------------------------------
   Footer
------------------------------------------------------------------ */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 60px 0 30px;
  font-size: .93rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer-head {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  color: var(--white);
  margin: 0 0 14px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: var(--text-muted); }
.site-footer a:hover { color: var(--accent); }
.footer-brand p { color: var(--text-muted); margin-top: 14px; font-size: .88rem; }
.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #6E6E6E;
  font-size: .84rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
}

/* ------------------------------------------------------------------
   Responsive
------------------------------------------------------------------ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: 2; min-height: 0; }
  .hero-chip { top: -20px; left: 0; }
  .stat-band { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 16px 22px 22px;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 16px; }
  .nav-toggle { display: block; }
  .btn-header { margin-left: 0; }
  .cta-long { display: none; }
  .cta-short { display: inline; }
  .shorten-row { flex-direction: column; }
  .shorten-row .btn { justify-content: center; }
  .stat-band { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}

/* ------------------------------------------------------------------
   Reduced Motion
------------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .pp { animation: none; opacity: .35; }
  .btn, .card { transition: none; }
  .btn:hover, .card:hover { transform: none; }
}

/* ------------------------------------------------------------------
   Verwaltungsseite (useradmin)
------------------------------------------------------------------ */
.ua-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
  align-items: start;
}
table.kv { width: 100%; border-collapse: collapse; font-size: .95rem; }
table.kv th, table.kv td { padding: 9px 0; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
table.kv th { color: var(--text-muted); font-weight: 500; width: 34%; padding-right: 14px; }
table.kv td.break { word-break: break-all; }
table.kv .btn-mini { margin-left: 10px; }
.ua-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.ua-actions .btn-mini[disabled] { opacity: .45; cursor: not-allowed; }
.muted-note { font-size: .86rem; color: var(--text-muted); margin-top: 12px; }
.qr-wrap {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: inline-block;
  margin-top: 6px;
}
.qr-wrap img { width: 300px; max-width: 100%; height: auto; }
@media (max-width: 960px) {
  .ua-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------------
   Admin-Backend (/stats/)
------------------------------------------------------------------ */
.daychart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 160px;
  padding: 14px 16px 34px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.daycol {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  min-width: 0;
}
.daybar {
  width: 100%;
  max-width: 40px;
  background: linear-gradient(180deg, var(--accent), #9AAA00);
  border-radius: 5px 5px 0 0;
}
.dayval { font-size: .74rem; color: var(--text-muted); margin-bottom: 4px; }
.daylabel {
  position: absolute;
  bottom: -24px;
  font-size: .68rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.admin-toolbar { margin: 18px 0 10px; display: flex; flex-direction: column; gap: 12px; }
.filterrow { display: flex; gap: 8px; flex-wrap: wrap; }
.btn-mini.active { border-color: var(--accent); color: var(--accent); }
.searchrow { display: flex; gap: 8px; align-items: center; max-width: 560px; }
.searchrow .input { padding: 9px 14px; font-size: .92rem; }
.inline-form { display: inline-flex; gap: 6px; align-items: center; margin: 0; }
.risk-select {
  background: #0A0A0A;
  border: 1px solid var(--line);
  color: var(--text-muted);
  border-radius: 7px;
  font-size: .78rem;
  padding: 3px 5px;
}
.cell-target { max-width: 260px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pagination { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 18px; }
@media (max-width: 760px) {
  .daychart { gap: 4px; }
  .daylabel { display: none; }
}

/* Kleinere Chart-Variante (Verwaltungsseite) */
.daychart-sm { height: 120px; padding: 10px 12px 30px; }

/* ------------------------------------------------------------------
   Blog
------------------------------------------------------------------ */
.post-meta {
  font-size: .9rem;
  color: var(--text-muted);
  margin-top: -6px;
}
.post-kicker {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px;
}
.cards-blog { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.cards-blog .card-title { font-size: 1.14rem; }

/* Zieländerungs-Formular auf der Verwaltungsseite */
.edit-form {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #0A0A0A;
}

/* E-Mail-Zelle im Admin mit Massen-Aktion */
.cell-email { white-space: nowrap; }
.cell-email a { color: var(--text); }
.cell-email a:hover { color: var(--accent); }
.cell-email .inline-form { margin-left: 8px; }

/* Hervorhebung der aktuellen Zeile in der Link-Übersicht */
tr.row-current td { background: rgba(231,255,0,.05); }
