/* ============================================================
   NEOCORE WEBDESIGN SYSTEM
   Version 1.0 · Stand April 2026
   Zentrales CSS für alle NeoCore-Websites, Landingpages, Funnels,
   Dashboards und Dokumentationen.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* Farben — Basis */
  --nc-bg: #0A1124;
  --nc-bg-2: #111a36;
  --nc-card: #16204a;
  --nc-card-2: #1a2555;

  /* Farben — Linien */
  --nc-line: rgba(88, 166, 255, 0.22);
  --nc-line-strong: rgba(88, 166, 255, 0.5);

  /* Farben — Akzent */
  --nc-accent: #58A6FF;
  --nc-accent-2: #7BD3FF;

  /* Farben — Text */
  --nc-text: #E6ECFF;
  --nc-muted: #8A9BC4;

  /* Farben — Signal */
  --nc-ok: #5EE3A7;
  --nc-warn: #FFC370;
  --nc-alert: #FF7B9C;

  /* Farben — Kategorien */
  --nc-cat-1: #58A6FF;
  --nc-cat-2: #5EE3A7;
  --nc-cat-3: #FFC370;
  --nc-cat-4: #C58AFF;

  /* Typografie */
  --nc-font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Abstände */
  --nc-radius-sm: 8px;
  --nc-radius: 14px;
  --nc-radius-lg: 18px;

  /* Schatten */
  --nc-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

/* ============================================================
   2. GLOBAL RESET
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--nc-font);
  background: var(--nc-bg);
  color: var(--nc-text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--nc-accent); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--nc-accent-2); }

/* ============================================================
   3. LAYOUT
   ============================================================ */
.nc-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.nc-container--narrow { max-width: 820px; }
.nc-container--wide { max-width: 1440px; }

.nc-section { padding: 80px 0; }
.nc-section--compact { padding: 48px 0; }
.nc-section--hero { padding: 120px 0 80px; }

/* Hintergrund-Varianten */
.nc-bg-gradient {
  background: radial-gradient(1200px 900px at 50% -10%, #18224f 0%, var(--nc-bg) 60%);
}

/* ============================================================
   4. TYPOGRAFIE
   ============================================================ */
.nc-eyebrow {
  color: var(--nc-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

h1, .nc-h1 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.nc-h1--gradient {
  background: linear-gradient(135deg, #E6ECFF 0%, #7BD3FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2, .nc-h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: 12px;
}

h3, .nc-h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
}

h4, .nc-h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.nc-lead {
  color: var(--nc-muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 720px;
}

.nc-muted { color: var(--nc-muted); }

/* ============================================================
   5. BUTTONS
   ============================================================ */
.nc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--nc-font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  text-decoration: none;
}
.nc-btn:hover { transform: translateY(-2px); }

.nc-btn--primary {
  background: var(--nc-accent);
  color: var(--nc-bg);
}
.nc-btn--primary:hover {
  background: var(--nc-accent-2);
  color: var(--nc-bg);
  box-shadow: 0 10px 30px -10px var(--nc-accent);
}

.nc-btn--secondary {
  background: transparent;
  color: var(--nc-text);
  border: 1px solid var(--nc-line-strong);
}
.nc-btn--secondary:hover {
  background: rgba(88, 166, 255, 0.08);
  color: var(--nc-accent-2);
}

.nc-btn--ghost {
  background: transparent;
  color: var(--nc-muted);
  padding: 10px 16px;
}
.nc-btn--ghost:hover { color: var(--nc-accent); }

.nc-btn--lg { padding: 18px 34px; font-size: 15px; }

/* ============================================================
   6. CARDS
   ============================================================ */
.nc-card {
  background: linear-gradient(180deg, var(--nc-card) 0%, var(--nc-bg-2) 100%);
  border: 1px solid var(--nc-line);
  border-radius: var(--nc-radius-lg);
  padding: 26px;
  transition: transform 0.2s, border-color 0.2s;
}
.nc-card:hover {
  transform: translateY(-3px);
  border-color: var(--nc-line-strong);
}

.nc-card--flat {
  background: var(--nc-bg-2);
  border: 1px solid var(--nc-line);
  border-radius: var(--nc-radius);
  padding: 22px;
}

.nc-card--gradient {
  background: linear-gradient(135deg, rgba(88,166,255,0.08), rgba(88,166,255,0.02));
}

.nc-card--accent {
  position: relative;
  overflow: hidden;
}
.nc-card--accent::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--nc-accent);
}

.nc-card--accent.warn::before { background: var(--nc-warn); }
.nc-card--accent.alert::before { background: var(--nc-alert); }
.nc-card--accent.ok::before { background: var(--nc-ok); }

/* ============================================================
   7. GRIDS
   ============================================================ */
.nc-grid {
  display: grid;
  gap: 20px;
}
.nc-grid--2 { grid-template-columns: repeat(2, 1fr); }
.nc-grid--3 { grid-template-columns: repeat(3, 1fr); }
.nc-grid--4 { grid-template-columns: repeat(4, 1fr); }
.nc-grid--5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 960px) {
  .nc-grid--3, .nc-grid--4, .nc-grid--5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .nc-grid--2, .nc-grid--3, .nc-grid--4, .nc-grid--5 { grid-template-columns: 1fr; }
}

