/* Arbeitszeitenrechner – Designsystem nach dem Mainline-Template (shadcnblocks, MIT + Commons Clause):
   DM Sans, warmes Beige als Primärfarbe, neutrale Grautöne, schwebende Pill-Navigation, Verlaufs-Header,
   gestrichelte Trennlinien, Akkordeon-FAQ, großer Footer-Schriftzug. Keine externen Abhängigkeiten. */

@font-face { font-family: "DM Sans"; src: url("/assets/fonts/dmsans-regular.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "DM Sans"; src: url("/assets/fonts/dmsans-medium.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "DM Sans"; src: url("/assets/fonts/dmsans-semibold.woff2") format("woff2"); font-weight: 600 700; font-style: normal; font-display: swap; }

:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #f5f5f5;
  --text: #0a0a0a;
  --muted: #6b6b6b;
  --border: #e5e5e5;
  --primary: #f0e3c7;
  --primary-ink: #353025;
  --accent: #0a0a0a;          /* Fokus, aktive Elemente */
  --accent-ink: #fafafa;
  --link: #0a0a0a;
  --ring: #a1a1a1;
  --good: #15803d;
  --warn: #b45309;
  --bad: #b91c1c;
  --info: #1d4ed8;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 32px;
  --shadow: 0 1px 3px 0 rgb(0 0 0 / .08), 0 1px 2px -1px rgb(0 0 0 / .08);
  --shadow-lg: 0 1px 3px 0 rgb(0 0 0 / .08), 0 8px 24px -6px rgb(0 0 0 / .10);
  --font: "DM Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --maxw: 1140px;
  color-scheme: light;
}
:root[data-theme="dark"] {
  --bg: #0a0a0a; --surface: #171717; --surface-2: #262626; --text: #fafafa; --muted: #a1a1a1;
  --border: rgb(255 255 255 / .10); --primary: #e9dcc0; --primary-ink: #1c1a15; --accent: #fafafa; --accent-ink: #0a0a0a;
  --link: #fafafa; --ring: #737373; --good: #4ade80; --warn: #fbbf24; --bad: #f87171; --info: #93c5fd;
  --shadow: none; --shadow-lg: none; color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--text); font: 400 16px/1.6 var(--font); -webkit-font-smoothing: antialiased; }
