/* ==========================================================================
   Fastkava — B15 Blog (archive + article)
   Built from "B15 - Blog.dc.html" (design_handoff_blog). Shares the page
   chrome (.fk-page, glows, crumbs, kicker, CTA panel) with the catalogue
   pages in pages.css; everything below is blog-only.
   ========================================================================== */

/* Palette from the handoff, as local tokens so the light theme can remap
   them in one place. Dark values are the design's exact ones. */
body.fkl-blog {
  --bl-card-bg: rgba(255, 255, 255, .03);
  --bl-card-bd: rgba(255, 255, 255, .09);
  --bl-div: rgba(255, 255, 255, .08);
  --bl-body: rgba(230, 220, 208, .82);
  --bl-body-soft: rgba(230, 220, 208, .75);
  --bl-excerpt: rgba(230, 220, 208, .72);
  --bl-head: #F6EEE2;
  --bl-strong: #F4EEE7;
  --bl-soft: #CFC7BC;
  --bl-kick: #C9C1B4;
  --bl-toc: #B8B1A6;
  --bl-list: #E8DFD3;
  --bl-pgn: #E8E1D6;
  --bl-pgn-bd: rgba(255, 255, 255, .14);
  --bl-muted: #8F887F;
  --bl-dim: #5E574F;
  --bl-ph: #120C08;
  --bl-chip-bg: rgba(10, 7, 5, .55);
  --bl-chip-bd: rgba(255, 255, 255, .18);
}
:root[data-theme="light"] body.fkl-blog {
  --bl-card-bg: rgba(255, 255, 255, .55);
  --bl-card-bd: rgba(26, 21, 18, .10);
  --bl-div: rgba(26, 21, 18, .09);
  --bl-body: rgba(26, 21, 18, .84);
  --bl-body-soft: rgba(26, 21, 18, .74);
  --bl-excerpt: rgba(26, 21, 18, .70);
  --bl-head: #1A1512;
  --bl-strong: #1A1512;
  --bl-soft: #4E4740;
  --bl-kick: #6E675E;
  --bl-toc: #5E574F;
  --bl-list: #2A231E;
  --bl-pgn: #2A231E;
  --bl-pgn-bd: rgba(26, 21, 18, .16);
  --bl-muted: #7A736A;
  --bl-dim: #B0A89C;
  --bl-ph: #E6DED2;
  --bl-chip-bg: rgba(255, 253, 249, .72);
  --bl-chip-bd: rgba(26, 21, 18, .16);
}

/* ---- Archive head -------------------------------------------------------- */
.fk-blog__head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 48px;
  margin-top: clamp(22px, 2.4vw, 34px);
}
.fk-blog__head-text { max-width: 760px; }
.fk-blog__kicker { color: var(--bl-kick); letter-spacing: clamp(2.5px, .21vw, 3px); font-size: clamp(11.5px, .9vw, 13px); }
.fk-blog__title {
  margin: 0;
  font-size: clamp(27px, 3.2vw, 46px); line-height: 1.1; font-weight: 800; letter-spacing: .3px;
  text-transform: uppercase; text-wrap: balance;
  color: var(--bl-head);
}
.fk-blog__title-accent { color: var(--fk-accent); }
.fk-blog__intro {
  margin: clamp(12px, 1.25vw, 18px) 0 0; max-width: 640px;
  font-size: clamp(14px, 1.1vw, 16px); line-height: 1.6; font-weight: 500;
  color: var(--bl-body-soft); text-wrap: pretty;
}
.fk-blog__count { flex: none; display: flex; align-items: baseline; gap: 10px; padding-bottom: 6px; }
.fk-blog__count-num { font-family: var(--fk-font-display); font-weight: 700; font-size: 34px; line-height: 1; color: var(--fk-accent); }
.fk-blog__count-label { font-size: 15px; font-weight: 500; color: var(--bl-muted); }

/* ---- Grid ---------------------------------------------------------------- */
.fk-blog__grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px;
  margin-top: clamp(28px, 3vw, 44px);
}