/* ============================================================
   8. STATS
   ============================================================ */
.nc-stat {
  background: linear-gradient(135deg, rgba(88,166,255,0.08), rgba(88,166,255,0.02));
  border: 1px solid var(--nc-line);
  border-radius: var(--nc-radius);
  padding: 24px;
  text-align: center;
}
.nc-stat__value {
  font-size: 32px;
  font-weight: 800;
  color: var(--nc-accent-2);
  line-height: 1;
  margin-bottom: 6px;
}
.nc-stat__label {
  color: var(--nc-muted);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============================================================
   9. BADGES & PILLS
   ============================================================ */
.nc-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nc-badge--primary { background: var(--nc-accent); color: var(--nc-bg); }
.nc-badge--subtle { background: rgba(88,166,255,0.12); color: var(--nc-accent); }
.nc-badge--ok { background: rgba(94,227,167,0.15); color: var(--nc-ok); }
.nc-badge--warn { background: rgba(255,195,112,0.15); color: var(--nc-warn); }
.nc-badge--alert { background: rgba(255,123,156,0.15); color: var(--nc-alert); }

.nc-tag {
  display: inline-block;
  font-size: 10px;
  color: var(--nc-accent);
  background: rgba(88,166,255,0.08);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-right: 4px;
}

/* ============================================================
   10. ICON BOX
   ============================================================ */
.nc-icon-box {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(88, 166, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nc-accent);
  flex-shrink: 0;
}
.nc-icon-box--sm { width: 32px; height: 32px; border-radius: 8px; }
.nc-icon-box--lg { width: 56px; height: 56px; border-radius: 14px; }

.nc-icon-box--cat-2 { background: rgba(94,227,167,0.12); color: var(--nc-cat-2); }
.nc-icon-box--cat-3 { background: rgba(255,195,112,0.12); color: var(--nc-cat-3); }
.nc-icon-box--cat-4 { background: rgba(197,138,255,0.12); color: var(--nc-cat-4); }

/* ============================================================
   11. FORMULAR
   ============================================================ */
.nc-form { display: grid; gap: 16px; }

.nc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nc-field__label {
  color: var(--nc-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nc-input, .nc-textarea, .nc-select {
  background: var(--nc-bg-2);
  border: 1px solid var(--nc-line);
  border-radius: var(--nc-radius-sm);
  color: var(--nc-text);
  font-family: var(--nc-font);
  font-size: 15px;
  padding: 14px 16px;
  transition: border-color 0.15s, background 0.15s;
  width: 100%;
}
.nc-input:focus, .nc-textarea:focus, .nc-select:focus {
  outline: none;
  border-color: var(--nc-accent);
  background: var(--nc-card);
}
.nc-textarea { resize: vertical; min-height: 120px; }
.nc-input::placeholder, .nc-textarea::placeholder { color: rgba(138, 155, 196, 0.5); }

.nc-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--nc-muted);
  line-height: 1.5;
}
.nc-checkbox input { margin-top: 3px; accent-color: var(--nc-accent); }

/* ============================================================
   12. NAVIGATION
   ============================================================ */
.nc-nav {
  position: sticky;
  top: 0;
  background: rgba(10, 17, 36, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--nc-line);
  padding: 14px 32px;
  z-index: 100;
}
.nc-nav__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1280px;
  margin: 0 auto;
}
.nc-nav__brand {
  color: var(--nc-accent);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  margin-right: auto;
}
.nc-nav__link {
  color: var(--nc-muted);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 999px;
  transition: background 0.15s, color 0.15s;
}
.nc-nav__link:hover { color: var(--nc-text); background: rgba(88, 166, 255, 0.1); }