a { color: var(--link); text-decoration: underline; text-decoration-color: var(--ring); text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }
img, svg { max-width: 100%; height: auto; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.sr-only:focus { position: static; width: auto; height: auto; clip: auto; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 16px; }

/* ---------- Navigation (schwebende Pill) ---------- */
.nav-shell { position: sticky; top: 12px; z-index: 50; padding: 0 12px; margin-top: 12px; }
.nav-pill { position: relative; max-width: 820px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 8px 10px 8px 20px; border: 1px solid var(--border); border-radius: var(--radius-xl);
  background: color-mix(in srgb, var(--bg) 78%, transparent); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.brand { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; letter-spacing: -.02em; color: var(--text); text-decoration: none; white-space: nowrap; }
.brand svg { width: 22px; height: 22px; flex: none; }
.nav-menu { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-menu > li { position: relative; }
.nav-menu a.nav-link, .nav-trigger { display: inline-flex; align-items: center; gap: 4px; padding: 6px 10px; border-radius: 999px; font: 500 14px/1 var(--font);
  color: var(--text); text-decoration: none; background: none; border: 0; cursor: pointer; }
.nav-menu a.nav-link:hover, .nav-trigger:hover, .nav-item.open > .nav-trigger { background: var(--surface-2); }
.nav-menu a[aria-current="page"] { color: var(--muted); }
.nav-trigger svg { width: 14px; height: 14px; transition: transform .2s; }
.nav-item.open > .nav-trigger svg { transform: rotate(180deg); }
.nav-panel { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%); width: min(640px, 92vw); padding: 12px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  display: none; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 4px 12px; }
.nav-item.open > .nav-panel { display: grid; }
@media (hover: hover) and (min-width: 900px) { .nav-item:hover > .nav-panel { display: grid; } }
.nav-panel::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
.nav-group { min-width: 0; }
.nav-group-title { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); padding: 6px 10px 2px; }
.nav-panel a { display: block; padding: 8px 10px; border-radius: var(--radius); text-decoration: none; color: var(--text); transition: background .15s; }
.nav-panel a:hover, .nav-panel a:focus-visible { background: var(--surface-2); }
.nav-panel a strong { display: block; font-size: 14px; font-weight: 500; line-height: 1.3; transition: transform .2s; }
.nav-panel a:hover strong { transform: translateX(2px); }
.nav-panel a span { display: block; font-size: 13px; line-height: 1.35; color: var(--muted); margin-top: 2px; }
.nav-actions { display: flex; align-items: center; gap: 6px; }
.icon-toggle { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface); color: var(--text); cursor: pointer; }
.icon-toggle svg { width: 16px; height: 16px; }
.icon-toggle .i-moon { display: none; }
:root[data-theme="dark"] .icon-toggle .i-sun { display: none; }
:root[data-theme="dark"] .icon-toggle .i-moon { display: block; }
.burger { display: none; position: relative; width: 36px; height: 36px; border: 0; background: none; color: var(--text); cursor: pointer; }
.burger span { position: absolute; left: 9px; width: 18px; height: 2px; border-radius: 2px; background: currentColor; transition: transform .3s, opacity .3s; }
.burger span:nth-child(1) { top: 12px; } .burger span:nth-child(2) { top: 17px; } .burger span:nth-child(3) { top: 22px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
.nav-mobile { display: none; position: absolute; left: 0; right: 0; top: calc(100% + 10px); max-height: calc(100vh - 100px); overflow-y: auto;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 8px 16px 16px; box-shadow: var(--shadow-lg); }
.nav-mobile.open { display: block; }
.nav-mobile details { border: 0; border-bottom: 1px solid var(--border); border-radius: 0; background: none; padding: 12px 0; margin: 0; }
.nav-mobile summary { font-weight: 500; }
.nav-mobile a { display: block; padding: 7px 0; text-decoration: none; color: var(--text); }
.nav-mobile a span { display: block; font-size: 13px; color: var(--muted); }
.nav-mobile > a { padding: 12px 0; border-bottom: 1px solid var(--border); font-weight: 500; }
@media (max-width: 899px) { .nav-menu, .nav-actions .nav-cta { display: none; } .burger { display: block; } .nav-pill { padding-left: 14px; } }

/* ---------- Seitenkopf mit Verlauf ---------- */
.page-top { margin: 12px 10px 0; padding: 20px 0 8px; border-radius: var(--radius-xl) var(--radius-xl) var(--radius-lg) var(--radius-lg);
  background: linear-gradient(to bottom, color-mix(in srgb, var(--primary) 55%, transparent), var(--bg) 70%); }
@media (min-width: 1024px) { .page-top { margin: 16px 16px 0; padding-top: 32px; } }
.breadcrumbs { font-size: .875rem; color: var(--muted); margin: 0 0 4px; }
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumbs li + li::before { content: "/"; margin-right: 6px; color: var(--ring); }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--text); }
.hero { display: grid; gap: 28px; grid-template-columns: 1fr; padding: 8px 0 12px; }
@media (min-width: 960px) { .hero.has-features { grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; } }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.hero-features { position: relative; list-style: none; margin: 0; padding: 20px 0 0; display: grid; gap: 18px; }
.hero-features::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; }
@media (min-width: 960px) { .hero-features { padding: 0 0 0 36px; } .hero-features::before { top: 0; bottom: 0; left: 0; right: auto; width: 1px; height: auto; } }
.hero-features li { display: flex; gap: 14px; }
.hero-features svg { flex: none; width: 20px; height: 20px; margin-top: 2px; color: var(--text); }
.hero-features strong { display: block; font-weight: 600; }
.hero-features span { display: block; color: var(--muted); font-size: .92rem; line-height: 1.45; }