/* ---- Card ---------------------------------------------------------------- */
.fk-bcard {
  position: relative;
  display: flex; flex-direction: column;
  border-radius: 22px; overflow: hidden;
  background: var(--bl-card-bg);
  border: 1px solid var(--bl-card-bd);
  transition: border-color .2s ease;
}
.fk-bcard:hover { border-color: rgba(251, 83, 0, .5); }
.fk-bcard__media {
  display: block; position: relative; height: 240px; overflow: hidden;
  background: var(--bl-ph);
}
.fk-bcard__img, .fk-bcard__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fk-bcard__chip {
  position: absolute; top: 14px; left: 14px;
  background: var(--bl-chip-bg); border: 1px solid var(--bl-chip-bd);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: var(--bl-strong);
  font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 7px 10px; border-radius: 7px;
}
.fk-bcard__body { display: flex; flex-direction: column; gap: 12px; padding: 22px 24px; flex: 1; }
.fk-bcard__title { margin: 0; font-size: 19px; line-height: 1.32; font-weight: 700; color: var(--bl-head); text-wrap: pretty; }
.fk-bcard__link { color: inherit; }
.fk-bcard__link:hover, .fk-bcard:hover .fk-bcard__link { color: var(--fk-accent); }
/* Whole card leads to the article (stretched title link); the media link is a
   duplicate target kept out of the tab order. */
.fk-bcard__link::after { content: ""; position: absolute; inset: 0; z-index: 2; }
.fk-bcard__link:focus-visible { outline: none; }
.fk-bcard:has(.fk-bcard__link:focus-visible) { outline: 2px solid var(--fk-accent); outline-offset: 3px; }
.fk-bcard__excerpt { margin: 0; font-size: 14px; line-height: 1.6; color: var(--bl-excerpt); flex: 1; }
.fk-bcard__meta {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding-top: 14px; border-top: 1px solid var(--bl-div);
  font-size: 12.5px; font-weight: 600; color: var(--bl-muted);
}
.fk-bcard__avatar {
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--fk-accent); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: 0;
}
.fk-bcard__author { color: var(--bl-soft); }
.fk-bcard__read { margin-left: auto; }

/* Related-row variant */
.fk-bcard--compact .fk-bcard__media { height: 220px; }
.fk-bcard--compact .fk-bcard__title { font-size: 18px; flex: 1; }

/* ---- Pagination ---------------------------------------------------------- */
.fk-pgn {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px;
  margin-top: clamp(32px, 3.9vw, 56px);
}
.fk-pgn__num, .fk-pgn__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; border-radius: 10px; box-sizing: border-box;
  border: 1px solid var(--bl-pgn-bd); color: var(--bl-pgn);
  font-weight: 700; text-decoration: none;
  transition: border-color .2s ease, color .2s ease;
}
.fk-pgn__num { width: 44px; font-size: 14px; }
.fk-pgn__num.current { background: var(--fk-accent); border-color: var(--fk-accent); color: #fff; font-weight: 800; }
.fk-pgn__num.dots { border-color: transparent; color: var(--bl-muted); }
.fk-pgn__btn { padding: 0 18px; font-size: 12.5px; letter-spacing: 1px; }
a.fk-pgn__num:hover, a.fk-pgn__btn:hover { border-color: var(--fk-accent); color: var(--bl-strong); }
.fk-pgn__btn.is-disabled { border-color: var(--bl-div); color: var(--bl-dim); }
.fk-pgn__word--short { display: none; }

/* ---- Article ------------------------------------------------------------- */
.fk-post__article { margin-top: clamp(22px, 4.4vw, 64px); }
.fk-post__head { text-align: center; }
.fk-post__cat { margin-bottom: 18px; }
.fk-post__cat a {
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--fk-accent);
}
.fk-post__cat a:hover { color: var(--fk-accent-bright); }
.fk-post__title {
  margin: 0 auto; max-width: 980px;
  font-size: clamp(27px, 3.33vw, 48px); line-height: 1.1; font-weight: 800; letter-spacing: .2px;
  color: var(--bl-head); text-wrap: pretty;
}
.fk-post__title-accent { color: var(--fk-accent); }
.fk-post__lead {
  margin: 20px auto 0; max-width: 820px;
  font-size: clamp(16px, 1.25vw, 18px); line-height: 1.6; font-weight: 500;
  color: var(--bl-body-soft); text-wrap: pretty;
}

