/* Blog — loaded after styles.css (and hub.css, for the closing calculator
   picker). Used by /blog/ and every post under it; reuses the shared tokens,
   so nothing here defines a new color outside the palette in styles.css. */

/* ---------- reading progress ---------- */

.progress {
  position: fixed; left: 0; top: 0; z-index: 60;
  height: 3px; width: 100%;
  background: var(--grad-brand);
  transform-origin: 0 50%; transform: scaleX(0);
  pointer-events: none;
}

/* ---------- breadcrumb ---------- */

.crumbs { padding-top: 26px; }
.crumbs ol {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; align-items: center; gap: 4px 8px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .04em; color: var(--ink-3);
}
.crumbs li { display: inline-flex; align-items: center; gap: 8px; }
.crumbs li + li::before { content: "/"; color: var(--hair); }
.crumbs a { color: var(--ink-2); text-decoration: none; transition: color var(--dur) var(--ease); }
.crumbs a:hover { color: var(--accent); }
.crumbs [aria-current] { color: var(--ink-3); }

/* ---------- post header ---------- */

.post-head { position: relative; padding-block: 22px 28px; }
.post-head .hero-glow { inset: -200px -10% auto -10%; }
.post-head h1 { max-width: 20ch; font-size: clamp(32px, 5.6vw, 54px); }
@supports (background-clip: text) or (-webkit-background-clip: text) {
  .post-head h1 {
    background: linear-gradient(100deg, var(--ink) 35%, var(--accent) 75%, var(--accent-2) 105%);
    -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
  }
}
.post-head .lede { max-width: 60ch; }

.byline {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px;
  margin: 22px 0 0; padding: 0; list-style: none;
  font-size: 13.5px; color: var(--ink-3);
  animation: rise .6s .14s var(--ease) both;
}
.byline li { display: inline-flex; align-items: center; gap: 7px; }
.byline .by { color: var(--ink-2); font-weight: 500; }
.byline .by-mark {
  width: 26px; height: 26px; border-radius: 8px; background: var(--grad-brand);
  box-shadow: inset 0 0 0 4px var(--surface), inset 0 0 0 5.5px var(--accent);
}
.byline svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }
.share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--body); font-size: 13px; font-weight: 500; color: var(--ink-2);
  background: var(--surface); border: 1px solid var(--hair); border-radius: 999px;
  padding: 5px 12px; cursor: pointer;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.share-btn:hover { border-color: var(--accent); color: var(--accent); }
.share-btn svg { color: currentColor; }

.post-hero { margin: 0 0 12px; animation: rise .6s .2s var(--ease) both; }
.post-hero img {
  display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: var(--r-xl); border: 1px solid var(--hair); box-shadow: var(--shadow-lg);
}
.post-hero figcaption, .post-fig figcaption { margin-top: 8px; font-size: 12.5px; color: var(--ink-3); }

/* ---------- article layout: sticky TOC + body ---------- */

.post-layout {
  display: grid; grid-template-columns: minmax(0, 1fr); gap: 28px;
  padding-top: 26px;
}
@media (min-width: 980px) {
  .post-layout { grid-template-columns: 232px minmax(0, 1fr); gap: 56px; }
}

