/* PristineMeubel Reiniging – België */
:root {
  --green: #6c7c1f;
  --green-dark: #465214;
  --green-deep: #2f370c;
  --gold: #c9a13b;
  --gold-soft: #f3ead0;
  --cream: #faf8f1;
  --ink: #1f2410;
  --muted: #5d6250;
  --line: #e4e0d2;
  --white: #fff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(47, 55, 12, .10);
  --wrap: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Lato', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); }
a:hover { color: var(--green); }
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .6em; color: var(--green-deep); font-weight: 900; }
h1 { font-size: clamp(2rem, 4.2vw, 3.1rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.55rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
ul { padding-left: 1.2em; }
.wrap { width: min(100% - 32px, var(--wrap)); margin-inline: auto; }
.narrow { max-width: 780px; }
.center { text-align: center; }
.center.narrow { margin-inline: auto; }
.eyebrow { display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .6em; }
.lead { font-size: 1.15rem; color: var(--muted); }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; z-index: 100; background: var(--white); padding: 8px 12px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  padding: .85em 1.5em; border-radius: 999px; border: 2px solid transparent;
  font-weight: 700; font-size: 1rem; text-decoration: none; cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--green-deep); }
.btn-gold:hover { background: #b88f2c; color: var(--green-deep); }
.btn-outline { border-color: currentColor; color: var(--green-dark); background: transparent; }
.btn-light { border-color: var(--white); color: var(--white); background: transparent; }
.btn-light:hover { background: var(--white); color: var(--green-deep); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.4em; }
.center .btn-row { justify-content: center; }

/* Topbar + header */
.topbar { background: var(--green-deep); color: #e9ecd9; font-size: .88rem; }
.topbar .wrap { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; flex-wrap: wrap; }
.topbar a { color: #fff; text-decoration: none; }
.topbar span + span::before { content: "•"; margin: 0 .6em; color: var(--gold); }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.97); backdrop-filter: blur(6px); border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--green-deep); }
.brand img { width: 150px; height: auto; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav > ul { display: flex; list-style: none; margin: 0; padding: 0; gap: 2px; }
.nav li { position: relative; }
.nav a, .nav button.dd {
  display: block; padding: 10px 12px; border-radius: 8px; text-decoration: none;
  font: inherit; font-size: .97rem; font-weight: 700; color: var(--ink); background: none; border: 0; cursor: pointer;
}
.nav a:hover, .nav button.dd:hover, .nav a[aria-current="page"] { color: var(--green); }
.nav button.dd::after { content: ""; display: inline-block; margin-left: 6px; border: 4px solid transparent; border-top-color: currentColor; transform: translateY(2px); }
.nav .sub {
  position: absolute; top: 100%; left: 0; min-width: 270px; list-style: none; margin: 0; padding: 8px;
  background: var(--white); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow);
  display: none;
}
.nav .sub a { font-weight: 400; padding: 8px 12px; }
.nav .sub a:hover { background: var(--cream); }
.nav li:hover > .sub, .nav li:focus-within > .sub, .nav li.open > .sub { display: block; }
.nav .btn { margin-left: 8px; padding: .65em 1.2em; color: var(--white); }
.nav .btn-primary { background: var(--green); }
.nav .btn-primary:hover { background: var(--green-dark); color: var(--white); }
.menu-toggle { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; width: 26px; height: 3px; margin: 5px 0; background: var(--green-deep); border-radius: 2px; }

@media (max-width: 1060px) {
  .menu-toggle { display: block; }
  /* geen blur op mobiel: backdrop-filter zou het uitklapmenu in de header opsluiten */
  .site-header { backdrop-filter: none; background: var(--white); }
  .nav { position: fixed; top: var(--nav-top, 96px); left: 0; right: 0; bottom: 0; background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 12px 24px rgba(0,0,0,.12); flex-direction: column; align-items: stretch; padding: 16px 16px 32px; overflow-y: auto; overscroll-behavior: contain; display: none; }
  body.menu-open { overflow: hidden; }
  .nav.open { display: flex; }
  .nav > ul { flex-direction: column; }
  .nav .sub { position: static; display: none; box-shadow: none; border: 0; padding: 0 0 0 12px; }
  .nav li.open > .sub { display: block; }
  .nav li:hover > .sub { display: none; }
  .nav li.open:hover > .sub { display: block; }
  .nav .btn { margin: 12px 0 0; justify-content: center; }
  .topbar .hide-sm { display: none; }
  .topbar span + span::before { content: none; }
  .topbar .wrap { justify-content: center; text-align: center; }
}

