/* ==========================================================================
   WOMBLOG — front-end stylesheet.

   Every colour, font and measurement comes from a custom property that the
   designer writes into the page. This file never changes between sites, so it
   stays in the browser cache for a year.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
[hidden] { display: none !important; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

::selection { background: var(--accent); color: var(--accent-ink); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

code, pre, .code-field { font-family: var(--font-mono); }
code {
  font-size: .88em;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 1px 6px;
}

hr { border: 0; border-top: 1px solid var(--line); margin: var(--gap-lg) 0; }

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(18px, 5vw, 40px);
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 500;
  background: var(--ink); color: var(--paper);
  padding: 12px 20px; border-radius: 0 0 var(--radius-sm) 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

.dot { opacity: .45; margin: 0 2px; }
.muted { color: var(--muted); }
.tnum { font-variant-numeric: tabular-nums; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid transparent; border-radius: var(--radius-pill);
  padding: 12px 22px;
  font-size: 15px; font-weight: 650; line-height: 1;
  cursor: pointer; white-space: nowrap; text-align: center;
  transition: background .16s ease, border-color .16s ease, transform .08s ease, box-shadow .16s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-press); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { background: var(--surface-2); border-color: var(--ink); }
.btn-soft { background: var(--surface-2); color: var(--ink); }
.btn-soft:hover { background: var(--surface-3); }
.btn-invert { background: var(--paper); color: var(--ink); }
.btn-invert:hover { background: var(--surface-2); }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-sm { padding: 8px 15px; font-size: 13.5px; }
.btn-block { display: flex; width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

.btn-link {
  background: none; border: 0; padding: 0; cursor: pointer;
  color: var(--accent); font-weight: 600; font-size: inherit;
  text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px;
}
.btn-link:hover { color: var(--accent-press); }
.btn-link.is-danger { color: var(--danger); }

.icon-btn {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px; border: 0; border-radius: var(--radius-sm);
  background: transparent; color: var(--ink); cursor: pointer;
}
.icon-btn:hover { background: var(--surface-2); }

.chip {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 9px; border-radius: var(--radius-pill);
  font-size: 11.5px; font-weight: 650; letter-spacing: .02em;
  background: var(--surface-3); color: var(--muted); white-space: nowrap;
}
.chip-accent  { background: var(--accent-soft); color: var(--accent); }
.chip-success { background: var(--success-soft); color: var(--success); }
.chip-warning { background: var(--warn-soft); color: var(--warn); }
.chip-danger  { background: var(--danger-soft); color: var(--danger); }
.chip-info    { background: var(--accent-soft); color: var(--accent); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
@supports not (backdrop-filter: blur(1px)) { .site-header { background: var(--paper); } }

.header-inner {
  display: flex; align-items: center; gap: 20px;
  min-height: 68px;
}
.brand { display: flex; align-items: center; gap: 10px; flex: none; }
.brand-name {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 20px; letter-spacing: -.025em;
}
.brand-logo { max-height: 40px; width: auto; }

.site-nav { flex: 1; display: flex; justify-content: flex-end; }
.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 13px; border-radius: var(--radius-sm);
  font-size: 14.5px; font-weight: 550; color: var(--ink-2);
  transition: background .15s ease, color .15s ease;
}
.nav-menu > li > a:hover { background: var(--surface-2); color: var(--ink); }
.nav-menu > li.is-current > a,
.nav-menu > li.is-ancestor > a { color: var(--accent); font-weight: 650; }
.nav-caret { opacity: .5; }

.nav-submenu {
  position: absolute; top: calc(100% + 6px); left: 0; z-index: 20;
  min-width: 190px; padding: 6px; margin: 0;
  list-style: none; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.nav-menu > li:hover > .nav-submenu,
.nav-menu > li:focus-within > .nav-submenu { opacity: 1; visibility: visible; transform: none; }
.nav-submenu a { display: block; padding: 8px 12px; border-radius: 6px; font-size: 14px; }
.nav-submenu a:hover { background: var(--surface-2); }

.header-tools { display: flex; align-items: center; gap: 6px; flex: none; }
.header-account { text-decoration: none; }
.cart-btn { position: relative; }
.cart-count {
  position: absolute; top: 4px; right: 3px;
  min-width: 17px; height: 17px; padding: 0 4px;
  display: grid; place-items: center;
  background: var(--accent); color: var(--accent-ink);
  border-radius: 999px; font-size: 10.5px; font-weight: 700;
}
.nav-toggle { display: none; }

.header-search { border-top: 1px solid var(--line); background: var(--surface); }
.search-form {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 0; color: var(--muted);
}
.search-form input {
  flex: 1; border: 0; background: none; font-size: 16px; padding: 6px 0; color: var(--ink);
}
.search-form input:focus { outline: none; }
.search-form.standalone {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 8px 8px 8px 16px; margin-top: 18px;
}

.mobile-nav { display: none; border-top: 1px solid var(--line); background: var(--surface); padding: 12px 0 18px; }
.mobile-nav .nav-menu { flex-direction: column; align-items: stretch; gap: 2px; }
.mobile-nav .nav-menu > li > a { padding: 12px 14px; font-size: 16px; }
.mobile-nav .nav-submenu {
  position: static; opacity: 1; visibility: visible; transform: none;
  box-shadow: none; border: 0; padding: 0 0 0 16px; background: none;
}

@media (max-width: 860px) {
  .site-nav { display: none; }
  .nav-toggle { display: inline-grid; }
  .mobile-nav[data-open] { display: block; }
  .header-account span { display: none; }
}

/* --------------------------------------------------------------------------
   Hero and page headers
   -------------------------------------------------------------------------- */