.toc-wrap { min-width: 0; }
@media (min-width: 980px) {
  .toc-wrap { position: sticky; top: calc(var(--header-h) + 24px); align-self: start; max-height: calc(100vh - var(--header-h) - 48px); overflow-y: auto; scrollbar-width: thin; }
}
.toc {
  background: var(--surface); border: 1px solid var(--hair); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.toc summary {
  list-style: none; cursor: pointer; padding: 13px 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3);
}
.toc summary::-webkit-details-marker { display: none; }
.toc summary::after {
  content: ""; width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px); transition: transform var(--dur) var(--ease);
}
.toc[open] summary::after { transform: rotate(-135deg) translateY(-2px); }
@media (min-width: 980px) {
  .toc { background: transparent; border: 0; box-shadow: none; }
  .toc summary { pointer-events: none; padding: 0 0 12px; }
  .toc summary::after { display: none; }
}
.toc ol { list-style: none; margin: 0; padding: 0 10px 12px; }
@media (min-width: 980px) { .toc ol { padding: 0; border-left: 1px solid var(--hair); } }
.toc ol ol { padding: 2px 0 4px 12px; border-left: 0; }
.toc a {
  display: block; position: relative;
  padding: 6px 10px 6px 14px; margin-left: -1px;
  font-size: 13.5px; line-height: 1.35; color: var(--ink-2); text-decoration: none;
  border-left: 2px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.toc ol ol a { font-size: 12.5px; padding-block: 4px; color: var(--ink-3); }
.toc a:hover { color: var(--ink); background: var(--hair-2); }
.toc a.active { color: var(--accent); border-left-color: var(--accent); font-weight: 600; }
@media (max-width: 979px) { .toc a { border-left: 0; border-radius: 8px; } .toc a.active { background: var(--accent-soft); } }

/* ---------- article body ---------- */

.post-body { min-width: 0; max-width: 720px; font-size: 17px; line-height: 1.72; }
.post-body > section { margin-bottom: 64px; }
.post-body h2 {
  font-size: clamp(24px, 3.6vw, 32px); line-height: 1.15;
  margin: 0 0 18px; position: relative; padding-left: 16px;
}
.post-body h2::before {
  content: ""; position: absolute; left: 0; top: .12em; bottom: .12em; width: 4px;
  border-radius: 3px; background: var(--grad-brand);
}
.post-body h3 { font-size: clamp(21px, 3vw, 26px); line-height: 1.2; margin: 0; }
.post-body p { margin: 0 0 18px; color: var(--ink-2); }
.post-body p strong, .post-body li strong { color: var(--ink); font-weight: 600; }
.post-body a:not(.btn):not(.brand-card):not(.chain-cta) {
  color: var(--accent); font-weight: 500;
  text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px;
  text-decoration-color: color-mix(in srgb, var(--accent) 35%, transparent);
  transition: text-decoration-color var(--dur) var(--ease);
}
.post-body a:not(.btn):not(.brand-card):not(.chain-cta):hover { text-decoration-color: var(--accent); }
.post-body :is(section, .chain)[id] { scroll-margin-top: calc(var(--header-h) + 20px); }

.intro p:first-of-type { font-size: 19px; color: var(--ink); }

/* key takeaways */
.takeaways {
  position: relative; overflow: hidden;
  margin: 8px 0 28px; padding: 22px 22px 18px;
  border-radius: var(--r-lg); border: 1px solid color-mix(in srgb, var(--accent) 25%, var(--hair));
  background: linear-gradient(160deg, var(--accent-soft), var(--surface) 70%);
}
.takeaways h2 { font-size: 13px; font-family: var(--mono); font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); padding: 0; margin: 0 0 12px; }
.takeaways h2::before { display: none; }
.takeaways ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.takeaways li { position: relative; padding-left: 26px; font-size: 15.5px; line-height: 1.55; color: var(--ink-2); }
.takeaways li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M4 8.5l2.6 2.6L12 5.5'/%3E%3C/svg%3E") center / 11px no-repeat;
}

/* four criteria */
.criteria { list-style: none; margin: 6px 0 22px; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
@media (max-width: 560px) { .criteria { grid-template-columns: 1fr; } }
.criteria li {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--hair); border-radius: var(--r);
  padding: 16px 16px 14px; box-shadow: var(--shadow-sm);
  font-size: 14.5px; line-height: 1.55; color: var(--ink-2);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.criteria li:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.criteria li::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--c, var(--accent)); }
.criteria .ico {
  display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 9px; margin-bottom: 10px;
  background: color-mix(in srgb, var(--c) 14%, transparent); color: var(--c);
  font-family: var(--mono); font-size: 12px; font-weight: 500;
}
.criteria b { display: block; font-family: var(--display); font-size: 16.5px; color: var(--ink); margin-bottom: 3px; }
.criteria .c-cal { --c: var(--accent-2); }
.criteria .c-pro { --c: var(--pro); }
.criteria .c-na  { --c: var(--crit); }
.criteria .c-fib { --c: var(--fat); }

/* numbered criteria list */
.post-body .steps { margin-bottom: 22px; }
.post-body .steps li { font-size: 16px; }

/* callout */
.note {
  margin: 0 0 18px; padding: 16px 18px;
  background: var(--surface); border: 1px solid var(--hair); border-left: 3px solid var(--accent-2);
  border-radius: 0 var(--r) var(--r) 0; font-size: 15px; line-height: 1.65;
}
.note p { margin: 0; font-size: 15px; }
.note .note-label {
  display: block; margin-bottom: 4px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-2);
}