/* Hero */
.hero { position: relative; color: var(--white); background: var(--green-deep); overflow: hidden; }
.hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .45; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(31,36,16,.85) 0%, rgba(31,36,16,.45) 60%, rgba(31,36,16,.15) 100%); }
.hero .wrap { position: relative; z-index: 1; padding: clamp(64px, 10vw, 120px) 0; }
.hero h1 { color: var(--white); max-width: 760px; }
.hero p { max-width: 640px; font-size: 1.15rem; color: #eef0e2; }
.hero .checks { list-style: none; padding: 0; margin: 1.2em 0 0; display: grid; gap: 6px; }
.hero .checks li::before { content: "✓"; color: var(--gold); font-weight: 900; margin-right: .6em; }
.page-hero { background: var(--cream); border-bottom: 1px solid var(--line); }
.page-hero .wrap { padding: clamp(40px, 7vw, 80px) 0 clamp(32px, 5vw, 56px); }
.page-hero p { max-width: 760px; }
.breadcrumb { font-size: .88rem; color: var(--muted); margin-bottom: 1em; }
.breadcrumb a { color: var(--muted); }

/* Sections */
section.block { padding: clamp(48px, 7vw, 88px) 0; }
section.alt { background: var(--cream); }
section.dark { background: var(--green-deep); color: #eef0e2; }
section.dark h2, section.dark h3 { color: var(--white); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split.reverse > :first-child { order: 2; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split.reverse > :first-child { order: 0; } }

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card img { aspect-ratio: 3/2; object-fit: cover; width: 100%; }
.card .body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card .body p { color: var(--muted); font-size: .97rem; }
.card .more { margin-top: auto; font-weight: 700; text-decoration: none; }
a.card { text-decoration: none; color: inherit; }
a.card:hover h3 { color: var(--green); }

.usp { padding: 24px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); }
.usp .num { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--gold-soft); color: var(--green-deep); font-weight: 900; margin-bottom: 12px; }
.usp h3 { font-size: 1.1rem; }
.usp p { color: var(--muted); font-size: .97rem; margin: 0; }

.checklist { list-style: none; padding: 0; margin: 0 0 1em; }
.checklist li { position: relative; padding-left: 1.9em; margin: .45em 0; }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 1.35em; height: 1.35em; border-radius: 50%; background: var(--gold-soft); color: var(--green-dark); font-weight: 900; font-size: .85em; display: grid; place-items: center; margin-top: .25em; }
.cols-2 { columns: 2; column-gap: 32px; }
@media (max-width: 600px) { .cols-2 { columns: 1; } }
.tags { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0 0 1em; }
.tags li { background: var(--white); border: 1px solid var(--line); padding: 6px 12px; border-radius: 999px; font-size: .93rem; }
.tags a { text-decoration: none; }
section.alt .tags li { background: var(--white); }

.steps { counter-reset: step; display: grid; gap: 18px; }
.step { position: relative; padding: 22px 22px 22px 76px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.step::before { counter-increment: step; content: counter(step); position: absolute; left: 22px; top: 22px; width: 38px; height: 38px; border-radius: 50%; background: var(--green); color: var(--white); font-weight: 900; display: grid; place-items: center; }
.step h3 { margin-bottom: .3em; }
.step p { margin: 0; color: var(--muted); }

section[id] { scroll-margin-top: 90px; }

/* Tijdsvakken */
.slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 1.2em 0; }
.slot { background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--gold); border-radius: 12px; padding: 14px; text-align: center; }
.slot strong { display: block; color: var(--green-deep); }
.slot span { display: block; font-weight: 700; color: var(--green); font-size: 1.05rem; }
.slot small { display: block; color: var(--muted); font-size: .8rem; }
@media (max-width: 520px) { .slots { grid-template-columns: 1fr; } }

/* Callout / CTA */
.cta-band { background: linear-gradient(120deg, var(--green-dark), var(--green)); color: var(--white); border-radius: 22px; padding: clamp(32px, 5vw, 56px); display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.cta-band h2 { color: var(--white); margin-bottom: .3em; }
.cta-band p { margin: 0; color: #eef0e2; }
@media (max-width: 760px) { .cta-band { grid-template-columns: 1fr; } }
.note { background: var(--gold-soft); border-left: 4px solid var(--gold); padding: 16px 20px; border-radius: 10px; margin: 1.2em 0; }
.note p:last-child, .note ul:last-child { margin-bottom: 0; }

/* Price tables */
.price-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.price-nav a { padding: 8px 14px; border-radius: 999px; background: var(--cream); border: 1px solid var(--line); text-decoration: none; font-weight: 700; font-size: .93rem; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); margin-bottom: 1em; }
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--cream); color: var(--green-deep); font-size: .9rem; text-transform: uppercase; letter-spacing: .05em; }
tr:last-child td { border-bottom: 0; }
td.price { white-space: nowrap; font-weight: 700; color: var(--green-dark); text-align: right; }
td small { display: block; color: var(--muted); }
.price-section { scroll-margin-top: 100px; margin-bottom: 48px; }