/* Mobile — Nav auf Brand + CTA reduzieren, Links ausblenden */
@media (max-width: 900px) {
  .nc-nav { padding: 10px 16px; }
  .nc-nav__inner { gap: 8px; flex-wrap: nowrap; }
  .nc-nav__link { display: none; }
  .nc-nav__brand { font-size: 12px; letter-spacing: 0.5px; }
  .nc-nav .nc-btn--primary { padding: 8px 14px; font-size: 12px; }
}

/* Mobile — Hero kompakter, Section-Padding halbiert */
@media (max-width: 640px) {
  .nc-section { padding: 48px 0; }
  .nc-section--hero { padding: 24px 0 40px; }
  .nc-container { padding: 0 20px; }
  h1, .nc-h1 { font-size: 28px; line-height: 1.15; }
  .nc-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .nc-hero__actions { flex-direction: column; align-items: stretch; }
  .nc-hero__actions .nc-btn { width: 100%; }
}

/* ============================================================
   13. HERO
   ============================================================ */
.nc-hero {
  text-align: center;
  padding: 80px 32px 64px;
}
.nc-hero--left { text-align: left; }

.nc-hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.nc-hero--left .nc-hero__actions { justify-content: flex-start; }

/* ============================================================
   14. FEATURE LIST
   ============================================================ */
.nc-list {
  list-style: none;
  display: grid;
  gap: 10px;
}
.nc-list li {
  color: var(--nc-muted);
  font-size: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.nc-list li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--nc-accent);
  margin-top: 8px;
  flex-shrink: 0;
}
.nc-list li strong { color: var(--nc-text); font-weight: 600; }

/* Check-Liste */
.nc-checklist {
  list-style: none;
  display: grid;
  gap: 14px;
}
.nc-checklist li {
  color: var(--nc-muted);
  font-size: 14px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.nc-checklist li::before {
  content: "";
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(94,227,167,0.15);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235EE3A7' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
}

/* ============================================================
   15. TABLE
   ============================================================ */
.nc-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--nc-bg-2);
  border-radius: var(--nc-radius);
  overflow: hidden;
  border: 1px solid var(--nc-line);
}
.nc-table th, .nc-table td {
  padding: 14px 16px;
  text-align: left;
  font-size: 13px;
  border-bottom: 1px solid var(--nc-line);
}
.nc-table th {
  background: var(--nc-card);
  color: var(--nc-accent);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
}
.nc-table td { color: var(--nc-muted); }
.nc-table td:first-child { color: var(--nc-text); font-weight: 600; }
.nc-table tr:last-child td { border: 0; }

/* ============================================================
   16. PIPELINE / FLOW
   ============================================================ */
.nc-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.nc-stage {
  background: var(--nc-card);
  border: 1px solid var(--nc-line);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nc-stage__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--nc-muted);
}
.nc-stage--highlight {
  background: rgba(88,166,255,0.12);
  border-color: var(--nc-line-strong);
  color: var(--nc-accent-2);
  font-weight: 600;
}
.nc-stage--highlight .nc-stage__dot { background: var(--nc-accent); }
.nc-stage--critical {
  background: rgba(255,123,156,0.1);
  border-color: rgba(255,123,156,0.4);
  color: var(--nc-alert);
  font-weight: 600;
}
.nc-stage--critical .nc-stage__dot { background: var(--nc-alert); }
.nc-stage--done {
  background: rgba(94,227,167,0.08);
  border-color: rgba(94,227,167,0.3);
  color: var(--nc-ok);
}
.nc-stage--done .nc-stage__dot { background: var(--nc-ok); }

.nc-arrow {
  color: var(--nc-muted);
  opacity: 0.5;
  font-size: 14px;
}

/* ============================================================
   17. PRESS / BEKANNT AUS
   ============================================================ */