/* ---------- comparison table ---------- */

.cmp-wrap {
  margin: 4px 0 18px; overflow-x: auto;
  border: 1px solid var(--hair); border-radius: var(--r-lg);
  background: var(--surface); box-shadow: var(--shadow);
}
table.best {
  width: 100%; border-collapse: separate; border-spacing: 0;
  font-size: 14px; line-height: 1.4; min-width: 660px;
}
table.best caption { caption-side: bottom; text-align: left; padding: 10px 16px 12px; font-size: 12.5px; color: var(--ink-3); border-top: 1px solid var(--hair-2); }
table.best th, table.best td { padding: 12px 14px; border-bottom: 1px solid var(--hair-2); text-align: left; vertical-align: middle; }
table.best tbody tr:last-child :is(th, td) { border-bottom: 0; }
table.best thead th {
  font-family: var(--mono); font-size: 10.5px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-3); background: var(--surface-2); border-bottom: 1px solid var(--hair); white-space: nowrap;
}
table.best .num { text-align: right; font-family: var(--mono); font-variant-numeric: tabular-nums; white-space: nowrap; }
table.best tbody th { font-weight: 600; white-space: nowrap; }
table.best tbody th a { color: var(--ink) !important; text-decoration: none !important; font-weight: 600 !important; }
table.best tbody th a:hover { color: var(--accent) !important; }
table.best tbody tr { transition: background var(--dur) var(--ease); }
table.best tbody tr:hover { background: var(--accent-soft); }
table.best td.order { color: var(--ink-2); min-width: 210px; }
/* first column stays put while the rest scrolls sideways on phones */
table.best :is(thead th, tbody th):first-child { position: sticky; left: 0; z-index: 1; background: var(--surface); }
table.best thead th:first-child { background: var(--surface-2); }
table.best tbody tr:hover th:first-child { background: color-mix(in srgb, var(--accent-soft) 100%, var(--surface)); }
.pbar { display: inline-flex; align-items: center; gap: 8px; justify-content: flex-end; }
.pbar i { display: block; width: 46px; height: 6px; border-radius: 3px; background: var(--hair-2); overflow: hidden; }
.pbar i::before { content: ""; display: block; height: 100%; width: var(--w); background: var(--pro); border-radius: 3px; }
table.best .top { color: var(--accent); font-weight: 600; }

/* ---------- restaurant sections ---------- */

.chain { margin-bottom: 52px; }
.chain-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.chain-ico {
  width: 46px; height: 46px; border-radius: 14px; flex-shrink: 0;
  display: grid; place-items: center; font-size: 22px;
  background: linear-gradient(155deg, var(--surface), var(--accent-soft));
  border: 1px solid var(--hair); box-shadow: var(--shadow-sm);
}
.chain-head .tag {
  display: block; margin-top: 3px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3);
}

.post-fig { margin: 4px 0 22px; }
.post-fig img {
  display: block; width: 100%; height: auto;
  border-radius: var(--r-lg); border: 1px solid var(--hair); box-shadow: var(--shadow);
}

/* pick cards */
.picks { display: grid; gap: 14px; margin: 18px 0; }
.pick {
  position: relative;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 140%);
  border: 1px solid var(--hair); border-radius: var(--r-lg);
  padding: 20px 20px 16px; box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur-lg) var(--ease), border-color var(--dur-lg) var(--ease), transform var(--dur-lg) var(--ease);
  scroll-margin-top: calc(var(--header-h) + 20px);
}
.pick:hover { box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--accent) 30%, var(--hair)); }
.pick.star { border-color: color-mix(in srgb, var(--accent) 45%, var(--hair)); box-shadow: 0 0 0 4px var(--accent-soft), var(--shadow); }