/* Gestrichelte Linien wie im Template */
.dashed, .hero-features::before { color: var(--ring);
  background: repeating-linear-gradient(90deg, transparent 0 4px, currentColor 4px 10px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent); mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent); }
@media (min-width: 960px) { .hero-features::before { background: repeating-linear-gradient(180deg, transparent 0 4px, currentColor 4px 10px);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent); mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent); } }
hr.dashed { border: 0; height: 1px; margin: 48px 0 8px; }

/* ---------- Typografie ---------- */
main { padding: 8px 0 32px; }
h1 { font-size: clamp(2rem, 4.2vw, 3rem); line-height: 1.08; margin: 8px 0 12px; letter-spacing: -.035em; font-weight: 600; }
h2 { font-size: clamp(1.45rem, 2.4vw, 1.9rem); line-height: 1.2; margin: 48px 0 12px; letter-spacing: -.025em; font-weight: 600; }
h3 { font-size: 1.15rem; margin: 28px 0 8px; letter-spacing: -.01em; font-weight: 600; }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); line-height: 1.5; color: var(--muted); max-width: 62ch; margin: 0 0 16px; }
.prose { max-width: 74ch; }
.prose li { margin: 4px 0; }
strong { font-weight: 600; }

/* ---------- Karten, Formulare, Buttons ---------- */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 20px; }
@media (min-width: 640px) { .card { padding: 24px; } }
.tool { display: grid; gap: 16px; grid-template-columns: 1fr; margin-top: 8px; }
@media (min-width: 880px) { .tool { grid-template-columns: 1.1fr 1fr; gap: 20px; } }
.tool > *, .row2 > *, .row3 > *, .field { min-width: 0; }
.field { display: grid; gap: 6px; margin-bottom: 14px; }
.field label, .field .label { font-weight: 500; font-size: .92rem; }
input[type="text"], input[type="number"], input[type="password"], input[type="time"], input[type="date"], input[type="month"], select, textarea {
  width: 100%; max-width: 100%; min-width: 0; font: inherit; color: var(--text); background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 9px 12px; box-shadow: 0 1px 2px rgb(0 0 0 / .04); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--ring); box-shadow: 0 0 0 3px color-mix(in srgb, var(--ring) 35%, transparent); }
input[type="range"] { width: 100%; accent-color: var(--text); }
.check { display: flex; align-items: center; gap: 8px; margin: 6px 0; }
.check input { width: 18px; height: 18px; accent-color: var(--text); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font: 500 14px/1 var(--font); height: 38px; padding: 0 16px;
  border-radius: var(--radius); border: 1px solid transparent; cursor: pointer; background: var(--primary); color: var(--primary-ink); text-decoration: none; transition: filter .15s, background .15s; }
.btn:hover { filter: brightness(.97); }
.btn.secondary { background: var(--surface); color: var(--text); border-color: var(--border); box-shadow: 0 1px 2px rgb(0 0 0 / .05); }
.btn.secondary:hover { background: var(--surface-2); filter: none; }
.btn.lg { height: 44px; padding: 0 22px; font-size: 15px; }
.btn-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.icon-btn { font: inherit; background: var(--surface); border: 1px solid var(--border); color: var(--text); border-radius: var(--radius); padding: 8px 12px; cursor: pointer; }
.icon-btn:hover { background: var(--surface-2); }
.row2 { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
.row3 { display: grid; gap: 12px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 420px) { .row3 { grid-template-columns: 1fr 1fr; } }
.hint { font-size: .85rem; color: var(--muted); margin: 0; }
.breaks { display: grid; gap: 8px; margin-bottom: 8px; }
.break-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 8px; align-items: end; }
.break-row label { font-size: .8rem; color: var(--muted); font-weight: 500; }