/* Author row */
.fk-post__byline {
  display: flex; align-items: center; gap: 16px; text-align: left;
  margin-top: 28px; padding: 18px 0;
  border-top: 1px solid var(--bl-card-bd); border-bottom: 1px solid var(--bl-card-bd);
}
.fk-post__avatar, .fk-author__avatar {
  flex: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--fk-accent); color: #fff; font-weight: 800;
}
.fk-post__avatar { width: 44px; height: 44px; font-size: 14px; }
.fk-post__who { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.fk-post__author { font-size: 15px; font-weight: 700; color: var(--bl-strong); }
.fk-post__author:hover { color: var(--fk-accent); }
.fk-post__role { font-size: 12.5px; font-weight: 500; color: var(--bl-muted); }
.fk-post__dates {
  margin-left: auto; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: flex-end;
  font-size: 13px; font-weight: 600; color: var(--bl-muted);
}
.fk-post__dates time { color: var(--bl-soft); }

/* Cover */
.fk-post__hero {
  position: relative; margin: 36px 0 0;
  border-radius: 24px; overflow: hidden; background: var(--bl-ph);
}
.fk-post__hero::before {
  content: ""; position: absolute; inset: 0; z-index: 3; border-radius: inherit; padding: 1.5px;
  background: linear-gradient(150deg, rgba(251,83,0,.80), rgba(255,162,77,.45) 32%, rgba(255,162,77,.38) 62%, rgba(251,83,0,.65));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box exclude, linear-gradient(#fff 0 0);
  pointer-events: none;
}
/* Fixed frame (1248×560 as designed) — the box is sized by the aspect ratio,
   so the image never shifts the layout while it loads. */
.fk-post__hero-img, .fk-post__hero img {
  display: block; width: 100%; height: auto; aspect-ratio: 1248 / 560; object-fit: cover;
}
.fk-post__hero-cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 22px 28px; font-size: 12.5px; font-weight: 600; color: #CFC7BC;
  background: linear-gradient(180deg, transparent, rgba(7, 5, 3, .8));
}

/* Two columns */
.fk-post__grid {
  display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 72px; align-items: start;
  margin-top: 56px; text-align: left;
}
.fk-post__main { max-width: 780px; min-width: 0; }
.fk-post__side { position: sticky; top: calc(var(--fk-header-h) + 30px); display: flex; flex-direction: column; gap: 20px; }

/* Body typography */
.fk-post__body { color: var(--bl-body); font-size: 17px; line-height: 1.75; font-weight: 500; }
.fk-post__body > * { margin: 0; }
.fk-post__body > * + * { margin-top: 18px; }
.fk-post__body p { text-wrap: pretty; }
.fk-post__body a { color: var(--fk-accent); text-decoration: underline; text-decoration-color: rgba(251,83,0,.4); text-underline-offset: 3px; }
.fk-post__body a:hover { color: var(--fk-accent-bright); }
.fk-post__body strong { color: var(--bl-strong); font-weight: 700; }
.fk-post__body h2, .fk-post__body h3, .fk-post__body h4 { color: var(--bl-head); scroll-margin-top: calc(var(--fk-header-h) + 30px); text-wrap: pretty; }
.fk-post__body h2 { margin-top: 48px; font-size: clamp(22px, 2.1vw, 30px); line-height: 1.2; font-weight: 800; letter-spacing: .2px; }
.fk-post__body h3 { margin-top: 30px; font-size: clamp(18px, 1.46vw, 21px); line-height: 1.3; font-weight: 700; }
.fk-post__body h4 { margin-top: 26px; font-size: 17px; line-height: 1.35; font-weight: 700; }
.fk-post__body h2 + *, .fk-post__body h3 + *, .fk-post__body h4 + * { margin-top: 14px; }
.fk-post__body ul, .fk-post__body ol { padding: 0 0 0 22px; display: flex; flex-direction: column; gap: 6px; }
.fk-post__body li::marker { color: var(--fk-accent); }
.fk-post__body img { border-radius: 18px; display: block; max-width: 100%; height: auto; }
.fk-post__body figure { margin-top: 32px; }
.fk-post__body figure img { width: 100%; }
.fk-post__body figcaption { padding: 14px 4px 0; font-size: 13px; font-weight: 600; line-height: 1.5; color: var(--bl-muted); text-align: left; }
.fk-post__body hr { border: 0; border-top: 1px solid var(--bl-div); margin-top: 40px; }
/* Pull quote */
.fk-post__body blockquote {
  margin-top: 44px; padding: 0;
  display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 0 28px;
}
.fk-post__body blockquote::before { content: ""; width: 34px; height: 2px; background: var(--fk-accent); margin-top: 22px; }
.fk-post__body blockquote > * { grid-column: 2; }
.fk-post__body blockquote p { font-size: clamp(19px, 1.67vw, 24px); line-height: 1.45; font-weight: 700; letter-spacing: -.01em; color: var(--bl-head); }
.fk-post__body blockquote p strong, .fk-post__body blockquote p em { color: var(--fk-accent); font-style: normal; }
.fk-post__body blockquote cite, .fk-post__body blockquote footer { display: block; margin-top: 20px; font-size: 13px; font-weight: 700; font-style: normal; color: var(--bl-soft); }
/* Price rows (a two-column table) */
.fk-post__body table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.fk-post__body th, .fk-post__body td { padding: 15px 0; border-top: 1px solid var(--bl-card-bd); text-align: left; vertical-align: baseline; }
.fk-post__body tr:last-child td { border-bottom: 1px solid var(--bl-card-bd); }
.fk-post__body td { font-size: 15.5px; font-weight: 600; color: var(--bl-list); }
.fk-post__body td:last-child, .fk-post__body th:last-child { text-align: right; white-space: nowrap; font-size: 16px; font-weight: 800; color: var(--bl-strong); }
.fk-post__body th { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--bl-muted); }