.pick-head { display: flex; gap: 14px; align-items: flex-start; }
.pick-num {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--grad-brand); color: var(--accent-ink);
  font-family: var(--mono); font-size: 13.5px; font-weight: 500;
  box-shadow: 0 6px 14px -6px color-mix(in srgb, var(--accent) 65%, transparent);
}
.pick-title { min-width: 0; flex: 1; }
.pick h4 { font-size: 18.5px; line-height: 1.25; margin: 0; }
.pick-build { margin: 4px 0 0 !important; font-size: 13.5px; line-height: 1.45; color: var(--ink-3) !important; }
.badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
}
.badge.warm { background: var(--accent-2-soft); color: var(--accent-2); }
.badge.violet { background: color-mix(in srgb, var(--fat) 14%, transparent); color: var(--fat); }

.macros {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px;
  margin: 16px 0 14px; padding: 0;
}
@media (max-width: 520px) { .macros { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.macros > div {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--hair-2); border-radius: 10px;
  padding: 9px 11px 10px;
}
.macros > div::before { content: ""; position: absolute; left: 0; top: 10px; bottom: 10px; width: 3px; border-radius: 0 3px 3px 0; background: var(--m, var(--ink-3)); }
.macros dt { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.macros dd { margin: 1px 0 0; font-family: var(--display); font-weight: 700; font-size: 19px; line-height: 1.15; color: var(--ink); font-variant-numeric: tabular-nums; }
.macros dd small { font-family: var(--body); font-size: 12px; font-weight: 500; color: var(--ink-3); margin-left: 1px; }
.macros .m-cal { --m: var(--accent-2); }
.macros .m-pro { --m: var(--pro); }
.macros .m-carb { --m: var(--carb); }
.macros .m-na { --m: var(--na, var(--accent)); }
.macros .m-na.mid { --na: var(--warn); }
.macros .m-na.high { --na: var(--crit); }
.na-meter { display: flex; align-items: center; gap: 6px; margin-top: 5px; }
.na-meter i { flex: 1; height: 4px; border-radius: 2px; background: var(--hair-2); overflow: hidden; }
.na-meter i::before { content: ""; display: block; height: 100%; width: var(--dv); background: var(--m); border-radius: 2px; }
.na-meter span { font-family: var(--mono); font-size: 10px; color: var(--ink-3); white-space: nowrap; }

.pick > p { font-size: 15.5px; line-height: 1.65; margin: 0 0 10px; }
.pick > p:last-child { margin-bottom: 0; }
.pick .aside { font-size: 13.5px; color: var(--ink-3); }
.swap {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 12px; border-radius: 10px;
  background: var(--accent-2-soft); color: var(--ink) !important;
  font-size: 14.5px !important; line-height: 1.55 !important;
}
.swap b {
  flex-shrink: 0;
  font-family: var(--mono); font-size: 10.5px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent-ink); background: var(--accent-2); padding: 3px 7px; border-radius: 6px; margin-top: 2px;
}

a.chain-cta {
  display: flex; align-items: center; gap: 12px;
  margin: 6px 0 0; padding: 14px 16px;
  border-radius: var(--r); border: 1px dashed color-mix(in srgb, var(--accent) 45%, var(--hair));
  background: color-mix(in srgb, var(--accent-soft) 55%, transparent);
  color: var(--ink); text-decoration: none; font-size: 15px; line-height: 1.45;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
a.chain-cta:hover { background: var(--accent-soft); border-style: solid; transform: translateY(-1px); }
a.chain-cta .arrow {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; background: var(--accent); color: var(--accent-ink); font-size: 15px;
  transition: transform var(--dur) var(--ease);
}
a.chain-cta:hover .arrow { transform: translateX(3px); }
a.chain-cta strong { color: var(--accent); }
.chain-more { font-size: 15px !important; }

/* ---------- cheap meals ---------- */

.deals { list-style: none; margin: 0 0 20px; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
@media (max-width: 560px) { .deals { grid-template-columns: 1fr; } }
.deals li {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--hair); border-radius: var(--r);
  padding: 14px; font-size: 14.5px; line-height: 1.5; color: var(--ink-2);
}
.deals .price {
  flex-shrink: 0; font-family: var(--mono); font-size: 11px; font-weight: 500;
  padding: 4px 7px; border-radius: 6px; background: var(--accent-soft); color: var(--accent);
}
.deals b { display: block; color: var(--ink); font-weight: 600; margin-bottom: 2px; }
.rule-of-thumb {
  padding: 14px 16px; border-radius: var(--r);
  background: var(--accent-soft); border-left: 3px solid var(--accent); color: var(--ink) !important;
  font-size: 15.5px;
}

/* ---------- mistakes ---------- */

.mistakes { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.mistakes li {
  position: relative; padding: 16px 16px 16px 54px;
  background: var(--surface); border: 1px solid var(--hair); border-radius: var(--r);
  font-size: 15px; line-height: 1.6; color: var(--ink-2);
}
.mistakes li::before {
  content: "\00D7"; position: absolute; left: 16px; top: 15px;
  width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: var(--crit-soft); color: var(--crit); font-size: 18px; font-weight: 600; line-height: 1;
}
.mistakes strong { display: block; color: var(--ink); font-family: var(--display); font-size: 16.5px; margin-bottom: 2px; }

/* ---------- FAQ + closing ---------- */

.post-body .faq summary { font-size: 17px; }
.post-body .faq p { font-size: 15.5px; }

.post-body .brand-grid { margin: 20px 0 16px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.post-body .brand-card p.desc { font-size: 14px; }
.post-body .brand-card .btn { font-size: 13px; }
.closing-line { font-family: var(--display); font-weight: 600; font-size: 19px !important; color: var(--ink) !important; }

.post-foot { padding-top: 22px; border-top: 1px solid var(--hair); display: flex; flex-wrap: wrap; gap: 12px 20px; align-items: center; justify-content: space-between; font-size: 13.5px; color: var(--ink-3); }
.post-foot a { color: var(--ink-2); }

/* ---------- blog index ---------- */

.blog-hero { position: relative; padding-block: 22px 34px; }
.blog-hero h1 { font-size: clamp(34px, 6vw, 58px); }

.post-feature {
  display: grid; grid-template-columns: 1fr; overflow: hidden; padding: 0;
  text-decoration: none; color: inherit;
  transition: transform var(--dur-lg) var(--ease), box-shadow var(--dur-lg) var(--ease), border-color var(--dur-lg) var(--ease);
}
@media (min-width: 820px) { .post-feature { grid-template-columns: 1.15fr 1fr; } }
.post-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--accent) 35%, var(--hair)); }
.post-feature:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.post-feature .media { position: relative; overflow: hidden; min-height: 240px; background: var(--hair-2); }
.post-feature .media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.post-feature:hover .media img { transform: scale(1.04); }
.post-feature .media .ribbon {
  position: absolute; left: 16px; top: 16px; z-index: 1;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px; background: var(--surface); color: var(--accent); box-shadow: var(--shadow);
}
.post-feature .copy { padding: 26px 26px 24px; display: flex; flex-direction: column; gap: 12px; }
.post-feature .post-title { font-size: clamp(22px, 3vw, 29px); line-height: 1.15; }
.post-feature p { margin: 0; color: var(--ink-2); font-size: 15.5px; }
.post-meta { display: flex; flex-wrap: wrap; gap: 6px 14px; font-family: var(--mono); font-size: 11.5px; letter-spacing: .04em; color: var(--ink-3); }
.post-meta span { display: inline-flex; align-items: center; gap: 6px; }
.post-meta span + span::before { content: ""; width: 3px; height: 3px; border-radius: 50%; background: var(--ink-3); margin-right: 8px; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chips span { font-size: 12px; padding: 4px 10px; border-radius: 999px; border: 1px solid var(--hair); color: var(--ink-2); background: var(--surface-2); }
.post-feature .btn { align-self: flex-start; margin-top: auto; }

.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }

.soon-card {
  display: flex; flex-direction: column; gap: 8px; padding: 20px;
  border: 1px dashed var(--hair); border-radius: var(--r-lg);
  color: var(--ink-3); font-size: 14px;
}
.soon-card b { font-family: var(--display); font-size: 16.5px; color: var(--ink-2); }
.soon-card .kicker { animation: none; margin: 0; font-size: 11px; color: var(--ink-3); }
.soon-card .kicker::before { background: var(--ink-3); box-shadow: 0 0 0 3px var(--hair-2); }

@media (prefers-reduced-motion: reduce) {
  .progress { display: none; }
  .post-feature:hover .media img { transform: none; }
}

@media print {
  .site, .site-foot, .toc-wrap, .progress, .fab-top, .share-btn, .crumbs { display: none !important; }
  .post-layout { display: block; }
  .pick, .cmp-wrap { box-shadow: none; break-inside: avoid; }
}