.home-hero { position: relative; padding: var(--gap-xl) 0; text-align: center; overflow: hidden; }
.home-hero.has-image { color: #fff; min-height: 52vh; display: grid; align-items: center; }
.home-hero-bg { position: absolute; inset: 0; z-index: 0; }
.home-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.home-hero.has-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.62));
}
.home-hero-inner { position: relative; z-index: 1; max-width: 46rem; margin-inline: auto; }
.home-hero h1 { font-size: var(--fs-h1); margin-bottom: 16px; }
.home-hero-text { font-size: var(--fs-lead); color: var(--muted); margin: 0 auto 28px; max-width: 38rem; text-wrap: pretty; }
.home-hero.has-image .home-hero-text { color: rgba(255,255,255,.9); }

.page-header { padding: var(--gap-lg) 0 var(--gap); }
.page-header h1 { font-size: var(--fs-h1); margin-bottom: 10px; }
.page-header-sub { color: var(--muted); font-size: var(--fs-lead); margin: 0; max-width: 44rem; text-wrap: pretty; }
.page-header-count { color: var(--faint); font-size: var(--fs-small); margin: 12px 0 0; }
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent); margin: 0 0 8px;
}

.author-header { display: flex; align-items: center; gap: 20px; }

/* --------------------------------------------------------------------------
   Cards and grids
   -------------------------------------------------------------------------- */
.home-section { padding: var(--gap-lg) 0; }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; margin-bottom: var(--gap);
}
.section-head h2 { font-size: var(--fs-h2); }
.section-link { color: var(--accent); font-weight: 600; font-size: 14.5px; display: inline-flex; align-items: center; gap: 4px; }
.section-link:hover { text-decoration: underline; text-underline-offset: 3px; }

.post-grid {
  display: grid; gap: var(--gap);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
}
.post-grid.is-featured { grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr)); }

.post-card { display: flex; flex-direction: column; }
.post-card-media {
  display: block; overflow: hidden; border-radius: var(--radius);
  background: var(--surface-2); aspect-ratio: 16 / 10; margin-bottom: 16px;
}
.post-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.6,.2,1); }
.post-card:hover .post-card-media img { transform: scale(1.035); }
.post-card-term {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px;
}
.post-card-title { font-size: var(--fs-h3); margin-bottom: 8px; }
.post-card-title a { background-image: linear-gradient(var(--accent), var(--accent)); background-size: 0 2px;
  background-repeat: no-repeat; background-position: 0 100%; transition: background-size .3s ease; }
.post-card:hover .post-card-title a { background-size: 100% 2px; }
.post-card-excerpt { color: var(--muted); margin: 0 0 12px; font-size: 15px; text-wrap: pretty; }
.post-card-meta { color: var(--faint); font-size: 13.5px; margin: auto 0 0; display: flex; flex-wrap: wrap; gap: 4px; }
.post-card.layout-list { flex-direction: row; gap: 20px; align-items: flex-start; }
.post-card.layout-list .post-card-media { width: 180px; flex: none; margin-bottom: 0; }
.post-card.layout-minimal { padding-bottom: 18px; border-bottom: 1px solid var(--line); }

.topic-row { display: flex; flex-wrap: wrap; gap: 8px; padding: var(--gap) 0; }
.topic-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 15px; border-radius: var(--radius-pill);
  background: var(--surface-2); border: 1px solid transparent;
  font-size: 14px; font-weight: 550;
  transition: background .15s ease, border-color .15s ease;
}
.topic-pill:hover { background: var(--surface-3); }
.topic-pill.is-current { background: var(--accent); color: var(--accent-ink); }
.topic-pill span { font-size: 11.5px; color: var(--faint); font-variant-numeric: tabular-nums; }
.topic-pill.is-current span { color: inherit; opacity: .75; }

.blog-topics { padding: var(--gap-lg) 0; border-top: 1px solid var(--line); }
.blog-topics h2 { font-size: var(--fs-h3); margin-bottom: 4px; }

.empty-state {
  text-align: center; padding: var(--gap-xl) 20px;
  border: 1px dashed var(--line-2); border-radius: var(--radius-lg);
  background: var(--surface);
}
.empty-mark {
  display: grid; place-items: center; width: 56px; height: 56px;
  margin: 0 auto 18px; border-radius: 50%;
  background: var(--surface-2); color: var(--muted);
}
.empty-state h2 { font-size: var(--fs-h3); margin-bottom: 8px; }
.empty-state p { color: var(--muted); max-width: 30rem; margin: 0 auto 22px; }

/* --------------------------------------------------------------------------
   Breadcrumbs
   -------------------------------------------------------------------------- */