.nc-press {
  padding: 48px 0;
  background: var(--nc-bg-2);
  border-top: 1px solid var(--nc-line);
  border-bottom: 1px solid var(--nc-line);
}
.nc-press__label {
  text-align: center;
  color: var(--nc-muted);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
}
.nc-press__strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-items: center;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.nc-press__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--nc-muted);
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
  opacity: 0.8;
  flex: 0 1 auto;
  min-width: 0;
  /* Max 3 cm Länge (≈ 113 px bei 96 dpi) */
  max-width: 113px;
  width: 100%;
}
.nc-press__item:hover { color: var(--nc-text); opacity: 1; }
/* Wordmark-Treatment: austauschbar durch <img> sobald echte Logos da sind */
.nc-press__wordmark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  white-space: nowrap;
}
.nc-press__wordmark--sans {
  font-family: var(--nc-font);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.nc-press__item img,
.nc-press__item svg {
  /* Max 3 cm Länge (≈ 113 px) — Höhe ergibt sich proportional */
  max-width: 113px;
  width: 100%;
  height: auto;
  max-height: 42px;
  object-fit: contain;
  display: block;
  /* Einheitlicher Silhouetten-Look: alle Logos werden hell-weiß gerendert */
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.nc-press__item:hover img,
.nc-press__item:hover svg { opacity: 1; }

/* Mobile: 3-Spalten-Raster bleibt, Max-Länge gleich 3 cm */
@media (max-width: 480px) {
  .nc-press__strip { gap: 14px; padding: 0 16px; }
  .nc-press__item img,
  .nc-press__item svg { max-height: 32px; }
  .nc-press { padding: 36px 0; }
  .nc-press__label { font-size: 10px; letter-spacing: 2px; margin-bottom: 20px; }
}
.nc-press__placeholder {
  opacity: 0.35;
  font-family: var(--nc-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px dashed var(--nc-line);
  border-radius: 6px;
  color: var(--nc-muted);
}

/* ============================================================
   URGENCY BADGE
   ============================================================ */
.nc-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 195, 112, 0.14);
  color: var(--nc-warn);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 195, 112, 0.3);
}
.nc-urgency__dot {
  width: 7px;
  height: 7px;
  background: var(--nc-warn);
  border-radius: 50%;
  animation: nc-pulse 2s infinite;
}
@keyframes nc-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.nc-faq {
  display: grid;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
}
.nc-faq details {
  background: var(--nc-bg-2);
  border: 1px solid var(--nc-line);
  border-radius: var(--nc-radius);
  padding: 0;
  transition: border-color 0.2s;
}
.nc-faq details[open] { border-color: var(--nc-line-strong); }
.nc-faq summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 15px;
  color: var(--nc-text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.nc-faq summary::-webkit-details-marker { display: none; }
.nc-faq summary::after {
  content: "+";
  color: var(--nc-accent);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s;
}
.nc-faq details[open] summary::after { content: "−"; }
.nc-faq__body {
  padding: 0 22px 22px;
  color: var(--nc-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.nc-mobile-cta { display: none; }
@media (max-width: 720px) {
  .nc-mobile-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 17, 36, 0.96);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--nc-line-strong);
    padding: 10px 14px;
    z-index: 900;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
  }
  .nc-mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--nc-accent);
    color: var(--nc-bg);
    padding: 14px;
    border-radius: 999px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    font-family: var(--nc-font);
  }
  body { padding-bottom: 76px; }
}

/* ============================================================
   18. FOOTER
   ============================================================ */
.nc-footer {
  text-align: center;
  color: var(--nc-muted);
  font-size: 12px;
  padding: 32px;
  border-top: 1px solid var(--nc-line);
}
.nc-footer strong { color: var(--nc-text); }

/* ============================================================
   18. UTILITIES
   ============================================================ */
.nc-text-center { text-align: center; }
.nc-text-left { text-align: left; }

.nc-mt-0 { margin-top: 0 !important; }
.nc-mt-1 { margin-top: 8px !important; }
.nc-mt-2 { margin-top: 16px !important; }
.nc-mt-3 { margin-top: 24px !important; }
.nc-mt-4 { margin-top: 32px !important; }
.nc-mt-5 { margin-top: 48px !important; }

.nc-mb-0 { margin-bottom: 0 !important; }
.nc-mb-1 { margin-bottom: 8px !important; }
.nc-mb-2 { margin-bottom: 16px !important; }
.nc-mb-3 { margin-bottom: 24px !important; }
.nc-mb-4 { margin-bottom: 32px !important; }
.nc-mb-5 { margin-bottom: 48px !important; }

.nc-flex { display: flex; gap: 16px; }
.nc-flex--between { justify-content: space-between; align-items: center; }
.nc-flex--wrap { flex-wrap: wrap; }

/* ============================================================
   19. PRINT
   ============================================================ */
@media print {
  body { background: white; color: #0A1124; }
  .nc-nav { display: none; }
  .nc-card, .nc-stat, .nc-table { break-inside: avoid; }
}