/* Inline CTA — the shared panel, at the article's rhythm */
.fk-post__cta { margin-top: 48px; }

/* Author block */
.fk-author {
  display: flex; align-items: flex-start; gap: 26px;
  margin-top: 56px; padding: 30px 32px; border-radius: 22px;
  background: var(--bl-card-bg); border: 1px solid var(--bl-card-bd);
}
.fk-author__avatar { width: 88px; height: 88px; font-size: 26px; }
.fk-author__body { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.fk-author__kicker { font-size: 11.5px; font-weight: 700; letter-spacing: 2.5px; color: var(--fk-accent); }
.fk-author__name-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.fk-author__name { font-size: 22px; font-weight: 800; color: var(--bl-head); }
.fk-author__name:hover { color: var(--fk-accent); }
.fk-author__role { font-size: 13.5px; font-weight: 600; color: var(--bl-muted); }
.fk-author__bio { margin: 0; font-size: 15px; line-height: 1.65; font-weight: 500; color: var(--bl-body-soft); text-wrap: pretty; }
.fk-author__links { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 4px; font-size: 13px; font-weight: 700; letter-spacing: .8px; }
.fk-author__links a { color: var(--bl-soft); }
.fk-author__links a:hover { color: var(--fk-accent); }

/* Table of contents */
.fk-toc { border-radius: 18px; background: var(--bl-card-bg); border: 1px solid var(--bl-card-bd); }
.fk-toc__summary {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  list-style: none; cursor: pointer;
  padding: 24px 26px 16px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 2.5px; color: var(--fk-accent);
}
.fk-toc__summary::-webkit-details-marker { display: none; }
.fk-toc__chev {
  width: 8px; height: 8px; margin-top: -4px;
  border-right: 2px solid var(--bl-muted); border-bottom: 2px solid var(--bl-muted);
  transform: rotate(45deg); transition: transform .2s ease;
}
.fk-toc[open] .fk-toc__chev { transform: rotate(-135deg); margin-top: 4px; }
.fk-toc__nav { padding: 0 26px 26px; }
.fk-toc__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.fk-toc__item { border-left: 2px solid var(--bl-div); transition: border-color .2s ease; }
.fk-toc__item--h2 { padding: 8px 0 8px 14px; }
.fk-toc__item--h3 { padding: 6px 0 6px 30px; }
.fk-toc__item a { display: block; line-height: 1.4; font-weight: 600; color: var(--bl-toc); transition: color .2s ease; }
.fk-toc__item--h2 a { font-size: 14px; }
.fk-toc__item--h3 a { font-size: 13px; color: var(--bl-muted); }
.fk-toc__item a:hover { color: var(--bl-strong); }
.fk-toc__item.is-active { border-color: var(--fk-accent); }
.fk-toc__item.is-active a { font-weight: 700; color: var(--bl-head); }
/* Desktop sidebar copy: always open, summary is just a label. */
.fk-toc--side .fk-toc__summary { pointer-events: none; }
.fk-toc--side .fk-toc__chev { display: none; }
.fk-toc--inline { display: none; }

/* Sidebar CTA */
.fk-post__side-cta {
  padding: 24px 26px; border-radius: 18px;
  border: 1px solid rgba(251, 83, 0, .35);
  background: radial-gradient(120% 120% at 50% 0%, rgba(216, 96, 26, .18), rgba(14, 6, 3, 0) 70%);
}
:root[data-theme="light"] .fk-post__side-cta { background: radial-gradient(120% 120% at 50% 0%, rgba(255, 150, 80, .22), rgba(255, 255, 255, 0) 70%); }
.fk-post__side-title { font-size: 17px; font-weight: 800; line-height: 1.3; color: var(--bl-head); }
.fk-post__side-text { margin: 8px 0 0; font-size: 13.5px; line-height: 1.55; font-weight: 500; color: var(--bl-body-soft); }
.fk-post__side-btn {
  display: flex; align-items: center; justify-content: center;
  margin-top: 16px; padding: 14px 16px; border-radius: 10px;
  background: var(--fk-accent); color: #fff;
  font-size: 12.5px; font-weight: 700; letter-spacing: 1.3px;
  transition: background-color var(--fk-dur) var(--fk-ease);
}
.fk-post__side-btn:hover { background: var(--fk-accent-2); color: #fff; }

/* Read next */
.fk-related { margin-top: clamp(44px, 5.6vw, 80px); }
.fk-related__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 26px; }
.fk-related__head .fk-page__kicker { color: var(--bl-kick); letter-spacing: 3px; font-size: 13px; }
.fk-related__title { margin: 0; font-size: clamp(22px, 2.1vw, 30px); line-height: 1.15; font-weight: 800; letter-spacing: .4px; color: var(--bl-head); }
.fk-related__all { flex: none; font-size: 13px; font-weight: 700; letter-spacing: 1.2px; color: var(--fk-accent); }
.fk-related__all:hover { color: var(--fk-accent-bright); }
.fk-related__all--btn { display: none; }
.fk-related__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }

/* ---- Tablet (≤1100) ------------------------------------------------------ */
@media (max-width: 1100px) {
  .fk-blog__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .fk-bcard { border-radius: 18px; }
  .fk-bcard__media { height: 200px; }
  .fk-bcard__body { gap: 10px; padding: 18px 20px; }
  .fk-bcard__title { font-size: 17px; }
  .fk-bcard__excerpt { font-size: 13.5px; line-height: 1.55; }
  .fk-blog__head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .fk-blog__count { display: none; }

  .fk-post__head { text-align: left; }
  .fk-post__title, .fk-post__lead { margin-left: 0; margin-right: 0; }
  .fk-post__cat { margin-bottom: 14px; }
  .fk-post__byline { margin-top: 22px; padding: 14px 0; gap: 14px; flex-wrap: wrap; }
  .fk-post__avatar { width: 40px; height: 40px; font-size: 13px; }
  .fk-post__dates { flex-direction: column; align-items: flex-end; gap: 3px; font-size: 12px; }
  .fk-post__hero { margin-top: 26px; border-radius: 20px; }
  .fk-post__hero-img, .fk-post__hero img { aspect-ratio: 754 / 380; }
  .fk-post__hero-cap { padding: 18px 22px; font-size: 12px; }

  .fk-post__grid { grid-template-columns: minmax(0, 1fr); gap: 40px; margin-top: 28px; }
  .fk-post__main { max-width: none; }
  .fk-post__side { position: static; }
  .fk-toc--side { display: none; }
  .fk-toc--inline { display: block; border-radius: 16px; }
  .fk-toc--inline .fk-toc__summary { padding: 18px 22px; }
  .fk-toc--inline .fk-toc__nav { padding: 0 22px 20px; }
  .fk-post__body { font-size: 16.5px; line-height: 1.72; }
  .fk-toc--inline + .fk-post__body { margin-top: 32px; }
  .fk-post__body h2 { margin-top: 40px; }
  .fk-post__body figure img, .fk-post__body img { border-radius: 16px; }

  .fk-author { gap: 20px; margin-top: 44px; padding: 24px 26px; border-radius: 20px; }
  .fk-author__avatar { width: 72px; height: 72px; font-size: 22px; }
  .fk-author__name { font-size: 19px; }
  .fk-author__bio { font-size: 14px; line-height: 1.6; }

  .fk-related__head { gap: 24px; margin-bottom: 20px; }
  .fk-related__grid { gap: 16px; }
  .fk-bcard--compact { border-radius: 18px; }
  .fk-bcard--compact .fk-bcard__media { height: 150px; }
  .fk-bcard--compact .fk-bcard__body { gap: 10px; padding: 16px 18px; }
  .fk-bcard--compact .fk-bcard__title { font-size: 14.5px; line-height: 1.35; }
  .fk-bcard--compact .fk-bcard__meta { font-size: 11.5px; border-top: 0; padding-top: 0; }
  .fk-bcard--compact .fk-bcard__author, .fk-bcard--compact .fk-bcard__dot { display: none; }
}