.breadcrumbs { padding-top: var(--gap); font-size: 13.5px; color: var(--muted); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0; padding: 0; }
.breadcrumbs li { display: flex; align-items: center; gap: 6px; }
.breadcrumbs a:hover { color: var(--accent); }
.crumb-sep { opacity: .4; }

/* --------------------------------------------------------------------------
   The article
   -------------------------------------------------------------------------- */
.single { padding-bottom: var(--gap-xl); }
.post-header { padding: var(--gap-lg) 0 var(--gap); max-width: 46rem; }
.post-terms { display: flex; gap: 10px; margin: 0 0 14px; font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; }
.post-terms a { color: var(--accent); }
.post-title { font-size: var(--fs-h1); margin-bottom: 16px; }
.post-standfirst { font-size: var(--fs-lead); color: var(--muted); margin: 0 0 20px; text-wrap: pretty; }
.post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: var(--faint); font-size: 14px; margin: 0; }
.post-author { display: inline-flex; align-items: center; gap: 8px; }

.avatar { display: inline-grid; place-items: center; border-radius: 50%; overflow: hidden; flex: none; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar-initials { font-weight: 700; letter-spacing: -.02em; }

.post-hero { margin: var(--gap) 0 var(--gap-lg); }
.post-hero img {
  width: 100%; max-height: 62vh; object-fit: cover;
  border-radius: var(--radius-lg);
}
.post-hero figcaption { color: var(--faint); font-size: 13.5px; margin-top: 10px; text-align: center; }

/* The reading column — everything inside sits at a comfortable measure. */
.post-body { width: 100%; }
.post-body > * {
  width: 100%; max-width: 44rem;
  margin-inline: auto;
  padding-inline: clamp(18px, 5vw, 40px);
}
.post-body > * + * { margin-top: 1.5em; }
.post-body h2 { font-size: var(--fs-h2); margin-top: 2em; }
.post-body h3 { font-size: var(--fs-h3); margin-top: 1.8em; }
.post-body p { margin: 0; text-wrap: pretty; }
.post-body a {
  color: var(--accent); text-decoration: underline;
  text-underline-offset: 3px; text-decoration-thickness: 1.5px;
  text-decoration-color: var(--accent-line);
}
.post-body a:hover { text-decoration-color: var(--accent); }
.post-body ul, .post-body ol { padding-left: 1.3em; }
.post-body li + li { margin-top: .4em; }
.post-body.is-wide > * { max-width: var(--maxw); }

/* --------------------------------------------------------------------------
   Blocks
   -------------------------------------------------------------------------- */
.blk-heading.is-center { text-align: center; }
.blk-heading.is-right { text-align: right; }

.blk-quote {
  border-left: 3px solid var(--accent); padding-left: 22px; margin-block: 2em;
  font-family: var(--font-heading);
}
.blk-quote blockquote { margin: 0; font-size: 1.22em; line-height: 1.45; }
.blk-quote figcaption { margin-top: 10px; font-family: var(--font-body); font-size: 14px; color: var(--muted); }

.blk-list { list-style: none; padding-left: 0; }
.blk-list.is-bullet { list-style: disc; padding-left: 1.3em; }
.blk-list.is-number { list-style: decimal; padding-left: 1.3em; }
.blk-list.is-check li { display: flex; gap: 10px; align-items: flex-start; }
.blk-list-tick { color: var(--accent); flex: none; margin-top: .32em; }

.blk-code {
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 18px 20px;
  overflow-x: auto; font-size: 14px; line-height: 1.6;
}
.blk-code code { background: none; border: 0; padding: 0; }

.blk-image figcaption, .blk-video figcaption, .blk-embed figcaption {
  font-size: 13.5px; color: var(--faint); margin-top: 10px; text-align: center;
}
.blk-img, .blk-image img { border-radius: var(--radius); width: 100%; }
.post-body .blk-image.align-wide { max-width: 62rem; }
.post-body .blk-image.align-full { max-width: 100%; padding-inline: 0; }
.post-body .blk-image.align-full img { border-radius: 0; }
.blk-image.align-left, .blk-image.align-right { max-width: 22rem; }

.blk-gallery { display: grid; gap: 12px; }
.blk-gallery.cols-2 { grid-template-columns: repeat(2, 1fr); }
.blk-gallery.cols-3 { grid-template-columns: repeat(3, 1fr); }
.blk-gallery.cols-4 { grid-template-columns: repeat(4, 1fr); }
.blk-gallery.cols-5 { grid-template-columns: repeat(5, 1fr); }
.blk-gallery.cols-6 { grid-template-columns: repeat(6, 1fr); }
.blk-gallery-item { border-radius: var(--radius-sm); overflow: hidden; background: var(--surface-2); }
.blk-gallery.is-cropped .blk-gallery-item { aspect-ratio: 1; }
.blk-gallery.is-cropped img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 640px) { .blk-gallery { grid-template-columns: repeat(2, 1fr) !important; } }

