/* Standalone CSS voor gegenereerde klant-websites */

:root {
    --bg: #f6f7fb;
    --card: #ffffff;
    --text: #0f172a;
    --muted: #475569;
    --border: #e2e8f0;
    --brand: #2b489f;
    --brandHover: #142751;
    --radius: 16px;
    --shadow: 0 10px 30px rgba(2, 6, 23, .08);
    --max: 1100px;
    --pad: 24px;
}

*, *::before, *::after { box-sizing: border-box; }
html { height: 100%; }
body {
    margin: 0;
    font-family: var(--font, ui-sans-serif, system-ui, sans-serif);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}
/* Feature 65: footer altijd onderaan bij korte pagina's */
body.published {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
body.published .bw:has(footer) {
    margin-top: auto;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
p { margin: 0 0 12px; }
h1, h2, h3 { margin: 0; line-height: 1.2; letter-spacing: -.02em; }

/* Layout */
.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
}

/* Header */
.header {
    z-index: 10;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}
.bw--sticky-header { position: sticky; top: 0; z-index: 200; }
.bw--sticky-footer { position: sticky; bottom: 0; z-index: 200; }
.header--scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.1); }
.header-inner {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: height .22s ease;
}
.header--compact .header-inner { height: 48px; }
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: -.02em;
    text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-text { display: flex; flex-direction: column; gap: 0; }
.brand-subtitle { font-size: 0.72rem; font-weight: 400; color: var(--muted); line-height: 1.2; letter-spacing: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 260px; }
.logo {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--brand);
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0;
}
.nav {
    display: flex;
    gap: 18px;
    font-size: 14px;
    color: var(--muted);
}
.nav a { text-decoration: none; }
.nav a:hover { color: var(--text); text-decoration: none; }

/* Hero */
.hero {
    padding: 72px 0 64px;
    background: var(--bg);
}
.h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.1;
    margin: 0 0 16px;
}
.lead {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 560px;
    margin: 0 0 28px;
}
.cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Kolommen blok */
.columns-grid { display: grid; gap: 32px; }
.columns-1 { grid-template-columns: 1fr; }
.columns-2 { grid-template-columns: 1fr 1fr; }
.columns-3 { grid-template-columns: 1fr 1fr 1fr; }
.columns-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
.column-item { display: flex; flex-direction: column; }
@media (max-width: 640px) {
    .columns-2, .columns-3, .columns-4 { grid-template-columns: 1fr; }
}
@media (min-width: 641px) and (max-width: 900px) {
    .columns-4 { grid-template-columns: 1fr 1fr; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--text);
    text-decoration: none;
    transition: background .15s;
}
.btn:hover { background: #f1f5f9; text-decoration: none; }
.btn-primary {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}
.btn-primary:hover { background: var(--brandHover); border-color: var(--brandHover); }
.btn-secondary { background: transparent; color: var(--brand); border-color: var(--brand); border-width: 1.5px; }
.btn-secondary:hover { background: var(--brand); color: #fff; text-decoration: none; }
.btn-ghost { background: transparent; color: var(--text); border-color: transparent; }
.btn-ghost:hover { background: var(--bg); border-color: var(--border); text-decoration: none; }
.nav-btn { align-self: center; }

/* Block wrapper — altijd aanwezig, bepaalt even/odd achtergrond */
.bw { }

/* Sections */
.section {
    padding: 56px 0;
}

/* Grid */
.grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
@media (max-width: 700px) {
    .grid3 { grid-template-columns: 1fr; }
}

/* Feature card */
.feature {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}
.feature strong {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
}
.feature p {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
}

/* Vrije rich-text content (Quill output) */
.prose h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; margin: 0 0 16px; }
.prose h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; margin: 0 0 12px; }
.prose h3 { font-size: 1.15rem; font-weight: 700; margin: 0 0 8px; }
.prose p  { color: var(--muted); margin: 0 0 12px; }
.prose p:last-child { margin-bottom: 0; }
.prose ul, .prose ol { color: var(--muted); margin: 0 0 12px; padding-left: 20px; }
.prose li { margin-bottom: 4px; }
.prose strong { font-weight: 700; }

/* Prose in hero: ruimere opmaak */
.hero .prose h1 { margin-bottom: 16px; }
.hero .prose p  { font-size: 1.15rem; }

/* Prose in feature card: compacter */
.feature .prose h1, .feature .prose h2, .feature .prose h3 { font-size: 15px; margin-bottom: 6px; }
.feature .prose p { font-size: 14px; }

/* Prose in contact card */
.contact-content h2 { font-size: 1.4rem; margin: 0 0 8px; letter-spacing: -.02em; }
.contact-content p  { color: var(--muted); margin: 0 0 12px; }

