/* Nanopixo blog, Phase 1. Builds on /css/style.css (header, footer, .btn, container). */
:root { --blog-ink: #111418; --blog-muted: #6b7280; --blog-line: #e7e7ea; --blog-bg-soft: #f6f6f7; --blog-yellow: #ffff20; }

.blog-body { font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--blog-ink); }
/* Only centre horizontally, never touch vertical margins (those carry section rhythm). */
/* Horizontal padding only, must NOT zero vertical padding, or it would override
   the hero/hub/article top padding (this rule is more specific than those). */
.blog-body .container { max-width: 1120px; margin-left: auto; margin-right: auto; padding-left: 24px; padding-right: 24px; }
.blog-body main { padding-bottom: 0; } /* newsletter band sits flush to the footer */

/* Yellow title highlight, identical to the features.html hero <mark>. */
.blog-body mark { background: var(--blog-yellow); color: var(--blog-ink); padding: 0 .12em 2px; border-bottom: 3px solid var(--blog-ink); -webkit-box-decoration-break: clone; box-decoration-break: clone; mix-blend-mode: multiply; }

/* Breadcrumb */
.blog-crumb { font-size: 13px; color: var(--blog-muted); margin: 22px 0 4px; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.blog-crumb a { color: var(--blog-muted); text-decoration: none; }
.blog-crumb a:hover { color: var(--blog-ink); }
.blog-crumb__sep { opacity: .5; }
.blog-crumb [aria-current] { color: var(--blog-ink); font-weight: 600; }

/* Home hero + search, matches the features.html hero (top space, tight leading, bold copy). */
.blog-home-hero { padding: 80px 24px 16px; }
.blog-home-hero h1 { font-size: clamp(34px, 5.4vw, 54px); line-height: 1.05; font-weight: 900; letter-spacing: -.02em; margin: 0 0 22px; max-width: 24ch; }
.blog-home-hero p { font-size: 18px; line-height: 1.6; color: #2b2f36; font-weight: 500; max-width: 660px; margin: 0 0 40px; }
.blog-search-row { display: flex; align-items: center; gap: 28px; }
.blog-search { flex: 1 1 460px; min-width: 0; max-width: 460px; }
/* Large magnifier sits to the LEFT of the search box. */
.blog-search-deco { width: 92px; height: 92px; color: var(--blog-ink); flex: none; }
.blog-search__wrap { display: block; max-width: 460px; }
.blog-search input { width: 100%; padding: 14px 18px; font-size: 15px; border: 2.5px solid var(--blog-ink); border-radius: 12px; outline: none; }
.blog-search input:focus { box-shadow: 0 0 0 3px rgba(17, 20, 24, .12); }

.blog-section-block { margin-top: 80px; }
/* Section kicker, yellow chip + icon, mirroring features.html `.label`. */
.blog-label { display: inline-flex; align-items: center; gap: 14px; margin: 0 0 30px; }
.blog-label__ico { width: 26px; height: 26px; color: var(--blog-ink); flex: none; }
.blog-label span { background: var(--blog-yellow); font-weight: 700; font-size: 20px; letter-spacing: -.01em; padding: 7px 16px; border-radius: 6px; color: var(--blog-ink); }

/* Categories chips */
.blog-cats { display: flex; flex-wrap: wrap; gap: 10px; }
.blog-cat { display: inline-block; padding: 10px 16px; border: 1.5px solid var(--blog-line); border-radius: 999px; font-size: 15px; font-weight: 700; color: var(--blog-ink); text-decoration: none; transition: .15s; }
.blog-cat:hover { background: var(--blog-ink); color: #fff; border-color: var(--blog-ink); }

/* Featured */
.blog-featured-wrap { margin-top: 40px; }
.blog-featured { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; border: 1px solid var(--blog-line); border-radius: 22px; overflow: hidden; text-decoration: none; color: inherit; transition: border-color .15s ease, box-shadow .15s ease; }
.blog-featured:hover { border-color: #d6d6da; box-shadow: 0 16px 40px rgba(0,0,0,.07); }
.blog-featured__media { display: block; background: var(--blog-bg-soft); }
.blog-featured__media img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 16/9; }
.blog-featured__body { padding: 44px; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.blog-featured__label { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; font-weight: 800; color: var(--blog-muted); }
.blog-featured__title { font-size: clamp(23px, 2.4vw, 31px); font-weight: 900; letter-spacing: -.01em; line-height: 1.2; }
.blog-featured__sum { color: #3a3a3c; line-height: 1.6; }
.blog-featured__more { font-weight: 800; }

/* Card grid */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card { display: flex; flex-direction: column; border: 1px solid var(--blog-line); border-radius: 18px; overflow: hidden; text-decoration: none; color: inherit; transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease; }
.blog-card:hover { transform: translateY(-3px); border-color: #d6d6da; box-shadow: 0 14px 34px rgba(0,0,0,.08); }
.blog-card__media { display: block; background: var(--blog-bg-soft); }
.blog-card__media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.blog-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; }
.blog-card__cat { font-size: 11px; text-transform: uppercase; letter-spacing: .05em; font-weight: 800; color: var(--blog-muted); }
.blog-card__title { font-size: 18px; font-weight: 800; line-height: 1.3; letter-spacing: -.01em; }
.blog-card__meta { font-size: 13px; color: var(--blog-muted); margin-top: auto; }
.blog-empty { color: var(--blog-muted); padding: 24px 0; }

/* Category hub */
.blog-hub { padding-top: 18px; }
.blog-hub h1 { font-size: clamp(28px, 4.5vw, 42px); font-weight: 900; letter-spacing: -.02em; margin: 4px 0 16px; }
.blog-hub__intro { max-width: 760px; }
.blog-hub__intro p { font-size: 17px; line-height: 1.7; color: #3a3a3c; margin: 0 0 14px; }

/* Article */
.blog-article { max-width: 760px; padding-top: 10px; }
.blog-article__head { margin: 8px 0 4px; }
.blog-article__cat { display: inline-block; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; font-weight: 800; color: var(--blog-muted); text-decoration: none; margin-bottom: 10px; }
.blog-article__head h1 { font-size: clamp(28px, 4.6vw, 44px); font-weight: 900; letter-spacing: -.02em; line-height: 1.12; margin: 0 0 14px; }
.blog-article__summary { font-size: 19px; line-height: 1.6; color: #3a3a3c; margin: 0 0 16px; }
/* Byline: author photo (circle, left) + name, role, date, reading time. */
.blog-article__byline { display: flex; align-items: center; gap: 14px; padding: 6px 0 0; }
.blog-article__avatar { width: 52px; height: 52px; border-radius: 999px; object-fit: cover; flex: none; background: var(--blog-bg-soft); }
.blog-article__byline-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.blog-article__author { font-weight: 700; color: var(--blog-ink); text-decoration: none; }
.blog-article__author:hover { text-decoration: underline; }
.blog-article__sub { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 14px; font-size: 14px; color: var(--blog-muted); }
.blog-article__role { font-weight: 600; color: var(--blog-ink); }
.blog-article__hero { margin: 44px 0 8px; }
.blog-article__hero img { width: 100%; height: auto; border-radius: 14px; display: block; background: var(--blog-bg-soft); }

/* Key takeaways */
.blog-takeaways { background: none; border: 0; border-radius: 0; padding: 0; margin: 52px 0 52px; }
/* Yellow "lip" heading with a down-arrow to its left, matching the features page.
   Shared by Kernpunten + Verwante artikels. */
.blog-takeaways h2, .blog-related__title, .blog-lip { display: inline-flex; align-items: center; gap: 14px; background: none; padding: 0; margin: 0 0 22px; }
.blog-takeaways h2 .blog-dn, .blog-related__title .blog-dn, .blog-lip .blog-dn { flex: none; width: 24px; height: 24px; color: var(--blog-ink); }
.blog-takeaways h2 > span, .blog-related__title > span, .blog-lip > span { background: var(--blog-yellow); color: var(--blog-ink); font-size: 22px; font-weight: 700; letter-spacing: -.01em; text-transform: none; padding: 7px 16px; border-radius: 6px; }
.blog-section > .blog-lip { margin: 0 0 39px; }
.blog-takeaways ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 20px; }
.blog-takeaways li { position: relative; padding-left: 30px; font-size: 19px; line-height: 1.5; font-weight: 600; color: var(--blog-ink); }
.blog-takeaways li::before { content: '\2713'; position: absolute; left: 0; top: 0; font-size: 21px; line-height: 1.5; font-weight: 800; color: var(--blog-ink); }

/* TOC */
.blog-toc { background: var(--blog-bg-soft); border-radius: 12px; padding: 18px 22px; margin: 0 0 44px; }
.blog-toc__label { font-size: 12px; text-transform: uppercase; letter-spacing: .07em; color: var(--blog-muted); font-weight: 700; margin-bottom: 8px; }
.blog-toc ol { margin: 0; padding-left: 20px; }
.blog-toc li { margin: 9px 0; }
.blog-toc a { color: var(--blog-ink); text-decoration: underline; text-decoration-color: var(--blog-muted); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.blog-toc a:hover { text-decoration-color: var(--blog-ink); }

/* Body */
.blog-article__body { font-size: 18px; line-height: 1.75; color: #1d1d1f; }
.blog-article__body a { color: var(--blog-ink); font-weight: 600; text-decoration: underline; text-decoration-color: var(--blog-yellow); text-decoration-thickness: 2px; text-underline-offset: 2px; transition: text-decoration-color .15s ease; }
.blog-article__body a:hover { text-decoration-color: var(--blog-ink); }
.blog-section { scroll-margin-top: 90px; margin-bottom: 52px; }
.blog-section h2 { font-size: clamp(23px, 3vw, 29px); font-weight: 800; letter-spacing: -.01em; line-height: 1.25; margin: 0 0 20px; }
.blog-article__body p { margin: 0 0 22px; }
.blog-def { font-weight: 600; font-size: 1.06em; color: #111418; margin: 0 0 24px; }
/* Section summary: a filled light-grey box, indented to the right 2/3 (left 1/3
   empty), led by an info icon. Goes full-width on narrow screens. */
.blog-article__body .blog-summary { display: flex; align-items: flex-start; gap: 13px; margin: 32px 0 32px 33.33%; background: var(--blog-bg-soft); border-radius: 14px; padding: 20px 24px; font-style: italic; color: #3a3a3c; line-height: 1.6; }
.blog-article__body .blog-summary::before { content: ''; flex: none; width: 23px; height: 23px; margin-top: 1px; background: var(--blog-ink); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='16' x2='12' y2='12'/%3E%3Cline x1='12' y1='8' x2='12.01' y2='8'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='16' x2='12' y2='12'/%3E%3Cline x1='12' y1='8' x2='12.01' y2='8'/%3E%3C/svg%3E") center/contain no-repeat; }
@media (max-width: 700px) { .blog-article__body .blog-summary { margin-left: 0; } }
.blog-list { margin: 4px 0 24px; padding-left: 22px; list-style: disc; }
.blog-list li { margin-bottom: 11px; }
.blog-list li::marker { color: var(--blog-ink); }


/* Related-articles carousel, under the CTA, so readers don't dead-end. */
.blog-related { max-width: 760px; margin: 56px auto 30px; }
.blog-related__track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 4px 14px; margin: 0 -4px; scrollbar-width: thin; -webkit-overflow-scrolling: touch; }
.blog-related__track .blog-card { flex: 0 0 300px; scroll-snap-align: start; }
.blog-related__track::-webkit-scrollbar { height: 8px; }
.blog-related__track::-webkit-scrollbar-thumb { background: var(--blog-line); border-radius: 8px; }
@media (max-width: 600px) { .blog-related__track .blog-card { flex-basis: 84%; } }

/* FAQ */
.blog-faq { margin: 60px auto 0; }
.blog-faq h2 { font-size: clamp(23px, 3vw, 29px); font-weight: 800; letter-spacing: -.01em; line-height: 1.25; margin: 0 0 14px; }
.blog-faq__item { border-bottom: 1px solid var(--blog-line); padding: 4px 0; }
.blog-faq__item summary { cursor: pointer; font-weight: 700; font-size: 19px; padding: 16px 0; list-style: none; position: relative; padding-right: 28px; }
.blog-faq__item summary::-webkit-details-marker { display: none; }
.blog-faq__item summary::after { content: '+'; position: absolute; right: 4px; top: 12px; font-size: 22px; color: var(--blog-muted); }
.blog-faq__item[open] summary::after { content: '–'; }
.blog-faq__item > div { padding: 0 0 16px; line-height: 1.65; color: #3a3a3c; }

/* Author box */
.blog-author-box { margin: 40px auto 0; display: flex; gap: 30px; align-items: center; background: var(--blog-bg-soft); border-radius: 16px; padding: 28px 30px; }
.blog-author-box__photo { width: 92px; height: 92px; border-radius: 999px; object-fit: cover; flex: none; background: #ddd; }
.blog-author-box__label { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--blog-muted); font-weight: 700; }
.blog-author-box__name { font-size: 18px; font-weight: 800; color: var(--blog-ink); text-decoration: none; }
.blog-author-box__role { color: var(--blog-muted); font-size: 14px; margin-bottom: 6px; }
.blog-author-box__bio { margin: 0; line-height: 1.6; color: #3a3a3c; }

/* Author page */
.blog-authorpage { display: flex; gap: 22px; align-items: center; }
.blog-authorpage__photo { width: 88px; height: 88px; border-radius: 999px; object-fit: cover; flex: none; background: #ddd; }
.blog-authorpage__role { color: var(--blog-muted); margin-bottom: 6px; }

/* "Start free, today" CTA, image left, content right. Sits above the newsletter. */
.blog-freecta-wrap { margin-top: 92px; margin-bottom: 72px; }
/* The whole box is one link; the button keeps its own hover (.btn--primary). */
.blog-freecta { display: grid; grid-template-columns: 1fr 1.1fr; gap: 0; border: 1px solid var(--blog-line); border-radius: 22px; overflow: hidden; background: var(--blog-bg-soft); text-decoration: none; color: inherit; transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease; }
.blog-freecta:hover { border-color: #d6d6da; box-shadow: 0 16px 40px rgba(0,0,0,.08); transform: translateY(-2px); }
.blog-freecta__media { background: var(--blog-bg-soft); }
.blog-freecta__media img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 220px; }
.blog-freecta__body { padding: 44px; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.blog-freecta__title { font-size: clamp(24px, 2.6vw, 32px); font-weight: 900; letter-spacing: -.02em; line-height: 1.1; margin: 0; }
.blog-freecta__text { margin: 0; font-size: 16px; line-height: 1.6; color: #3a3a3c; }
.blog-freecta__btn { align-self: flex-start; margin-top: 6px; }
/* Newsletter uses the site-wide .newsletter band from css/style.css, but on the
   blog its title matches the free-CTA title (same Roboto, size and weight). */
.blog-body .newsletter__title { font-family: 'Roboto', sans-serif; font-size: clamp(24px, 2.6vw, 32px); font-weight: 900; letter-spacing: -.02em; line-height: 1.1; }

@media (max-width: 880px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured__media img { aspect-ratio: 16/9; }
  .blog-featured__body { padding: 32px; }
  .blog-section-block { margin-top: 64px; }
  .blog-freecta-wrap { margin-top: 72px; margin-bottom: 56px; }
  .blog-freecta { grid-template-columns: 1fr; }
  .blog-freecta__media img { min-height: 180px; max-height: 280px; }
}
@media (max-width: 560px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-home-hero { padding: 44px 24px 4px; }
  .blog-search-deco { display: none; }
  .blog-freecta__body { padding: 28px; }
  .blog-featured__body { padding: 26px; }
  .blog-news__inner { flex-direction: column; align-items: stretch; padding: 28px; }
  .blog-label span { font-size: 18px; }
  .blog-article__body { font-size: 17px; }
  .blog-authorpage { flex-direction: column; text-align: center; align-items: center; }
}

/* Article rich blocks: "in short" callout, captioned figure, comparison table */
.blog-callout { background: none; border: 0; border-left: 5px solid var(--blog-yellow); border-radius: 0; padding: 4px 0 4px 26px; margin: 32px 0; font-size: 19px; line-height: 1.66; font-weight: 500; color: var(--blog-ink); }
.blog-callout strong { font-weight: 800; }
.blog-figure { margin: 38px 0; }

/* Light-green highlight box (e.g. a Nanopixo compliance tip). Bold text. */
.blog-greenbox { background: #eafaf0; border: 1px solid #bfe6cd; border-radius: 14px; padding: 22px 26px; }
.blog-greenbox p { margin: 0; font-size: 17.5px; line-height: 1.6; font-weight: 700; color: var(--blog-ink); }
.blog-greenbox a { color: inherit; }

/* Compliance checklist: readable rows with a green check per item. */
.blog-checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.blog-checklist li { display: flex; gap: 18px; align-items: flex-start; background: var(--blog-soft); border: 1px solid var(--blog-line); border-radius: 14px; padding: 20px 24px; }
.blog-checklist__ico { flex: none; width: 32px; height: 32px; border-radius: 50%; background: #e3f5ea; color: #0a7d3c; display: inline-flex; align-items: center; justify-content: center; margin-top: 2px; }
.blog-checklist__ico--drop { background: #fdeaea; color: #c0392b; }
.blog-checklist__ico svg { width: 19px; height: 19px; }
.blog-checklist__txt { display: flex; flex-direction: column; gap: 5px; }
.blog-checklist__txt b { font-size: 19px; font-weight: 800; letter-spacing: -.01em; color: var(--blog-ink); }
.blog-checklist__txt { font-size: 16.5px; line-height: 1.5; color: #374151; }

/* Interactive "lost commission" calculator (embed), styled after the pricing finder. */
.blog-calc-wrap { display: flex; flex-wrap: wrap; align-items: center; gap: 30px 40px; }
.blog-calc-aside { flex: 1 1 220px; font-size: 16px; line-height: 1.65; color: #3a3a3c; }
.blog-calc { flex: 2 1 430px; background: #f4f4f6; border-radius: 22px; padding: 36px 40px; display: flex; flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: center; gap: 30px 56px; }
.blog-calc__row { display: flex; flex-direction: column; align-items: stretch; gap: 18px; }
.blog-calc__field { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }
.blog-calc__label { font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--blog-muted); }
.blog-calc__slider-row { display: flex; align-items: center; gap: 14px; }
.blog-calc__slider { width: 210px; max-width: 56vw; accent-color: #111418; cursor: pointer; }
.blog-calc__slider-val { font-size: 20px; font-weight: 900; min-width: 1.3em; text-align: left; color: var(--blog-ink); }
.blog-calc__country, .blog-calc__price { font-family: inherit; font-size: 16px; font-weight: 700; color: var(--blog-ink); background: #fff; border: 2px solid #e3e3e7; border-radius: 10px; padding: 10px 14px; cursor: pointer; min-width: 150px; max-width: 90vw; }
.blog-calc__result { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.blog-calc__amount { font-size: clamp(40px, 7vw, 58px); font-weight: 900; letter-spacing: -.02em; line-height: 1.02; color: #dc2626; }
.blog-calc__caption { font-size: 18px; font-weight: 700; color: #dc2626; }
.blog-calc__note { font-size: 13.5px; color: var(--blog-muted); margin: 0; max-width: 46ch; }

/* Two-step "hidden cost" calculator (effective hourly rate -> cost comparison). */
.vk-calc { background: #fff; border: 1px solid var(--blog-line); border-radius: 18px; padding: 26px 26px 28px; }
.vk-step { display: flex; align-items: center; gap: 14px; }
.vk-num { flex: none; width: 34px; height: 34px; border-radius: 999px; background: var(--blog-ink); color: #fff; display: grid; place-items: center; font-size: 18px; font-weight: 800; }
.vk-h { font-size: clamp(21px, 2.6vw, 25px); font-weight: 800; letter-spacing: -.015em; line-height: 1.2; margin: 0; }
.blog-article__body .vk-sub { color: var(--blog-ink); font-size: 16.5px; line-height: 1.55; margin: 15px 0 20px 48px; }
.vk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .vk-grid { grid-template-columns: 1fr; } }
.vk-field { display: flex; flex-direction: column; gap: 6px; }
.vk-field > span:first-child { font-size: 16px; font-weight: 600; }
.vk-calc[data-vk="cost"] .vk-field > span:first-child { font-size: 19px; }
.vk-field i { color: var(--blog-muted); font-weight: 400; font-style: normal; }
.vk-inputbox { display: flex; align-items: center; gap: 6px; border: 1px solid var(--blog-line); border-radius: 12px; background: var(--blog-bg-soft); padding: 0 13px; height: 46px; }
.vk-inputbox:focus-within { border-color: var(--blog-ink); background: #fff; }
.vk-inputbox.vk-readonly { background: #fff; }
.vk-pre { color: var(--blog-muted); font-size: 15px; }
.vk-inputbox input { border: 0; outline: 0; background: transparent; font: inherit; font-size: 16px; font-weight: 600; width: 100%; color: var(--blog-ink); }
.vk-rateout { margin-top: 18px; border-radius: 14px; background: var(--blog-ink); color: #fff; padding: 15px 20px; display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.vk-rate-lbl { font-size: 20px; font-weight: 700; opacity: .9; }
.vk-rate-val { font-size: 30px; font-weight: 800; letter-spacing: -.02em; }
.vk-rate-val small { font-size: 15px; font-weight: 600; opacity: .8; }
.vk-linkline { display: inline-flex; align-items: center; gap: 8px; font-size: 18px; color: var(--blog-ink); font-weight: 700; background: var(--blog-yellow); padding: 12px 22px; border-radius: 999px; margin: 4px 0 20px; }
.vk-range { width: 100%; accent-color: var(--blog-ink); cursor: pointer; }
.vk-propsline { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; margin-bottom: 20px; font-size: 21.5px; color: var(--blog-muted); }
.vk-propsline b { color: var(--blog-ink); font-weight: 800; }
.vk-chips { font-size: 16.5px; line-height: 1.7; color: var(--blog-ink); font-weight: 500; background: #fffdf0; border: 1px solid #efe4a3; border-left: 6px solid var(--blog-yellow); border-radius: 10px; padding: 16px 20px; margin: 18px 0 10px; }
.vk-chips b { font-weight: 800; color: var(--blog-ink); background: var(--blog-yellow); padding: 0 .22em 1px; border-radius: 3px; -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.vk-ch { position: relative; font-weight: 800; white-space: nowrap; border-bottom: 2px dotted var(--blog-ink); cursor: help; }
.vk-ch::after { content: attr(data-tip); position: absolute; left: 50%; bottom: calc(100% + 9px); transform: translateX(-50%); background: var(--blog-ink); color: #fff; font-weight: 600; font-size: 13px; line-height: 1.35; white-space: normal; width: max-content; max-width: min(280px, 78vw); text-align: center; padding: 7px 11px; border-radius: 8px; box-shadow: 0 6px 22px rgba(0, 0, 0, .18); opacity: 0; visibility: hidden; transition: opacity .12s ease; z-index: 6; }
.vk-ch::before { content: ""; position: absolute; left: 50%; bottom: calc(100% + 3px); transform: translateX(-50%); border: 6px solid transparent; border-top-color: var(--blog-ink); opacity: 0; visibility: hidden; transition: opacity .12s ease; z-index: 6; }
.vk-ch:hover::after, .vk-ch:focus-visible::after, .vk-ch:hover::before, .vk-ch:focus-visible::before { opacity: 1; visibility: visible; }
.vk-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 18px; }
@media (max-width: 560px) { .vk-compare { grid-template-columns: 1fr; } }
.vk-col { border-radius: 14px; padding: 18px 20px; border: 0; }
.vk-col.vk-manual { background: #fdeeec; }
.vk-col.vk-nano { background: rgba(255, 255, 32, .16); }
.vk-col h4 { margin: 0 0 12px; font-size: 17.5px; font-weight: 800; letter-spacing: -.01em; }
.vk-row:not(.vk-tot) > span:first-child { font-size: 17.5px; }
.vk-col.vk-manual h4 { color: var(--blog-ink); }
.vk-col.vk-nano h4 { color: var(--blog-ink); }
.vk-row { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; padding: 7px 0; font-size: 13.5px; border-bottom: 1px dashed rgba(0, 0, 0, .09); }
.vk-row:last-of-type { border-bottom: 0; }
.vk-row .vk-dim { color: var(--blog-muted); }
.vk-row > span:last-child { font-weight: 700; white-space: nowrap; }
.vk-row.vk-tot { margin-top: 6px; padding-top: 11px; border-top: 2px solid rgba(0, 0, 0, .16); border-bottom: 0; font-size: 15px; }
.vk-row.vk-tot > span:last-child { font-weight: 800; font-size: 18px; }
.vk-opp { color: var(--blog-ink) !important; }
.vk-verdict { margin-top: 18px; border-radius: 14px; background: #eafaf0; border: 0; padding: 33px 18px; text-align: center; }
.vk-big { font-size: clamp(19.5px, 3.5vw, 23.5px); font-weight: 800; color: #0a7d3c; letter-spacing: -.02em; line-height: 1.1; }
.vk-cap { font-size: 18px; color: #15623a; margin-top: 7px; line-height: 1.5; }
.vk-cap b { color: #0a7d3c; }
.vk-details { margin-top: 14px; font-size: 15px; color: var(--blog-muted); }
.vk-details summary { cursor: pointer; font-weight: 600; color: #3f3f46; font-size: 16px; }
.vk-details table { border-collapse: collapse; margin-top: 8px; width: 100%; }
.vk-details td { padding: 3px 10px 3px 0; vertical-align: top; }
.vk-details p { margin: 30px 0 0; }
.blog-figure > img, .blog-figure > video { width: 100%; height: auto; display: block; border-radius: 14px; background: var(--blog-bg-soft); border: 1px solid var(--blog-line); }
/* Live 3-device showcase: MacBook + iPhone frames playing showcase videos.
   (Device-frame rules mirror the inline ones on the homepage; self-contained
   here because the homepage keeps them in an inline <style>, not style.css.) */
.blog-devices { display: flex; align-items: center; justify-content: center; gap: 26px; flex-wrap: wrap; padding: 44px 24px; background: var(--blog-bg-soft); border: 1px solid var(--blog-line); border-radius: 14px; }
.blog-devices .pq-dev-vid { display: block; width: 100%; height: 100%; object-fit: cover; background: #0a0a12; }
.blog-devices .pq-mac { display: block; width: 360px; max-width: 100%; }
.blog-devices .pq-mac-screen { display: block; background: #0b0b0d; border: 2px solid #2a2a2e; border-radius: 12px 12px 5px 5px; padding: 7px 7px 0; box-shadow: 0 16px 32px rgba(17, 20, 24, .22); }
.blog-devices .pq-mac-bezel { display: block; border-radius: 4px; overflow: hidden; aspect-ratio: 16/9; }
.blog-devices .pq-mac-base { display: block; position: relative; height: 11px; margin: 0 -7%; background: linear-gradient(#d3d6da, #a7abb1); border-radius: 0 0 11px 11px; }
.blog-devices .pq-mac-base::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 15%; height: 5px; background: #9598a0; border-radius: 0 0 7px 7px; }
.blog-devices .pq-iphone { display: block; position: relative; width: 122px; background: #0b0b0d; border: 2px solid #2a2a2e; border-radius: 22px; padding: 4px; box-shadow: 0 14px 32px rgba(17, 20, 24, .26); }
.blog-devices .pq-iphone .pq-dev-vid { border-radius: 20px; aspect-ratio: 9/19.3; }
.blog-devices .pq-iphone-notch { display: block; position: absolute; top: 9px; left: 50%; transform: translateX(-50%); width: 34%; height: 9px; background: #0b0b0d; border-radius: 0 0 9px 9px; z-index: 2; }
@media (max-width: 560px) { .blog-devices { gap: 16px; padding: 28px 14px; } .blog-devices .pq-mac { width: 250px; } .blog-devices .pq-iphone { width: 92px; } }
.blog-figure figcaption { margin-top: 10px; font-size: 13.5px; line-height: 1.5; color: var(--blog-muted); }
/* Inline SVG chart card (embed blocks): quiet grey card, charts in grey tones
   with small black + yellow accents. */
.blog-figc { max-width: 75%; margin: 0 auto; }
.blog-figure:has(.blog-figc) { margin: 58px 0; }
.blog-figure:has(.blog-figc) figcaption { max-width: 75%; margin: 14px auto 0; }
@media (max-width: 600px) { .blog-figc, .blog-figure:has(.blog-figc) figcaption { max-width: 100%; } }
/* Real brand icons beside the channel names in the channels table */
.blog-table .chic { display: inline-block; width: 20px; height: 20px; vertical-align: -5px; margin-right: 9px; }
.blog-table .chic svg { width: 100%; height: 100%; display: block; }
.blog-figc .ft { font-weight: 800; font-size: 15px; letter-spacing: -.01em; margin: 0 0 14px; color: var(--blog-ink); }
.blog-figc svg { width: 100%; height: auto; display: block; }
/* Ready-made hook lines: caption-style blocks on a soft grey panel, medium
   weight and a step larger than body text so they stand out as usable copy. */
.blog-hooks { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; margin: 0; }
.blog-hooks span { width: fit-content; background: var(--blog-bg-soft); border-radius: 12px; padding: 11px 18px; font-size: 18px; font-weight: 500; line-height: 1.5; color: var(--blog-ink); }
.blog-figure:has(.blog-hooks) { margin: 16px 0 26px; }
@media (max-width: 600px) { .blog-hooks span { font-size: 17px; } }
/* Story-highlight rubrics: quiet grey chips */
.blog-chiprow { display: flex; flex-wrap: wrap; gap: 10px; margin: 4px 0 6px; }
.blog-chiprow span { font-size: 14px; font-weight: 700; background: var(--blog-bg-soft); border: 1px solid var(--blog-line); border-radius: 999px; padding: 8px 16px; color: var(--blog-ink); }
.blog-chiprow span b { background: var(--blog-yellow); border-radius: 3px; padding: 0 4px; font-weight: 800; }
.blog-table-wrap { margin: 32px 0; border-radius: 16px; overflow: hidden; box-shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 10px 28px rgba(0, 0, 0, .06); }
@media (max-width: 600px) { .blog-table-wrap { overflow-x: auto; } }
.blog-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.blog-table th, .blog-table td { padding: 15px 22px; text-align: left; vertical-align: top; border: 0; line-height: 1.45; }
.blog-table thead th { background: #ebecee; font-weight: 800; color: var(--blog-ink); font-size: 12.5px; text-transform: uppercase; letter-spacing: .05em; }
.blog-table tbody tr:nth-child(odd) { background: #fafafb; }
.blog-table tbody tr:nth-child(even) { background: #fff; }
.blog-table tbody th[scope="row"], .blog-table tbody td:first-child { font-weight: 700; color: var(--blog-ink); }
/* Highlight the last column (the "answer"/winner column, e.g. Nanopixo). Opt out
   with .blog-table--plain for neutral comparisons where no column is the answer. */
.blog-table:not(.blog-table--plain) td:last-child, .blog-table:not(.blog-table--plain) thead th:last-child { background: rgba(255, 255, 32, .22); }