.blk-embed-frame { position: relative; padding-top: 56.25%; border-radius: var(--radius); overflow: hidden; background: #000; }
.blk-embed-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.blk-video video { width: 100%; border-radius: var(--radius); }

.blk-hero {
  position: relative; padding: var(--gap-xl) 0; border-radius: var(--radius-lg); overflow: hidden;
  text-align: center;
}
.blk-hero.is-left { text-align: left; }
.blk-hero.has-image { color: #fff; }
.blk-hero.h-small { padding-block: var(--gap-lg); }
.blk-hero.h-large { padding-block: calc(var(--gap-xl) * 1.5); }
.blk-hero-bg { position: absolute; inset: 0; }
.blk-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.blk-hero.has-image::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.blk-hero-inner { position: relative; z-index: 1; max-width: 40rem; margin-inline: auto; padding-inline: 24px; }
.blk-hero.is-left .blk-hero-inner { margin-inline: 0; }
.blk-hero-title { font-size: var(--fs-h1); margin-bottom: 14px; }
.blk-hero-text { font-size: var(--fs-lead); margin: 0 0 24px; opacity: .9; }

.blk-columns { display: grid; gap: var(--gap); }
.blk-columns.cols-2 { grid-template-columns: repeat(2, 1fr); }
.blk-columns.cols-3 { grid-template-columns: repeat(3, 1fr); }
.blk-columns.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 760px) { .blk-columns { grid-template-columns: 1fr !important; } }

.blk-features { margin-block: var(--gap-lg); }
.blk-features-title, .blk-section-title { font-size: var(--fs-h2); margin-bottom: var(--gap); }
.blk-features-grid { display: grid; gap: var(--gap); }
.blk-features-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.blk-features-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.blk-features-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 760px) { .blk-features-grid { grid-template-columns: 1fr !important; } }
.blk-feature h3 { font-size: 18px; margin-bottom: 6px; }
.blk-feature p { color: var(--muted); margin: 0; font-size: 15px; }
.blk-feature-icon {
  display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: var(--radius-sm); background: var(--accent-soft); color: var(--accent);
  margin-bottom: 14px;
}

.blk-cta {
  background: var(--accent); color: var(--accent-ink);
  border-radius: var(--radius-lg); padding: var(--gap-lg);
  text-align: center; margin-block: var(--gap-lg);
}
.blk-cta.is-ink { background: var(--ink); color: var(--paper); }
.blk-cta.is-soft { background: var(--surface-2); color: var(--ink); }
.blk-cta h2 { font-size: var(--fs-h2); margin-bottom: 10px; }
.blk-cta p { margin: 0 auto 22px; max-width: 34rem; opacity: .9; }

.blk-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.blk-buttons.is-center { justify-content: center; }
.blk-buttons.is-right { justify-content: flex-end; }

.blk-accordion { border-top: 1px solid var(--line); }
.blk-acc-item { border-bottom: 1px solid var(--line); }
.blk-acc-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0; cursor: pointer; font-weight: 650; list-style: none;
}
.blk-acc-item summary::-webkit-details-marker { display: none; }
.blk-acc-mark { color: var(--muted); transition: transform .2s ease; flex: none; }
.blk-acc-item[open] .blk-acc-mark { transform: rotate(180deg); }
.blk-acc-body { padding-bottom: 20px; color: var(--ink-2); }

.blk-divider { border: 0; margin-block: var(--gap-lg); }
.blk-divider.is-line { border-top: 1px solid var(--line); }
.blk-divider.is-dots { text-align: center; height: 6px; background:
  radial-gradient(circle, var(--line-2) 2px, transparent 2px) repeat-x center / 22px 6px; }
.blk-divider.size-small { margin-block: var(--gap); }
.blk-divider.size-large { margin-block: var(--gap-xl); }

/* A reusable block is a transparent wrapper — it must look like whatever it
   contains, not like a box that has been dropped onto the page. */
.blk-reusable { display: contents; }

.blk-postlist, .blk-products { margin-block: var(--gap-lg); }
.blk-postlist-items { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); }
.blk-postlist.is-list .blk-postlist-items, .blk-postlist.is-minimal .blk-postlist-items { grid-template-columns: 1fr; }

.blk-newsletter {
  background: var(--surface-2); border-radius: var(--radius-lg);
  padding: var(--gap-lg); text-align: center; margin-block: var(--gap-lg);
}
.blk-newsletter h2 { font-size: var(--fs-h2); margin-bottom: 8px; }
.blk-newsletter p { color: var(--muted); margin: 0 auto 22px; max-width: 30rem; }
.blk-newsletter-form { display: flex; gap: 10px; max-width: 26rem; margin-inline: auto; }
.blk-newsletter-form input {
  flex: 1; padding: 12px 16px; border: 1px solid var(--line-2);
  border-radius: var(--radius-pill); background: var(--surface);
}
.blk-newsletter-done { color: var(--success); font-weight: 600; display: flex; align-items: center; gap: 6px; justify-content: center; }
.blk-embed-error { color: var(--warn); font-size: 14px; }