/* ---- Mobile (≤700) ------------------------------------------------------- */
@media (max-width: 700px) {
  .fk-blog__grid { grid-template-columns: 1fr; gap: 16px; margin-top: 28px; }
  .fk-bcard__media { height: 190px; }
  .fk-bcard__body { padding: 18px; }
  .fk-bcard__read { display: none; }
  .fk-pgn__btn--prev { display: none; }
  .fk-pgn__word--long { display: none; }
  .fk-pgn__word--short { display: inline; }
  .fk-pgn__btn { padding: 0 16px; font-size: 12px; }

  .fk-crumbs__here { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; max-width: 100%; }
  .fk-post__title { line-height: 1.18; }
  .fk-post__byline { margin-top: 18px; gap: 12px; }
  .fk-post__avatar { width: 38px; height: 38px; font-size: 12px; }
  .fk-post__role { display: none; }
  .fk-post__dates { margin-left: 0; flex-basis: 100%; flex-direction: row; justify-content: flex-start; gap: 6px; font-size: 11.5px; }
  .fk-post__date-label, .fk-post__date--mod { display: none; }
  .fk-post__read::before { content: "· "; }
  /* Full-bleed cover, caption below it */
  .fk-post__hero { margin: 20px calc(var(--fk-gutter) * -1) 0; border-radius: 0; background: transparent; }
  .fk-post__hero::before { display: none; }
  .fk-post__hero-img, .fk-post__hero img { aspect-ratio: 390 / 240; }
  .fk-post__hero-cap { position: static; padding: 10px var(--fk-gutter) 0; font-size: 11.5px; color: var(--bl-muted); background: none; }
  .fk-toc--inline { margin-top: 24px; border-radius: 14px; }
  .fk-toc--inline .fk-toc__summary { padding: 16px 18px; font-size: 11px; }
  .fk-toc--inline .fk-toc__nav { padding: 0 18px 16px; }
  .fk-toc--inline + .fk-post__body { margin-top: 26px; }
  .fk-post__body { font-size: 16px; line-height: 1.7; }
  .fk-post__body h2 { margin-top: 34px; }
  .fk-post__body blockquote { grid-template-columns: 1fr; gap: 14px; }
  .fk-post__body blockquote::before { margin-top: 0; }
  .fk-post__body blockquote > * { grid-column: 1; }
  .fk-post__body figure img, .fk-post__body img { border-radius: 14px; }

  .fk-author { flex-direction: column; gap: 12px; margin-top: 36px; padding: 22px 20px; border-radius: 18px; }
  .fk-author__avatar { width: 56px; height: 56px; font-size: 18px; }
  .fk-author__body { gap: 8px; }
  .fk-author__name { font-size: 17px; }
  .fk-author__bio { font-size: 13.5px; }

  .fk-related__head { display: block; margin-bottom: 18px; }
  .fk-related__head > .fk-related__all { display: none; }
  .fk-related__grid { display: flex; flex-direction: column; gap: 12px; }
  .fk-bcard--compact { flex-direction: row; align-items: stretch; border-radius: 16px; }
  .fk-bcard--compact .fk-bcard__media { flex: none; width: 112px; height: auto; min-height: 112px; }
  .fk-bcard--compact .fk-bcard__body { justify-content: center; gap: 8px; padding: 12px 14px 12px 14px; }
  .fk-bcard--compact .fk-bcard__title { font-size: 14px; }
  .fk-related__all--btn {
    display: flex; align-items: center; justify-content: center;
    margin-top: 16px; height: 46px; border-radius: 10px;
    border: 1px solid var(--bl-pgn-bd); color: var(--bl-pgn); font-size: 12px;
  }
  .fk-related__all--btn:hover { border-color: var(--fk-accent); color: var(--bl-strong); }
}

@media (prefers-reduced-motion: reduce) {
  .fk-bcard, .fk-bcard__link, .fk-toc__chev, .fk-toc__item, .fk-toc__item a, .fk-pgn__num, .fk-pgn__btn, .fk-post__side-btn { transition: none; }
}