/* Forms */
.form-field { margin-bottom: 14px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.form-input {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) * 0.6);
    font-size: 14px;
    font-family: var(--font);
    color: var(--text);
    background: var(--card);
    transition: border-color .15s;
    box-sizing: border-box;
}
.form-input:focus { outline: none; border-color: var(--brand); }
textarea.form-input { resize: vertical; min-height: 90px; }
.form-error {
    color: #ef4444;
    font-size: 13px;
    margin-bottom: 10px;
    padding: 8px 12px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 6px;
}

/* Card */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.card-pad { padding: 24px; }

/* Kicker */
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand);
    margin-bottom: 12px;
}
.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
    display: inline-block;
}

/* Images in rich-text content */
.section img { max-width: 100%; width: auto; height: auto; display: inline-block; }
.section img[data-lightbox] { cursor: zoom-in; }

/* Lightbox */
.lightbox-overlay { position: fixed; top: 0; right: 0; bottom: 0; left: 0; background: rgba(0,0,0,.88); z-index: 99999; display: flex; align-items: center; justify-content: center; cursor: zoom-out; animation: lbFadeIn .15s ease; }
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-overlay img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 6px; box-shadow: 0 8px 48px rgba(0,0,0,.5); cursor: default; width: auto; height: auto; }
.lightbox-close { position: fixed; top: 16px; right: 20px; color: #fff; font-size: 32px; cursor: pointer; background: none; border: none; line-height: 1; opacity: .8; }
.lightbox-close:hover { opacity: 1; }

/* ── Column menu: hover dropdown ───────────── */
.col-menu { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:2px 0; }
.col-menu--horiz { flex-direction:row; flex-wrap:wrap; gap:4px 16px; align-items:center; }
.col-menu-item { position:relative; }
.col-menu-link {
    display:flex; align-items:center; gap:4px;
    color:inherit; text-decoration:none;
    font-size:0.9em; opacity:0.85; white-space:nowrap; padding:3px 0;
    transition:opacity .15s;
}
.col-menu-link:hover { opacity:1; }
.col-menu-link.active { opacity:1; font-weight:700; }
.col-menu-arrow { font-size:0.8em; opacity:0.55; flex-shrink:0; transition:transform .15s; }
.col-menu-item:hover > a > .col-menu-arrow { transform:rotate(90deg); }
.col-menu--horiz > .col-menu-item:hover > a > .col-menu-arrow { transform:rotate(0deg) translateY(2px); }
.col-submenu {
    display:none; position:absolute; z-index:9999;
    left:100%; top:-8px;
    min-width:160px;
    background:var(--card, #ffffff);
    border:1px solid var(--border, #e2e8f0);
    border-radius:8px;
    box-shadow:0 8px 24px rgba(2,6,23,.12);
    padding:8px 12px;
    flex-direction:column; gap:2px 0;
    align-items:flex-start;
    /* Bridge: transparent left padding covers the gap so hover isn't lost */
    margin-left:6px;
}
.col-submenu::before {
    content:''; position:absolute;
    right:100%; top:0; width:8px; height:100%;
}
.col-menu--horiz > .col-menu-item > .col-submenu {
    left:0; top:100%; margin-left:0; margin-top:6px;
}
.col-menu--horiz > .col-menu-item > .col-submenu::before {
    right:auto; left:0; top:auto;
    bottom:100%; width:100%; height:8px;
}
.col-menu-item:hover > .col-submenu { display:flex; }
/* Feature 48: Menu text size classes */
.nav--text-small .col-menu-link,.nav--text-small .nav-link { font-size:0.8rem; }
.nav--text-large .col-menu-link,.nav--text-large .nav-link { font-size:1.1rem; }
.nav--text-small .col-submenu .col-menu-link,.nav--text-small .col-submenu .nav-link { font-size:0.7rem; }
.nav--text-large .col-submenu .col-menu-link,.nav--text-large .col-submenu .nav-link { font-size:1rem; }
.nav--text-small .nav-btn { font-size:0.8rem; }
.nav--text-large .nav-btn { font-size:1.1rem; }
.nav--text-small .btn-cta { font-size:0.8rem; }
.nav--text-large .btn-cta { font-size:1.1rem; }

/* Breadcrumb navigation */
.breadcrumb-nav { background:var(--bg,#f6f7fb); border-bottom:1px solid var(--border,#e2e8f0); padding:10px 0; }
.breadcrumb-list { list-style:none; margin:0; padding:0; display:flex; flex-wrap:wrap; align-items:center; gap:4px; font-size:13px; }
.breadcrumb-item { display:flex; align-items:center; gap:4px; color:var(--muted,#475569); }
.breadcrumb-item a { color:var(--muted,#475569); text-decoration:none; transition:color .15s; }
.breadcrumb-item a:hover { color:var(--text,#0f172a); text-decoration:underline; }
.breadcrumb-current span { color:var(--text,#0f172a); font-weight:500; }
.breadcrumb-sep { color:#cbd5e1; font-size:16px; line-height:1; }

/* Background image filter layers (Feature 14) */
.has-bg-filter { position: relative; overflow: hidden; }
.has-bg-filter > .bg-filter-layer,
.has-bg-filter > .bg-overlay-layer { position: absolute; inset: 0; pointer-events: none; }
.has-bg-filter > .bg-filter-layer { z-index: 0; background-size: cover; background-position: center; }
.has-bg-filter > .bg-overlay-layer { z-index: 1; }
.has-bg-filter > .container,
.has-bg-filter > .header-inner,
.has-bg-filter > div:not(.bg-filter-layer):not(.bg-overlay-layer) { position: relative; z-index: 2; }

/* Button size variants (Feature 16) */
.btn-sm { padding: 6px 14px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 17px; }

/* Button caption / sub-text (Feature 17) */
.btn-wrap { display: inline-flex; flex-direction: column; align-items: center; gap: 4px; }
/* Full-width button (Feature 44) */
.btn-wrap--full { display: flex; flex-direction: column; align-items: stretch; width: 100%; }
.btn--full { width: 100%; text-align: center; }
@media (max-width: 640px) {
    .btn-wrap { width: 100%; }
    .btn-cta { width: 100%; text-align: center; }
    .cta { flex-direction: column; align-items: stretch; }
}
.btn-caption { font-size: 12px; color: var(--muted, #475569); opacity: 0.85; line-height: 1.3; text-align: center; }
.btn-caption--left { text-align: left; }
.btn-caption--right { text-align: right; }
/* Feature 52: Ondertekst onder kolom */
.col-subtitle { font-size: 0.8rem; color: var(--muted, #64748b); margin-top: 12px; margin-bottom: 0; line-height: 1.5; }

/* ── Hamburger / mobiel menu (Feature 33) ───────────────────────────── */
.header-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: inherit;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background .15s;
    flex-shrink: 0;
}
.header-hamburger:hover { background: rgba(0,0,0,.07); }
.header-hamburger.hbgr-left { order: -1; margin-right: auto; }
@media (max-width: 767px) {
    .header-hamburger { display: flex; }
    .header-nav, .header-lang-switcher, .header-btns, .header-search-wrap { display: none !important; }
}

/* Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(0,0,0,.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}
.mobile-menu-overlay.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu-overlay.overlay-light { background: rgba(255,255,255,.82); }
.mobile-menu-overlay.overlay-none { background: transparent !important; pointer-events: none !important; }

/* Panel */
.mobile-menu-panel {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    background: var(--card, #fff);
    box-shadow: 0 4px 32px rgba(0,0,0,.14);
    max-height: 92vh;
    overflow-y: auto;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform .28s cubic-bezier(.4,0,.2,1), opacity .25s ease;
    pointer-events: none;
}
.mobile-menu-panel.anim-fade { transform: none !important; }
.mobile-menu-panel.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
body.mobile-nav-open { overflow: hidden; }

/* Panel inner */
.mob-panel-inner { padding: 16px 20px 28px; }
.mob-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border, #e2e8f0);
}
.mob-menu-close {
    display: flex; align-items: center; justify-content: center;
    background: none; border: none; cursor: pointer;
    padding: 6px; color: inherit; opacity: 0.7;
    border-radius: 6px; transition: background .15s, opacity .15s;
}
.mob-menu-close:hover { opacity: 1; background: rgba(0,0,0,.06); }

/* Mobile nav list */
.mob-menu { list-style: none; margin: 0; padding: 0; }
.mob-menu-item { border-bottom: 1px solid var(--border, #e2e8f0); }
.mob-menu-item:last-child { border-bottom: none; }
.mob-menu-link, .mob-menu-toggle {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
    width: 100%; min-height: 48px; padding: 10px 0;
    font-size: 1rem; font-weight: 500; color: inherit; text-decoration: none;
    background: none; border: none; cursor: pointer; text-align: left;
    font-family: inherit; transition: opacity .15s;
}
.mob-menu-link:hover, .mob-menu-toggle:hover { opacity: .75; text-decoration: none; }
.mob-menu-link:focus:not(:focus-visible), .mob-menu-toggle:focus:not(:focus-visible) { outline: none; }
.mob-menu-link.active { color: var(--brand, #2b489f); font-weight: 700; }
.mob-arrow { font-size: 1em; opacity: .5; transition: transform .2s; flex-shrink: 0; margin-left: auto; }
.mob-menu-item.is-open > .mob-menu-toggle .mob-arrow { transform: rotate(90deg); }
.mob-submenu { list-style: none; margin: 0; padding: 0 0 8px 16px; display: none; border-top: 1px solid var(--border, #e2e8f0); }
.mob-submenu.is-open { display: block; }
.mob-submenu .mob-menu-item { border-bottom: 1px solid var(--border, #e2e8f0); }
.mob-submenu .mob-menu-item:last-child { border-bottom: none; }
.mob-submenu .mob-menu-link, .mob-submenu .mob-menu-toggle { font-size: .9rem; font-weight: 400; min-height: 40px; }
.mob-menu-item.is-btn { padding: 8px 0 6px; border-bottom: none; }
.mob-menu-item.is-btn + .mob-menu-item { border-top: 1px solid var(--border, #e2e8f0); }

/* Feature 57: Placeholder menu item */
.col-menu-placeholder, .mob-menu-placeholder {
    display: block; padding: 5px 0; font-size: 0.85em; font-style: italic;
    color: var(--muted, #64748b); cursor: default; user-select: none; pointer-events: none;
}
.mob-menu-item--placeholder { border-bottom: 1px solid var(--border, #e2e8f0); }
.mob-menu-item--placeholder:last-child { border-bottom: none; }
.mob-menu-placeholder { padding: 8px 0; min-height: 40px; display: flex; align-items: center; }

/* Feature 58: Divider menu item */
.col-menu-divider {
    display: block; pointer-events: none; user-select: none;
    color: var(--divider-color, #e2e8f0); text-align: center;
    padding: 2px 0; overflow: hidden; white-space: nowrap;
}
.col-menu-divider--line  { border-top: 1px solid var(--divider-color, #e2e8f0); margin: 4px 0; }
.col-menu-divider--none  { margin: 6px 0; }
.col-menu-divider--dot,
.col-menu-divider--gt,
.col-menu-divider--arrow,
.col-menu-divider--custom { font-size: 0.8em; line-height: 1; }
.col-menu-divider--vline  { display: inline-block; border-left: 1px solid var(--divider-color, #e2e8f0); height: 1em; width: 0; vertical-align: middle; margin: 0 4px; }
.mob-menu-divider {
    display: block; pointer-events: none; user-select: none;
    color: var(--divider-color, #e2e8f0);
}
.mob-menu-divider--line  { border-top: 1px solid var(--divider-color, #e2e8f0); margin: 4px 8px; }
.mob-menu-divider--none  { margin: 6px 0; }
.mob-menu-divider--dot,
.mob-menu-divider--gt,
.mob-menu-divider--arrow,
.mob-menu-divider--custom { text-align: center; padding: 4px 0; font-size: 0.85em; }
.mob-menu-divider--vline  { border-top: 1px solid var(--divider-color, #e2e8f0); margin: 4px 8px; }

/* Feature 55: Menu style options */
/* Item prefix */
.col-menu--prefix .col-menu-link::before, .mob-menu--prefix .mob-menu-link::before {
    content: var(--menu-prefix-char, ''); margin-right: 6px; flex-shrink: 0; display: inline-block;
}
/* Border around whole menu */
.col-menu--border-full { border: var(--menu-border-width, 1px) solid var(--menu-border-color, var(--border, #e2e8f0)); border-radius: 6px; padding: 2px 4px; }
/* Border bottom of menu */
.col-menu--border-bottom { border-bottom: var(--menu-border-width, 1px) solid var(--menu-border-color, var(--border, #e2e8f0)); padding-bottom: 4px; }
/* Separator between items */
.col-menu--item-sep .col-menu-item { border-bottom: 1px solid var(--menu-border-color, var(--border, #e2e8f0)); }
.col-menu--item-sep .col-menu-item:last-child { border-bottom: none; }
.mob-menu--item-sep .mob-menu-item { border-bottom: 1px solid var(--menu-border-color, var(--border, #e2e8f0)); }
.mob-menu--item-sep .mob-menu-item:last-child { border-bottom: none; }
/* Pill-style items */
.col-menu--item-pill .col-menu-link { border: 1px solid var(--menu-border-color, var(--border, #e2e8f0)); border-radius: 20px; padding: 3px 12px; }
.mob-menu--item-pill .mob-menu-link { border: 1px solid var(--menu-border-color, var(--border, #e2e8f0)); border-radius: 20px; padding: 6px 14px; }
/* Menu background */
.col-menu--has-bg { background: var(--menu-bg, transparent); border-radius: 6px; padding: 4px 8px; }
.mob-menu--has-bg { background: var(--menu-bg, transparent); border-radius: 6px; padding: 4px 8px; }
/* Menu shadow */
.col-menu--shadow { box-shadow: 0 2px 8px rgba(0,0,0,0.10); }
.mob-menu--shadow { box-shadow: 0 2px 8px rgba(0,0,0,0.10); }
/* Item hover background */
.col-menu--hover-bg .col-menu-link:hover { background: var(--menu-hover-bg); opacity: 1; border-radius: 4px; padding-left: 6px; padding-right: 6px; }
.mob-menu--hover-bg .mob-menu-link:hover { background: var(--menu-hover-bg); opacity: 1; border-radius: 4px; }

/* Nested columns (Feature 31) */
.column-item--nested { display: flex; flex-direction: column; }
.column-nested { display: flex; flex-direction: column; height: 100%; }
.column-nested-item { flex: 1; min-height: 0; }
@media (max-width: 640px) {
    .column-nested { gap: 16px !important; }
}

/* Column table element (Feature 41) */
.col-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.col-table { width: 100%; border-collapse: collapse; font-size: 14px; line-height: 1.5; }
.col-table th, .col-table td { padding: 8px 12px; vertical-align: top; }
.col-table th { font-weight: 600; }
.col-table--border-thin th, .col-table--border-thin td { border: 1px solid var(--col-tbl-bc, #e2e8f0); }
.col-table--border-thick th, .col-table--border-thick td { border: 2px solid var(--col-tbl-bc, #334155); }
.col-table--zebra tr:nth-child(even) td,
.col-table--zebra tr:nth-child(even) th { background: rgba(0,0,0,.04); }
@media (max-width: 640px) {
    .col-table-stack .col-table,
    .col-table-stack thead,
    .col-table-stack tbody,
    .col-table-stack tr { display: block; }
    .col-table-stack thead { display: none; }
    .col-table-stack td,
    .col-table-stack th { display: block; padding: 6px 12px; border: none !important; }
    .col-table-stack tr { border: 1px solid var(--border, #e2e8f0); border-radius: 8px; margin-bottom: 8px; padding: 4px 0; }
    .col-table-stack td[data-label]::before { content: attr(data-label); display: block; font-size: 11px; font-weight: 600; color: var(--muted, #64748b); margin-bottom: 2px; }
}

/* Quill inline table (Feature 42) */
.ql-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 8px 0; }
.ql-table { width: 100%; border-collapse: collapse; font-size: 14px; line-height: 1.5; }
.ql-table th, .ql-table td { padding: 8px 12px; vertical-align: top; }
.ql-table th { font-weight: 600; }
.ql-table--border-thin th, .ql-table--border-thin td { border: 1px solid #e2e8f0; }
.ql-table--border-thick th, .ql-table--border-thick td { border: 2px solid #334155; }
.ql-table--zebra tbody tr:nth-child(even) td,
.ql-table--zebra tbody tr:nth-child(even) th { background: rgba(0,0,0,.04); }
@media (max-width: 640px) {
    .ql-table-wrap { margin: 6px 0; }
}

/* Checklist (Feature 43) */
.list-checkmark { --ck-size: 0.85em; list-style: none; padding-left: 0; margin: 0.5em 0; }
.list-checkmark[data-ck-size="sm"] { --ck-size: 0.65em; }
.list-checkmark[data-ck-size="lg"] { --ck-size: 1.15em; }
.list-checkmark li { display: flex; align-items: baseline; gap: 0.4em; padding-left: 0; margin-bottom: 0.35em; line-height: 1.6; }
.list-checkmark li::before {
    content: '✓';
    flex-shrink: 0;
    font-size: var(--ck-size, 0.85em); font-weight: 700; line-height: 1.6;
    color: var(--ck-color, var(--brand, #2b489f));
}
/* Feature 59: Cross list */
.list-cross { --cx-size: 0.85em; list-style: none; padding-left: 0; margin: 0.5em 0; }
.list-cross[data-cx-size="sm"] { --cx-size: 0.65em; }
.list-cross[data-cx-size="lg"] { --cx-size: 1.15em; }
.list-cross li { display: flex; align-items: baseline; gap: 0.4em; padding-left: 0; margin-bottom: 0.35em; line-height: 1.6; }
.list-cross li::before {
    content: '✕';
    flex-shrink: 0;
    font-size: var(--cx-size, 0.85em); font-weight: 700; line-height: 1.6;
    color: var(--cx-color, #ef4444);
}