.blk-form { margin-block: var(--gap-lg); }
.blk-form-intro { color: var(--muted); margin-bottom: var(--gap); }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.form-stack { display: grid; gap: 16px; }
.field { display: block; }
.field > span:first-child,
.field-label { display: block; font-size: 13.5px; font-weight: 650; margin-bottom: 6px; }
.field > span small { font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea,
.f input, .f select {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  background: var(--surface); color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.field textarea { resize: vertical; min-height: 90px; line-height: 1.6; }
.field-note { display: block; font-size: 13px; color: var(--muted); margin-top: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }

.check-inline { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; cursor: pointer; }
.check-inline input { width: 17px; height: 17px; accent-color: var(--accent); }

.password-row { display: flex; gap: 8px; align-items: stretch; }
.password-row input { flex: 1; }

.strength { display: block; margin-top: 8px; font-size: 12.5px; color: var(--muted); }
.strength-bar { display: block; height: 4px; border-radius: 2px; background: var(--surface-3); overflow: hidden; margin-bottom: 5px; }
.strength-bar > span { display: block; height: 100%; width: 0; border-radius: 2px; background: var(--danger); transition: width .25s ease, background .25s ease; }
.strength[data-score="2"] .strength-bar > span { background: var(--warn); }
.strength[data-score="3"] .strength-bar > span { background: var(--accent); }
.strength[data-score="4"] .strength-bar > span { background: var(--success); }

.notice {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: var(--surface-2);
  margin-bottom: 18px; font-size: 14.5px;
}
.notice a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.notice-success { background: var(--success-soft); border-color: transparent; color: var(--success); }
.notice-danger  { background: var(--danger-soft); border-color: transparent; color: var(--danger); }
.notice-warning { background: var(--warn-soft); border-color: transparent; color: var(--warn); }
.notice-info    { background: var(--accent-soft); border-color: transparent; color: var(--accent); }

/* --------------------------------------------------------------------------
   Post extras
   -------------------------------------------------------------------------- */
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--gap-lg); max-width: 44rem; }
.tag-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px; border-radius: var(--radius-pill);
  background: var(--surface-2); font-size: 13px; color: var(--muted);
}
.tag-pill:hover { background: var(--surface-3); color: var(--ink); }

.post-share {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  margin-top: var(--gap-lg); padding-top: 20px; border-top: 1px solid var(--line);
  max-width: 44rem; font-size: 14px;
}
.post-share > span:first-child { color: var(--muted); font-weight: 650; }
.post-share a, .share-copy {
  color: var(--accent); background: none; border: 0; padding: 0; cursor: pointer; font-weight: 550;
}
.post-share a:hover, .share-copy:hover { text-decoration: underline; text-underline-offset: 3px; }

.author-card {
  display: flex; gap: 20px; align-items: flex-start;
  margin-top: var(--gap-lg); padding: var(--gap);
  background: var(--surface-2); border-radius: var(--radius-lg);
  max-width: 44rem;
}
.author-card h2 { font-size: 17px; margin-bottom: 6px; }
.author-card p { color: var(--muted); margin: 0 0 8px; font-size: 15px; }
.author-card a { color: var(--accent); font-size: 14px; display: inline-flex; align-items: center; gap: 5px; }

.post-nav {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: var(--gap-lg); padding-top: var(--gap); border-top: 1px solid var(--line);
}
.post-nav-item {
  display: flex; flex-direction: column; gap: 6px;
  padding: 18px; border-radius: var(--radius); background: var(--surface-2);
  transition: background .15s ease;
}
.post-nav-item:hover { background: var(--surface-3); }
.post-nav-item span { display: flex; align-items: center; gap: 5px; font-size: 12.5px; color: var(--muted); }
.post-nav-item.is-next { text-align: right; }
.post-nav-item.is-next span { justify-content: flex-end; }
.post-nav-item strong { font-family: var(--font-heading); font-size: 16px; line-height: 1.3; }
@media (max-width: 620px) { .post-nav { grid-template-columns: 1fr; } }

.post-locked { padding-block: var(--gap-lg); }
.lock-card {
  max-width: 30rem; margin-inline: auto; text-align: center;
  padding: var(--gap-lg); border: 1px solid var(--line);
  border-radius: var(--radius-lg); background: var(--surface);
}
.lock-mark { display: grid; place-items: center; width: 56px; height: 56px; margin: 0 auto 16px;
  border-radius: 50%; background: var(--surface-2); color: var(--muted); }
.lock-card h2 { font-size: var(--fs-h3); margin-bottom: 8px; }
.lock-card p { color: var(--muted); margin: 0 0 20px; }
.lock-form { display: flex; gap: 10px; }
.lock-form input { flex: 1; padding: 11px 14px; border: 1px solid var(--line-2); border-radius: var(--radius-sm); }

/* --------------------------------------------------------------------------
   Comments
   -------------------------------------------------------------------------- */