/* Reviews */
.review { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.review .stars { color: var(--gold); letter-spacing: 2px; }
.review p { margin: 0; color: var(--ink); font-size: .98rem; }
.review .who { margin-top: auto; font-weight: 700; color: var(--green-dark); font-size: .93rem; }
.review .who small { font-weight: 400; color: var(--muted); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; }
.gallery a { display: block; border-radius: 12px; overflow: hidden; }
.gallery img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform .3s; }
.gallery a:hover img { transform: scale(1.03); }
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.88); display: none; place-items: center; z-index: 200; padding: 16px; }
.lightbox.open { display: grid; }
.lightbox img { max-height: 92vh; max-width: 100%; border-radius: 8px; }
.lightbox button { position: absolute; top: 12px; right: 16px; background: none; border: 0; color: #fff; font-size: 2.4rem; cursor: pointer; }

/* FAQ */
.faq details { border: 1px solid var(--line); border-radius: 12px; background: var(--white); margin-bottom: 10px; }
.faq summary { cursor: pointer; padding: 16px 20px; font-weight: 700; color: var(--green-deep); list-style: none; position: relative; padding-right: 48px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 20px; top: 12px; font-size: 1.5rem; color: var(--green); }
.faq details[open] summary::after { content: "–"; }
.faq details > div { padding: 0 20px 18px; color: var(--muted); }

/* Regions */
.zone { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: var(--white); }
.zone h3 { display: flex; justify-content: space-between; gap: 8px; align-items: baseline; }
.zone h3 small { font-size: .85rem; font-weight: 700; color: var(--gold); }
.zone .muted { color: var(--muted); font-size: .9rem; margin: -.4em 0 .8em; }
.gem-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; margin-top: 20px; }
.gem { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; }
.gem h3 { font-size: 1.05rem; margin: 0 0 .3em; }
.gem p { margin: 0; color: var(--muted); font-size: .92rem; }
.excluded { border-left: 4px solid #b3412e; }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--cream); }
.map-wrap svg { display: block; width: 100%; height: auto; }

/* Forms */
.form { display: grid; gap: 14px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px, 4vw, 32px); box-shadow: var(--shadow); }
.form label { font-weight: 700; font-size: .93rem; display: grid; gap: 6px; }
.form input, .form textarea, .form select { font: inherit; padding: 12px 14px; border-radius: 10px; border: 1px solid #cfcab8; background: #fff; width: 100%; }
.form input:focus, .form textarea:focus, .form select:focus { outline: 2px solid var(--green); border-color: var(--green); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form .row { grid-template-columns: 1fr; } }
.form .check { display: flex; gap: 10px; align-items: flex-start; font-weight: 400; }
.form .check input { width: auto; margin-top: 5px; }
.hidden { display: none; }

/* Contact list */
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; }
.contact-list .ic { flex: none; width: 38px; height: 38px; border-radius: 50%; background: var(--gold-soft); display: grid; place-items: center; }

/* Footer */
.site-footer { background: var(--green-deep); color: #d9ddc6; padding: 64px 0 24px; font-size: .95rem; }
.site-footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 1em; }
.site-footer a { color: #eef0e2; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); margin-top: 40px; padding-top: 20px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .85rem; }
.footer-logo { width: 160px; background: var(--white); border-radius: 12px; padding: 8px; margin-bottom: 16px; }
.nl-link { display: inline-flex; gap: 8px; align-items: center; }
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1); }
.social a:hover { background: var(--gold); color: var(--green-deep); }
.social svg { width: 20px; height: 20px; fill: currentColor; }

/* Projecten (cases) */
.case-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; color: var(--muted); font-size: .95rem; margin-bottom: 8px; }
.case-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0 32px; }
.case-photos.single { grid-template-columns: 1fr; }
.case-photos figure { margin: 0; }
.case-photos img { width: 100%; height: auto; border-radius: 12px; }
.case-photos figcaption { font-weight: 700; margin-top: 6px; }
@media (max-width: 520px) { .case-photos { grid-template-columns: 1fr; } }

/* WhatsApp float */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 60; width: 58px; height: 58px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0,0,0,.25); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }

/* Juridische pagina's */
.legal h2 { font-size: 1.3rem; margin-top: 1.8em; }
.legal p, .legal li { color: #33391f; }
.legal .table-wrap td { font-size: .93rem; }

/* Contactvoorkeur en foto-upload */
.contact-pref { background: var(--cream); border: 1px solid var(--line); border-left: 4px solid #25d366; border-radius: var(--radius); padding: 22px 24px; }
.contact-pref h3 { margin-bottom: .4em; }
.pref-list { padding-left: 1.3em; margin: 0 0 1em; }
.pref-list li { margin: .7em 0; }
.contact-pref .small { font-size: .92rem; color: var(--muted); margin: 0; }
.badge { display: inline-block; background: #25d366; color: #fff; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 2px 8px; border-radius: 999px; vertical-align: middle; }
.form fieldset.upload { border: 1px dashed #cfcab8; border-radius: 12px; padding: 14px 16px; margin: 0; display: grid; gap: 8px; }
.form fieldset.upload legend { font-weight: 700; font-size: .93rem; padding: 0 6px; }
.form .optional, .form .hint { font-weight: 400; color: var(--muted); font-size: .88rem; }
.form .hint { margin: 0 0 4px; }
.form input[type=file] { padding: 8px; background: var(--cream); }
.upload-status { margin: 0; font-size: .88rem; color: var(--green-dark); }
.upload-status.error { color: #b3412e; font-weight: 700; }
/* Wat wilt u laten reinigen? */
.form fieldset.items { border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; margin: 0; display: grid; gap: 6px; }
.form fieldset.items legend { font-weight: 700; font-size: .93rem; padding: 0 6px; }
.form .item { border-radius: 10px; padding: 8px 10px; display: grid; gap: 8px; }
.form .item.on { background: var(--cream); }
.form .item .size { display: none; font-weight: 400; font-size: .9rem; margin-left: 28px; }
.form .item.on .size { display: grid; }
.form .item .size input[type=number] { max-width: 140px; }
.form .extras { border-top: 1px dashed var(--line); margin-top: 6px; padding-top: 10px; display: grid; gap: 6px; }
/* Blog */
.post-meta, .post-date { color: var(--muted); font-size: .9rem; margin: 0 0 .6em; }
.post-body { font-size: 1.08rem; line-height: 1.75; }
.post-body h2 { font-size: 1.6rem; margin-top: 1.8em; scroll-margin-top: 100px; }
.post-body h3 { margin-top: 1.4em; scroll-margin-top: 100px; }
.post-body p, .post-body li { color: #2b3018; }
.post-body li { margin: .35em 0; }
.post-body img.post-hero { border-radius: var(--radius); margin-bottom: 28px; width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.post-body figure { margin: 1.6em 0; }
.post-body figure img { border-radius: 12px; width: 100%; }
.post-body figcaption { font-size: .88rem; color: var(--muted); margin-top: 6px; }
.post-body blockquote { margin: 1.6em 0; padding: 16px 22px; border-left: 4px solid var(--gold); background: var(--gold-soft); border-radius: 0 12px 12px 0; }
.post-body blockquote p:last-child { margin-bottom: 0; }
.post-body hr { border: 0; border-top: 1px solid var(--line); margin: 2em 0; }
.toc { background: var(--cream); border: 1px solid var(--line); border-radius: 12px; padding: 16px 22px; margin: 0 0 28px; font-size: .98rem; }
.toc ol { margin: .5em 0 0; padding-left: 1.2em; }
.toc a { text-decoration: none; }
.post-cta { margin-top: 48px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; }
.post-cta h2 { font-size: 1.35rem; margin-top: 0; }
/* Mobiel: nooit zijwaarts schuiven */
html { overflow-x: clip; }
.split > *, .grid > *, .footer-grid > *, .cta-band > * { min-width: 0; }
a[href^="mailto:"], .contact-list a, .legal td, .legal p { overflow-wrap: anywhere; }
.table-wrap { max-width: 100%; }
@media (max-width: 480px) { .legal .table-wrap table { min-width: 0; } .legal th, .legal td { padding: 10px; } }
/* Korte tekst in de bovenbalk op mobiel */
.show-sm { display: none; }
@media (max-width: 1060px) { .topbar .show-sm { display: inline; } }

/* Hulpklassen (in plaats van inline stijlen) */
.m-0 { margin: 0; }
.mt-16 { margin-top: 16px; } .mt-20 { margin-top: 20px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-56 { margin-top: 56px; }
.mb-48 { margin-bottom: 48px; }
.rounded { border-radius: 12px; } .rounded-lg { border-radius: 14px; }
img.ratio-auto, .split img.ratio-auto { aspect-ratio: auto; }
.items-start { align-items: start; }
.gap-16 { gap: 16px; }
th.text-right, .text-right { text-align: right; }