/* ---------- Ergebnis ---------- */
.k { font-size: .8rem; color: var(--muted); }
.big { font: 600 2.6rem/1.05 var(--font); letter-spacing: -.035em; margin: 2px 0 4px; font-variant-numeric: tabular-nums; }
.big small { font-size: 1rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.calc-line { font-family: var(--mono); font-size: .85rem; color: var(--muted); margin: 8px 0 0; word-break: break-word; }
.result { font: 600 1.35rem/1.4 var(--mono); word-break: break-all; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; min-height: 3.2em; }
.metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(128px, 1fr)); gap: 8px; margin-top: 16px; }
.metric { background: var(--surface-2); border-radius: var(--radius); padding: 10px 12px; }
.metric .k { font-size: .78rem; }
.metric .v { font-weight: 600; font-size: 1.05rem; font-variant-numeric: tabular-nums; }
.meter { height: 8px; border-radius: 99px; background: var(--surface-2); overflow: hidden; margin-top: 10px; }
.meter > span { display: block; height: 100%; background: var(--text); transition: width .2s; }
.good { color: var(--good); } .warn { color: var(--warn); } .bad { color: var(--bad); }
.error { color: var(--bad); font-size: .9rem; }
.checks { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 6px; }
.checks li { padding: 9px 12px 9px 36px; border-radius: var(--radius); background: var(--surface-2); position: relative; font-size: .92rem; line-height: 1.45; }
.checks li::before { position: absolute; left: 12px; top: 9px; font-weight: 700; }
.checks li.ok::before { content: "✓"; color: var(--good); }
.checks li.warn::before { content: "!"; color: var(--warn); }
.checks li.bad::before { content: "✕"; color: var(--bad); }
.checks li.info::before { content: "i"; color: var(--info); font-style: italic; }
.trust { font-size: .9rem; color: var(--muted); border-left: 3px solid var(--good); padding-left: 12px; }
.disclaimer { font-size: .85rem; color: var(--muted); margin-top: 16px; }

/* ---------- Tabellen ---------- */
table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: .94rem; font-variant-numeric: tabular-nums; }
th, td { text-align: left; padding: 10px; border-bottom: 1px solid var(--border); vertical-align: top; }
thead th { background: var(--surface-2); font-weight: 600; }
thead th:first-child { border-top-left-radius: var(--radius); } thead th:last-child { border-top-right-radius: var(--radius); }
.table-scroll { overflow-x: auto; }
.week-table input { padding: 7px 6px; min-width: 0; }
.week-table td, .week-table th { padding: 6px 4px; }
.week-table td.out { font-family: var(--mono); white-space: nowrap; }
.week-table tr.flag-bad td.out { color: var(--bad); }
.week-table tr.flag-warn td.out { color: var(--warn); }
.muted-row th { color: var(--muted); }
.muted-row { background: var(--surface-2); }
.month-table select { padding: 7px 4px; }
.week-grid input { padding: 6px 8px; }
code, pre { font-family: var(--mono); font-size: .9em; }
pre { background: var(--surface-2); padding: 14px 16px; border-radius: var(--radius); overflow-x: auto; line-height: 1.5; }

/* ---------- FAQ als Akkordeon (zweispaltig wie im Template) ---------- */
details { border: 0; border-bottom: 1px solid var(--border); padding: 14px 0; margin: 0; background: none; }
summary { font-weight: 500; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: ""; flex: none; width: 9px; height: 9px; margin-top: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); transition: transform .2s; }
details[open] > summary::after { transform: rotate(-135deg); margin-top: 11px; }
details > p { color: var(--muted); margin: 10px 0 0; }
.prose section#faq { max-width: none; }
@media (min-width: 960px) {
  section#faq { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.7fr); column-gap: 56px; width: min(1100px, calc(100vw - 32px)); }
  section#faq > h2 { grid-column: 1; grid-row: 1 / span 30; margin-top: 0; position: sticky; top: 100px; align-self: start; }
  section#faq > details { grid-column: 2; }
  section#faq { margin-top: 56px; }
}