.comments { max-width: 44rem; padding-top: var(--gap-lg); margin-top: var(--gap-lg); border-top: 1px solid var(--line); }
.comments-title { font-size: var(--fs-h3); margin-bottom: var(--gap); }
.comment-list { list-style: none; padding: 0; margin: 0 0 var(--gap-lg); }
.comment { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.comment.depth-1 { padding-left: 34px; }
.comment.depth-2 { padding-left: 68px; }
.comment.depth-3 { padding-left: 96px; }
.comment-body { flex: 1; min-width: 0; }
.comment-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0 0 6px; font-size: 14px; }
.comment-meta time { color: var(--faint); font-size: 13px; }
.comment-text { font-size: 15px; }
.comment-text p { margin: 0 0 .7em; }
.comment-text p:last-child { margin-bottom: 0; }
.comment-reply { font-size: 13.5px; margin-top: 8px; }
.comment-form-wrap { background: var(--surface-2); border-radius: var(--radius-lg); padding: var(--gap); }
.comment-form-title { font-size: 18px; margin-bottom: 16px; }
.comment-replying { font-size: 14px; color: var(--muted); margin: 0 0 14px; display: flex; gap: 8px; align-items: center; }
.comment-form-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.comments-closed { color: var(--muted); font-size: 14.5px; }
.comments-closed a { color: var(--accent); }
@media (max-width: 620px) {
  .comment.depth-1 { padding-left: 18px; }
  .comment.depth-2, .comment.depth-3 { padding-left: 34px; }
}

/* --------------------------------------------------------------------------
   Search results
   -------------------------------------------------------------------------- */
.search-results { list-style: none; padding: 0; margin: 0; }
.search-result { padding: 22px 0; border-bottom: 1px solid var(--line); }
.search-kind { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin: 0 0 6px; }
.search-result h2 { font-size: var(--fs-h3); margin-bottom: 8px; }
.search-result h2 a:hover { color: var(--accent); }
.search-snippet { color: var(--muted); margin: 0 0 8px; }
.search-snippet mark { background: var(--accent-soft); color: var(--accent); padding: 0 2px; border-radius: 2px; }
.search-meta { color: var(--faint); font-size: 13.5px; margin: 0; }
.search-suggest h2 { font-size: var(--fs-h3); margin-bottom: 4px; }

/* --------------------------------------------------------------------------
   Pagination
   -------------------------------------------------------------------------- */
.pager { display: flex; align-items: center; justify-content: center; gap: 8px; padding: var(--gap-lg) 0; flex-wrap: wrap; }
.pager-step {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; border-radius: var(--radius-pill);
  background: var(--surface-2); font-size: 14px; font-weight: 600;
}
.pager-step:hover { background: var(--surface-3); }
.pager-step.is-off { opacity: .35; pointer-events: none; }
.pager-nums { display: flex; align-items: center; gap: 4px; }
.pager-num {
  display: grid; place-items: center; min-width: 36px; height: 36px;
  padding: 0 8px; border-radius: var(--radius-sm); font-size: 14px; font-variant-numeric: tabular-nums;
}
.pager-num:hover { background: var(--surface-2); }
.pager-num.is-current { background: var(--accent); color: var(--accent-ink); font-weight: 700; }
.pager-gap { color: var(--faint); padding: 0 2px; }

/* --------------------------------------------------------------------------
   Shop
   -------------------------------------------------------------------------- */
.product-grid { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr)); }
.product-card-link { display: block; }
.product-card-media {
  display: grid; place-items: center; aspect-ratio: 1;
  background: var(--surface-2); border-radius: var(--radius); overflow: hidden; margin-bottom: 12px;
}
.product-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.6,.2,1); }
.product-card:hover .product-card-media img { transform: scale(1.04); }
.product-card-placeholder { color: var(--faint); }
.product-card-body { display: flex; flex-direction: column; gap: 4px; }
.product-card-title { font-weight: 600; font-size: 15px; }
.product-card-price { font-size: 15px; }
.price-now { font-weight: 700; }
.price-was { color: var(--faint); text-decoration: line-through; font-size: .9em; }
.price-save { color: var(--success); font-size: .85em; font-weight: 650; }

.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.shop-sort select { padding: 9px 14px; border: 1px solid var(--line-2); border-radius: var(--radius-pill); background: var(--surface); font-size: 14px; }

.product-page { padding-bottom: var(--gap-xl); }
.product-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--gap-lg); padding-top: var(--gap); }
@media (max-width: 860px) { .product-layout { grid-template-columns: 1fr; } }
.product-main-image { margin: 0; border-radius: var(--radius-lg); overflow: hidden; background: var(--surface-2); aspect-ratio: 1; }
.product-main-image img { width: 100%; height: 100%; object-fit: cover; }
.product-main-image.is-empty { display: grid; place-items: center; color: var(--faint); }
.product-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.product-thumb {
  width: 74px; height: 74px; padding: 0; border: 2px solid transparent;
  border-radius: var(--radius-sm); overflow: hidden; background: var(--surface-2); cursor: pointer;
}
.product-thumb.is-current { border-color: var(--accent); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-title { font-size: var(--fs-h1); margin-bottom: 12px; }
.product-price { font-size: 24px; margin: 0 0 16px; }
.product-standfirst { color: var(--muted); font-size: var(--fs-lead); margin: 0 0 24px; }
.product-buy { display: grid; gap: 16px; margin-bottom: 16px; }
.buy-row { display: flex; gap: 12px; }
.qty-field input { width: 76px; padding: 12px; text-align: center; border: 1px solid var(--line-2); border-radius: var(--radius-sm); }
.stock-note { display: flex; align-items: center; gap: 6px; color: var(--warn); font-size: 14px; margin: 0; }
.stock-note.is-out { color: var(--muted); }
.product-sku { color: var(--faint); font-size: 13px; margin-top: 20px; }
.product-body { padding-top: var(--gap-lg); }
.product-body > * { padding-inline: 0; }

.cart-page, .checkout-page, .order-page, .account { padding-bottom: var(--gap-xl); }
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: var(--gap-lg); align-items: start; }
@media (max-width: 860px) { .cart-layout { grid-template-columns: 1fr; } }
.cart-item {
  display: grid; grid-template-columns: 90px 1fr 90px 90px; gap: 16px; align-items: center;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.cart-item-media { border-radius: var(--radius-sm); overflow: hidden; background: var(--surface-2); aspect-ratio: 1; }
.cart-item-media img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-blank { display: grid; place-items: center; height: 100%; color: var(--faint); }
.cart-item-body h2 { font-size: 16px; margin-bottom: 4px; }
.cart-item-variant, .cart-item-price { color: var(--muted); font-size: 13.5px; margin: 0; }
.cart-item-qty input { width: 100%; padding: 9px; text-align: center; border: 1px solid var(--line-2); border-radius: var(--radius-sm); }
.cart-item-total { text-align: right; font-weight: 650; font-variant-numeric: tabular-nums; }
.cart-actions { display: flex; align-items: center; gap: 20px; padding-top: 20px; }
@media (max-width: 620px) {
  .cart-item { grid-template-columns: 70px 1fr; }
  .cart-item-qty, .cart-item-total { grid-column: 2; text-align: left; }
  .cart-item-qty input { width: 80px; }
}

.cart-summary, .checkout-summary {
  background: var(--surface-2); border-radius: var(--radius-lg); padding: var(--gap);
  position: sticky; top: 88px;
}
.cart-summary h2, .checkout-summary h2 { font-size: 18px; margin-bottom: 16px; }
.summary-list { margin: 0 0 18px; }
.summary-list > div { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; font-size: 14.5px; }
.summary-list dt { color: var(--muted); }
.summary-list dd { margin: 0; font-variant-numeric: tabular-nums; }
.summary-list .is-discount dd { color: var(--success); }
.summary-total { border-top: 1px solid var(--line-2); margin-top: 6px; padding-top: 12px !important; font-size: 17px !important; font-weight: 700; }
.summary-total dt { color: var(--ink) !important; }
.coupon-form { display: flex; gap: 8px; margin-bottom: 16px; }
.coupon-form input { flex: 1; padding: 10px 13px; border: 1px solid var(--line-2); border-radius: var(--radius-sm); background: var(--surface); }

.checkout-layout { display: grid; grid-template-columns: 1fr 360px; gap: var(--gap-lg); align-items: start; }
@media (max-width: 900px) { .checkout-layout { grid-template-columns: 1fr; } }
.checkout-block { margin-bottom: var(--gap-lg); }
.checkout-block h2 { font-size: 18px; margin-bottom: 16px; }
.checkout-fields .field { margin-bottom: 16px; }
.delivery-line { display: flex; justify-content: space-between; gap: 16px; padding: 16px; background: var(--surface-2); border-radius: var(--radius-sm); }
.delivery-line span { color: var(--muted); font-size: 13.5px; display: block; }
.payment-note { display: flex; gap: 14px; padding: 16px; background: var(--accent-soft); color: var(--accent); border-radius: var(--radius-sm); }
.payment-note p { margin: 6px 0 0; color: var(--ink-2); font-size: 14.5px; }
.checkout-items { list-style: none; padding: 0; margin: 0 0 18px; }
.checkout-items li { display: flex; gap: 10px; padding: 8px 0; font-size: 14px; border-bottom: 1px solid var(--line); }
.ci-qty { color: var(--muted); font-variant-numeric: tabular-nums; }
.ci-name { flex: 1; }
.ci-name small { display: block; color: var(--muted); font-size: 12.5px; }
.ci-total { font-variant-numeric: tabular-nums; font-weight: 600; }
.checkout-note { display: flex; align-items: center; gap: 6px; justify-content: center; color: var(--muted); font-size: 12.5px; margin: 14px 0 0; }

.order-thanks { text-align: center; padding: var(--gap-lg) 0; }
.order-tick { display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 18px;
  border-radius: 50%; background: var(--success); color: #fff; }
.order-thanks h1 { font-size: var(--fs-h2); margin-bottom: 10px; }
.order-thanks p { color: var(--muted); }
.order-steps { display: flex; list-style: none; padding: 0; margin: var(--gap) 0; gap: 4px; }
.order-step { flex: 1; display: flex; align-items: center; gap: 8px; padding-top: 12px; border-top: 3px solid var(--line);
  font-size: 13px; color: var(--muted); }
.order-step.is-done { border-top-color: var(--accent); color: var(--ink); }
.order-step.is-current { font-weight: 700; }
.step-dot { display: grid; place-items: center; width: 18px; height: 18px; border-radius: 50%;
  background: var(--line); color: #fff; flex: none; }
.order-step.is-done .step-dot { background: var(--accent); }
.order-layout { display: grid; grid-template-columns: 1fr 320px; gap: var(--gap-lg); align-items: start; margin-top: var(--gap); }
@media (max-width: 860px) { .order-layout { grid-template-columns: 1fr; } .order-steps { flex-wrap: wrap; } }
.order-block { margin-bottom: var(--gap); }
.order-block h2 { font-size: 15px; margin-bottom: 8px; }
.order-block address { font-style: normal; color: var(--muted); font-size: 14.5px; line-height: 1.7; }
.order-lookup { max-width: 26rem; margin: var(--gap-xl) auto; text-align: center; }
.order-lookup p { color: var(--muted); margin-bottom: var(--gap); }
.order-lookup .field { text-align: left; }

/* --------------------------------------------------------------------------
   Account
   -------------------------------------------------------------------------- */
.account-tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line); margin-bottom: var(--gap); flex-wrap: wrap; }
.account-tab { padding: 11px 16px; font-size: 14.5px; font-weight: 600; color: var(--muted); border-bottom: 2px solid transparent; margin-bottom: -1px; }
.account-tab:hover { color: var(--ink); }
.account-tab.is-current { color: var(--accent); border-bottom-color: var(--accent); }
.account-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--gap); }
.account-card { background: var(--surface-2); border-radius: var(--radius-lg); padding: var(--gap); }
.account-card h2 { font-size: 17px; margin: 12px 0 6px; }
.account-card p { color: var(--muted); font-size: 14px; margin: 0 0 16px; }
.account-form { max-width: 34rem; }
.link-list { list-style: none; padding: 0; margin: 0 0 16px; }
.link-list li { padding: 6px 0; }
.link-list a { color: var(--accent); font-weight: 550; display: inline-flex; align-items: center; gap: 5px; }
.link-list a:hover { text-decoration: underline; text-underline-offset: 3px; }

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.data-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.data-table th, .data-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); }
.data-table th { font-size: 12.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.t-strong { font-weight: 650; }

/* --------------------------------------------------------------------------
   Sign-in pages
   -------------------------------------------------------------------------- */
.auth-wrap { min-height: 100vh; display: grid; place-content: center; padding: 40px 20px; }
.auth-card {
  width: min(100%, 27rem); background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(26px, 5vw, 40px); box-shadow: var(--shadow);
}
.auth-brand { display: block; text-align: center; margin-bottom: 24px; }
.auth-wordmark { font-family: var(--font-heading); font-weight: 800; font-size: 22px; letter-spacing: -.025em; }
.auth-logo { max-height: 46px; width: auto; margin-inline: auto; }
.auth-title { font-size: 24px; margin-bottom: 8px; text-align: center; }
.auth-sub { color: var(--muted); text-align: center; margin: 0 0 26px; font-size: 14.5px; }
.auth-form { display: grid; gap: 16px; }
.auth-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 14px; }
.auth-link { color: var(--accent); }
.auth-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.auth-foot { text-align: center; margin: 22px 0 0; font-size: 14.5px; color: var(--muted); }
.auth-foot a { color: var(--accent); font-weight: 600; }
.auth-back { text-align: center; margin-top: 22px; font-size: 13.5px; }
.auth-back a { color: var(--muted); display: inline-flex; align-items: center; gap: 4px; }
.code-field { text-align: center; letter-spacing: .35em; font-size: 20px; font-weight: 700; }
.code-field-lg { font-size: 30px; padding: 16px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { margin-top: var(--gap-xl); border-top: 1px solid var(--line); background: var(--surface-2); }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: var(--gap-lg);
  padding: var(--gap-lg) 0 var(--gap);
}
.site-footer.layout-simple .footer-top { grid-template-columns: 1fr; text-align: center; }
@media (max-width: 800px) { .footer-top { grid-template-columns: 1fr; gap: var(--gap); } }
.footer-name { font-family: var(--font-heading); font-weight: 800; font-size: 19px; letter-spacing: -.02em; }
.footer-tagline, .footer-text { color: var(--muted); font-size: 14.5px; margin: 8px 0 0; max-width: 30rem; }
.footer-menu { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-menu a { color: var(--muted); font-size: 14.5px; }
.footer-menu a:hover { color: var(--accent); }
.footer-signup h3 { font-size: 15px; margin-bottom: 10px; }
.footer-signup-form { display: flex; gap: 8px; }
.footer-signup-form input {
  flex: 1; min-width: 0; padding: 10px 14px;
  border: 1px solid var(--line-2); border-radius: var(--radius-pill); background: var(--surface);
}
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 0 30px; border-top: 1px solid var(--line); color: var(--faint); font-size: 13px;
}
.footer-copy, .footer-meta { margin: 0; }
.footer-meta a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 6px; list-style: none; padding: 0; margin: 0; }
.footer-social a { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--surface-3); }
.footer-social a:hover { background: var(--accent); color: var(--accent-ink); }

/* --------------------------------------------------------------------------
   Print — a post should print as a clean article.
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .post-share, .comments, .post-nav, .home-section, .breadcrumbs { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  .post-body > * { max-width: none; padding: 0; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .85em; color: #555; }
}