/* ---------- Karten-Raster ---------- */
.grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.link-card { display: block; text-decoration: none; color: var(--text); transition: border-color .15s, transform .2s; }
.link-card:hover { border-color: var(--ring); transform: translateY(-1px); }
.link-card strong { font-weight: 600; }
.link-card p { color: var(--muted); margin: 4px 0 0; font-size: .94rem; line-height: 1.45; }
.link-card p.why { font-size: .85rem; margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--border); }
.callout { background: color-mix(in srgb, var(--primary) 35%, var(--surface)); border: 1px solid color-mix(in srgb, var(--primary) 80%, var(--border)); border-radius: var(--radius-lg); padding: 16px 20px; margin: 20px 0; }
.summary-box { border-left: 3px solid var(--primary); background: color-mix(in srgb, var(--primary) 18%, transparent); padding: 12px 16px; border-radius: 0 var(--radius) var(--radius) 0; margin: 16px 0; }
.affiliate { border: 1px dashed var(--border); }
.affiliate .tag { font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.ad-slot { min-height: 250px; display: none; }
.ad-slot.enabled { display: block; }
.byline { color: var(--muted); font-size: .9rem; margin: -4px 0 16px; }
.toc { font-size: .95rem; }
.nowrap { white-space: nowrap; }

/* ---------- Footer ---------- */
.site-footer { margin-top: 48px; padding: 64px 0 0; border-top: 0; color: var(--text); overflow: hidden;
  background: linear-gradient(to bottom, var(--bg), var(--bg) 55%, color-mix(in srgb, var(--primary) 45%, var(--bg))); }
.foot-cta { text-align: center; max-width: 640px; margin: 0 auto; padding: 0 16px; }
.foot-cta h2 { margin: 0 0 10px; font-size: clamp(1.6rem, 3.6vw, 2.6rem); }
.foot-cta p { color: var(--muted); margin: 0 0 20px; }
.foot-cols { display: grid; gap: 28px; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); margin: 56px auto 0; }
.foot-cols h3 { font-size: .8rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin: 0 0 10px; }
.foot-cols ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.foot-cols a { color: var(--text); text-decoration: none; font-size: .94rem; }
.foot-cols a:hover { text-decoration: underline; }
.foot-legal { margin: 36px auto 0; color: var(--muted); font-size: .85rem; text-align: center; max-width: 760px; }
.foot-legal p { margin: 6px 0; }
.wordmark { display: block; margin: 28px auto -0.18em; text-align: center; font-weight: 600; letter-spacing: -.06em; line-height: .9;
  font-size: clamp(3.5rem, 15vw, 13rem); white-space: nowrap; user-select: none;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--primary-ink) 22%, var(--primary)), transparent 88%);
  -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Druck ---------- */
@media print {
  .nav-shell, .site-footer, .breadcrumbs, .prose, #related-h, .grid, .btn-row, .disclaimer, .no-print, .lede, hr.dashed { display: none !important; }
  .page-top { background: none; margin: 0; padding: 0; }
  body { background: #fff; color: #000; font-size: 11px; }
  .card { border: 0; box-shadow: none; padding: 0; }
  .tool { display: block; }
  input, select { border: 0; background: none; padding: 0; appearance: none; -webkit-appearance: none; box-shadow: none; }
  .table-scroll { overflow: visible; }
  th, td { padding: 2px 4px; }
}

/* ---------- Einwilligungs-Banner ---------- */
.consent { position: fixed; z-index: 60; left: 12px; right: 12px; bottom: 12px; max-width: 560px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 16px 18px; }
.consent p { margin: 0 0 12px; font-size: .9rem; line-height: 1.5; color: var(--text); }
.consent-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.link-button { background: none; border: 0; padding: 0; font: inherit; color: var(--link); text-decoration: underline; text-decoration-color: var(--ring); text-underline-offset: 3px; cursor: pointer; }
@media print { .consent { display: none !important; } }

/* Titelbild */
.cover { margin: 28px 0 8px; max-width: 760px; }
.cover img { display: block; width: 100%; height: auto; aspect-ratio: 1200 / 630; object-fit: cover;
  border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--surface); }
