:root {
  --blog-reading-width: 56rem;
  --blog-column-width: calc(var(--blog-reading-width) + (var(--gutter) * 2));
  --blog-title-list-max: 3rem;
  --blog-title-article-max: 2.6rem;
  --blog-title-article-min: 2rem;
  --blog-heading-two-max: 1.6rem;
  --blog-heading-three-max: 1.3rem;
  --blog-body-size: 1rem;
  --blog-body-leading: 1.8;
  --blog-hero-offset: var(--u6);
  --blog-hero-min-height: 18rem;
  --blog-decoration-width: 42%;
  --blog-decoration-height: 72%;
  --blog-decoration-top: var(--u5);
  --blog-decoration-right: var(--u4);
  --blog-meta-indent: var(--u4);
  --blog-card-topline: var(--rule-heavy);
  --blog-table-min: 42rem;
  --blog-promo-angle: 128deg;
  --blog-fab-bottom: var(--u5);
  --blog-fab-right: var(--u5);
  --blog-fab-mobile-bottom: var(--u3);
  --blog-fab-mobile-right: var(--u3);
  --blog-hover-lift: -0.22rem;
  --blog-terminal-label: "SESSION";
}

.blog-page {
  background: var(--bg);
  color: var(--text);
}

.blog-reading-column,
.reading-wrap,
.article-hero,
.article-promo,
.related-section,
.post-navigation,
.article-breadcrumbs {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--blog-column-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.reading-wrap {
  width: 100%;
  max-width: var(--blog-column-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.article-breadcrumbs {
  max-width: calc(var(--prose-width) + (var(--gutter) * 2));
}

.article-hero {
  max-width: calc(var(--prose-width) + (var(--gutter) * 2) + (var(--u6) * 2));
}

.no-break {
  white-space: nowrap;
}

.blog-index-hero {
  padding-block: var(--u14) var(--u10);
  border-bottom: var(--hairline) solid var(--border);
}

.blog-index-hero-inner {
  position: relative;
  isolation: isolate;
  min-height: var(--blog-hero-min-height);
  padding: var(--u10) var(--u8);
  overflow: hidden;
  border: var(--hairline) solid var(--border);
  border-radius: var(--radius-window);
  background: var(--panel);
  box-shadow: var(--shadow-panel);
}

.blog-index-hero-inner::before {
  position: absolute;
  z-index: -1;
  top: var(--blog-decoration-top);
  right: var(--blog-decoration-right);
  width: var(--blog-decoration-width);
  height: var(--blog-decoration-height);
  border: var(--hairline) solid color-mix(in srgb, var(--accent) 52%, var(--border));
  border-radius: var(--radius-small);
  background: color-mix(in srgb, var(--accent) 22%, var(--panel-2));
  box-shadow: var(--shadow-lip);
  content: "";
}

.blog-index-hero-inner::after {
  position: absolute;
  z-index: -1;
  right: var(--u8);
  bottom: var(--u5);
  width: var(--blog-decoration-width);
  height: var(--rail-height);
  border-radius: var(--radius-small);
  background: var(--inverse);
  content: "";
}

.blog-eyebrow,
.section-kicker {
  margin: 0 0 var(--u3);
  color: var(--accent-dark);
  font-family: var(--mono);
  font-size: var(--size-tiny);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
}

.blog-index-hero h1 {
  position: relative;
  z-index: 1;
  max-width: var(--prose-width);
  margin: 0;
  font-family: var(--display);
  font-size: clamp(var(--size-section), 6vw, var(--blog-title-list-max));
  font-weight: var(--weight-heavy);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  text-wrap: pretty;
}

.blog-index-hero h1 + p {
  position: relative;
  z-index: 1;
  max-width: var(--prose-width);
  margin: var(--u5) 0 0;
  color: var(--muted);
  font-size: var(--size-lead);
  line-height: var(--lh-body);
}

.blog-catalog {
  padding-block: var(--u10) var(--u16);
}

.blog-catalog-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.55fr);
  gap: var(--u6);
  align-items: end;
  padding-bottom: var(--u6);
  border-bottom: var(--hairline) solid var(--border);
}

.blog-catalog-heading h2 {
  margin: 0;
  font-size: var(--size-section);
  line-height: var(--lh-tight);
  text-wrap: pretty;
}

.blog-catalog-heading > p {
  margin: 0;
  color: var(--muted);
  line-height: var(--lh-body);
}

.blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: var(--u2);
  margin-block: var(--u6) var(--u3);
}

.blog-filter-button {
  min-height: var(--tap-small);
  padding-inline: var(--u4);
  border: var(--hairline) solid var(--border);
  border-radius: var(--radius-round);
  background: var(--panel);
  color: var(--muted);
  font: inherit;
  font-size: var(--size-small);
  font-weight: var(--weight-medium);
  cursor: pointer;
  transition:
    border-color var(--duration-fast),
    background-color var(--duration-fast),
    color var(--duration-fast);
}

.blog-filter-button:hover {
  border-color: var(--accent);
  color: var(--text);
}

.blog-filter-button:focus-visible {
  outline: var(--rule-heavy) solid var(--accent);
  outline-offset: var(--focus-offset);
}

.blog-filter-button.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--text-inverse);
}

.blog-filter-status {
  min-height: var(--u5);
  margin: 0 0 var(--u4);
  color: var(--muted);
  font-family: var(--mono);
  font-size: var(--size-tiny);
}

.blog-list {
  display: grid;
  gap: var(--u4);
}

.article-card {
  position: relative;
  padding: var(--u6);
  border: var(--hairline) solid var(--border);
  border-radius: var(--radius-medium);
  background: var(--panel);
  box-shadow: var(--shadow-panel);
  transition:
    border-color var(--duration-fast),
    transform var(--duration-fast),
    box-shadow var(--duration-fast);
}

.article-card::before {
  position: absolute;
  top: 0;
  left: var(--u6);
  width: var(--u12);
  height: var(--blog-card-topline);
  border-radius: var(--radius-round);
  background: var(--accent);
  content: "";
}

.article-card:hover {
  border-color: var(--accent);
  transform: translateY(var(--blog-hover-lift));
  box-shadow: var(--shadow-window);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: var(--u2);
  align-items: center;
  margin-bottom: var(--u3);
  color: var(--muted);
  font-family: var(--mono);
  font-size: var(--size-tiny);
}

.article-meta .tag {
  display: inline-flex;
  align-items: center;
  min-height: var(--tag-height);
  padding-inline: var(--u3);
  border-radius: var(--radius-round);
  background: var(--accent);
  color: var(--text-inverse);
  font-family: var(--body);
  font-weight: var(--weight-semibold);
}

.article-meta time,
.article-readtime {
  display: inline-flex;
  align-items: center;
  min-height: var(--tag-height);
  padding-inline: var(--u3);
  border: var(--hairline) solid var(--border);
  border-radius: var(--radius-round);
  background: color-mix(in srgb, var(--panel) 82%, var(--panel-2));
}

.article-card h3,
.related-card h3 {
  margin: 0;
  font-size: var(--size-pane);
  line-height: var(--lh-label);
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

.article-card h3 a,
.related-card h3 a {
  color: var(--text);
  text-decoration: none;
}

.article-card h3 a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.article-card > p,
.related-card > p {
  margin: var(--u3) 0 var(--u4);
  color: var(--muted);
  line-height: var(--lh-body);
}

.article-card .text-link {
  position: relative;
  z-index: 1;
  color: var(--accent-dark);
  font-weight: var(--weight-semibold);
}

.blog-empty,
.blog-noscript {
  padding: var(--u6);
  border: var(--hairline) dashed var(--border);
  border-radius: var(--radius-medium);
  background: var(--panel-2);
  color: var(--muted);
  text-align: center;
}

.article-breadcrumbs {
  margin-top: var(--u6);
  padding-top: var(--u2);
}

.article-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: var(--u2);
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: var(--size-small);
}

.article-breadcrumbs li:not(:last-child)::after {
  margin-inline-start: var(--u2);
  color: var(--accent);
  content: "/";
}

.article-breadcrumbs a {
  color: var(--accent-dark);
}

.article-hero {
  position: relative;
  isolation: isolate;
  margin-top: var(--u5);
  padding-block: var(--u10);
  padding-inline: calc(var(--gutter) + var(--u6));
  overflow: hidden;
  border: var(--hairline) solid var(--border);
  border-radius: var(--radius-window);
  background: var(--panel);
  box-shadow: var(--shadow-panel);
}

.article-hero::before {
  position: absolute;
  z-index: -1;
  top: var(--u5);
  right: var(--u4);
  width: var(--blog-decoration-width);
  height: calc(100% - var(--u10));
  border: var(--hairline) solid color-mix(in srgb, var(--accent) 60%, var(--border));
  border-radius: var(--radius-small);
  background: color-mix(in srgb, var(--accent) 24%, var(--panel-2));
  box-shadow: var(--shadow-lip);
  content: "";
}

.article-hero::after {
  position: absolute;
  z-index: -1;
  right: var(--u8);
  bottom: var(--u6);
  width: calc(var(--blog-decoration-width) - var(--u6));
  height: var(--rail-height);
  border-radius: var(--radius-small);
  background: var(--inverse);
  content: "";
}

.article-hero .article-meta {
  position: relative;
  z-index: 1;
  margin-inline-start: var(--blog-meta-indent);
}

.article-hero h1 {
  position: relative;
  z-index: 1;
  max-width: var(--prose-width);
  margin: var(--u4) 0 0;
  font-size: clamp(var(--blog-title-article-min), 5vw, var(--blog-title-article-max));
  font-weight: var(--weight-heavy);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  text-wrap: pretty;
}

.article-hero .article-summary {
  position: relative;
  z-index: 1;
  max-width: var(--prose-width);
  margin: var(--u5) 0 0 var(--blog-meta-indent);
  color: var(--muted);
  font-size: var(--size-lead);
  line-height: var(--lh-body);
}

.article-body {
  counter-reset: article-section;
  margin-block: var(--u8) var(--u10);
  margin-inline: auto;
  color: var(--text);
  font-size: var(--blog-body-size);
  line-height: var(--blog-body-leading);
}

.article-body > :first-child {
  margin-top: 0;
}

.article-body h2 {
  counter-increment: article-section;
  margin: var(--u10) 0 var(--u4);
  font-size: min(var(--blog-heading-two-max), var(--size-section));
  line-height: var(--lh-label);
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

.article-body h2::before {
  display: inline-block;
  min-width: var(--u8);
  margin-inline-end: var(--u3);
  color: var(--accent-dark);
  font-family: var(--mono);
  font-size: var(--size-label);
  font-weight: var(--weight-bold);
  content: counter(article-section, decimal-leading-zero) " /";
}

.article-body h3 {
  margin: var(--u7) 0 var(--u3);
  font-size: min(var(--blog-heading-three-max), var(--size-pane));
  line-height: var(--lh-label);
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

.article-body p,
.article-body ul,
.article-body ol,
.article-body blockquote,
.article-body table,
.article-body pre {
  margin-block: var(--u4);
}

.article-body a {
  color: var(--accent-dark);
  text-decoration-thickness: var(--hairline);
  text-underline-offset: var(--u1);
}

.article-body ul,
.article-body ol {
  padding-inline-start: var(--u6);
}

.article-body li + li {
  margin-top: var(--u2);
}

.article-body blockquote {
  padding: var(--u4) var(--u5);
  border-inline-start: var(--rule-heavy) solid var(--accent);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
  background: color-mix(in srgb, var(--accent) 12%, var(--panel));
  color: var(--muted);
}

.article-body code {
  padding: var(--u1) var(--u2);
  border-radius: var(--radius-small);
  background: var(--panel-2);
  font-family: var(--mono);
  font-size: var(--size-small);
  overflow-wrap: anywhere;
}

.article-body pre {
  position: relative;
  padding: var(--u10) var(--u5) var(--u5);
  overflow-x: auto;
  border: var(--hairline) solid var(--inverse-border);
  border-radius: var(--radius-medium);
  background: var(--inverse);
  color: var(--text-inverse);
  box-shadow: var(--shadow-inset);
}

.article-body pre::before {
  position: absolute;
  top: var(--u3);
  left: var(--u4);
  padding: var(--u1) var(--u2);
  border: var(--hairline) solid var(--inverse-border);
  border-radius: var(--radius-small);
  background: var(--inverse-panel-2);
  color: var(--muted-inverse);
  font-family: var(--mono);
  font-size: var(--size-micro);
  letter-spacing: var(--tracking-mono);
  content: var(--blog-terminal-label);
}

.article-body pre code {
  display: block;
  min-width: max-content;
  padding: 0;
  background: var(--clear);
  color: inherit;
  white-space: pre;
  overflow-wrap: normal;
}

.article-body table {
  width: 100%;
  min-width: var(--blog-table-min);
  border-collapse: collapse;
  border: var(--hairline) solid var(--border);
  background: var(--panel);
  font-size: var(--size-small);
}

.article-body th,
.article-body td {
  padding: var(--u3) var(--u4);
  border: var(--hairline) solid var(--border);
  text-align: start;
  vertical-align: top;
}

.article-body thead {
  background: var(--inverse);
  color: var(--text-inverse);
}

.article-body tbody tr:nth-child(even) {
  background: color-mix(in srgb, var(--panel-2) 72%, var(--panel));
}

.article-body tbody tr:hover {
  background: color-mix(in srgb, var(--accent) 17%, var(--panel));
}

.article-body .table-scroll {
  width: 100%;
  margin-block: var(--u5);
  overflow-x: auto;
  border-radius: var(--radius-small);
}

.callout {
  position: relative;
  margin-block: var(--u6);
  padding: var(--u5) var(--u5) var(--u5) var(--u10);
  border: var(--hairline) solid var(--border);
  border-inline-start: var(--rule-heavy) solid var(--accent);
  border-radius: var(--radius-medium);
  background: color-mix(in srgb, var(--accent) 12%, var(--panel));
}

.callout::before {
  position: absolute;
  top: var(--u5);
  left: var(--u4);
  display: grid;
  width: var(--icon-size);
  height: var(--icon-size);
  place-items: center;
  border-radius: var(--radius-round);
  background: var(--accent);
  color: var(--text-inverse);
  font-family: var(--mono);
  font-size: var(--size-tiny);
  font-weight: var(--weight-bold);
  content: "i";
}

.callout.warning {
  border-inline-start-color: var(--warn);
  background: color-mix(in srgb, var(--warn) 15%, var(--panel));
}

.callout.warning::before {
  background: var(--warn);
  content: "!";
}

.callout.success {
  border-inline-start-color: var(--success);
  background: color-mix(in srgb, var(--success) 14%, var(--panel));
}

.callout.success::before {
  background: var(--success);
  content: "+";
}

.verdict {
  margin-block: var(--u6);
  padding: var(--u5);
  border-inline-start: var(--rule-heavy) solid var(--accent);
  border-radius: 0 var(--radius-medium) var(--radius-medium) 0;
  background: color-mix(in srgb, var(--accent) 14%, var(--panel));
  box-shadow: var(--shadow-panel);
}

.verdict strong:first-child {
  color: var(--accent-dark);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--card-min), 1fr));
  gap: var(--u3);
  margin-block: var(--u6);
}

.stat-card {
  position: relative;
  padding: var(--u5);
  overflow: hidden;
  border: var(--hairline) solid var(--border);
  border-radius: var(--radius-medium);
  background: var(--panel);
  box-shadow: var(--shadow-panel);
}

.stat-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: var(--rule-heavy);
  background: var(--accent);
  content: "";
}

.stat-card:nth-child(even) {
  background: color-mix(in srgb, var(--success) 10%, var(--panel));
}

.stat-card:nth-child(even)::before {
  background: var(--success);
}

.stat-card:nth-child(3n) {
  background: color-mix(in srgb, var(--inverse) 8%, var(--panel));
}

.stat-num {
  display: block;
  color: var(--text);
  font-family: var(--mono);
  font-size: var(--size-brand);
  font-weight: var(--weight-bold);
  line-height: var(--lh-tight);
}

.stat-label {
  display: block;
  margin-top: var(--u2);
  color: var(--muted);
  font-size: var(--size-small);
}

.check-list {
  margin-block: var(--u6);
  padding: var(--u3);
  border: var(--hairline) solid var(--border);
  border-radius: var(--radius-medium);
  background: var(--panel-2);
  list-style: none;
}

.check-list li {
  padding: var(--u3) var(--u4);
  border: var(--hairline) solid var(--border);
  border-radius: var(--radius-small);
  background: var(--panel);
}

.check-list li + li {
  margin-top: var(--u2);
}

.article-promo {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--u6);
  align-items: center;
  margin-block: var(--u8) var(--u7);
  padding-block: var(--u7);
  padding-inline: calc(var(--gutter) + var(--u6));
  overflow: hidden;
  border: var(--hairline) solid var(--inverse-border);
  border-radius: var(--radius-window);
  background: linear-gradient(var(--blog-promo-angle), var(--inverse), var(--inverse-panel-2));
  color: var(--text-inverse);
  box-shadow: var(--shadow-window);
}

.article-promo::before {
  position: absolute;
  z-index: -1;
  top: var(--u4);
  right: var(--u4);
  width: var(--u18);
  height: calc(100% - var(--u8));
  border: var(--hairline) solid var(--inverse-border);
  border-radius: var(--radius-small);
  content: "";
}

.article-promo .promo-brand {
  color: var(--text-inverse);
  font-family: var(--display);
  font-size: var(--size-brand);
  font-weight: var(--weight-heavy);
}

.article-promo p {
  margin: var(--u2) 0 0;
  color: var(--muted-inverse);
  line-height: var(--lh-body);
}

.article-promo .action-primary {
  border-color: var(--panel);
  background: var(--panel);
  color: var(--text);
  box-shadow: var(--shadow-button);
}

.article-promo .action-secondary {
  border-color: var(--text-inverse);
  background: var(--clear);
  color: var(--text-inverse);
}

.related-section {
  padding-top: var(--u5);
  padding-bottom: var(--u4);
}

.related-section > h2 {
  margin: 0 0 var(--u5);
  font-size: var(--blog-heading-two-max);
  line-height: var(--lh-tight);
  text-wrap: pretty;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--card-min), 1fr));
  gap: var(--u3);
}

.related-card {
  position: relative;
  padding: var(--u5);
  border: var(--hairline) solid var(--border);
  border-top: var(--blog-card-topline) solid var(--accent);
  border-radius: var(--radius-medium);
  background: var(--panel);
  transition:
    border-color var(--duration-fast),
    transform var(--duration-fast),
    box-shadow var(--duration-fast);
}

.related-card:hover {
  border-color: var(--accent);
  transform: translateY(var(--blog-hover-lift));
  box-shadow: var(--shadow-panel);
}

.related-card h3 a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.post-navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--u3);
  padding-top: var(--u3);
  padding-bottom: var(--u6);
}

.post-nav-card {
  position: relative;
  min-height: var(--toc-height);
  padding: var(--u5);
  border: var(--hairline) solid var(--border);
  border-radius: var(--radius-medium);
  background: var(--panel);
  color: var(--text);
  text-decoration: none;
  transition:
    border-color var(--duration-fast),
    transform var(--duration-fast),
    box-shadow var(--duration-fast);
}

.post-nav-card::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: var(--u12);
  height: var(--blog-card-topline);
  border-radius: var(--radius-round);
  background: var(--accent);
  content: "";
}

.post-nav-card:hover {
  border-color: var(--accent);
  transform: translateY(var(--blog-hover-lift));
  box-shadow: var(--shadow-panel);
}

.post-nav-next {
  text-align: end;
}

.post-nav-label {
  display: block;
  margin-bottom: var(--u2);
  color: var(--accent-dark);
  font-family: var(--mono);
  font-size: var(--size-tiny);
}

.post-nav-card strong {
  display: block;
  line-height: var(--lh-label);
}

.float-cta {
  position: fixed;
  z-index: var(--z-menu);
  right: var(--blog-fab-right);
  bottom: var(--blog-fab-bottom);
  display: inline-flex;
  gap: var(--u2);
  align-items: center;
  min-height: var(--tap-size);
  padding-inline: var(--u5);
  border: var(--hairline) solid var(--inverse-border);
  border-radius: var(--radius-round);
  background: var(--button-bg);
  color: var(--button-text);
  font-weight: var(--weight-semibold);
  text-decoration: none;
  box-shadow: var(--shadow-window);
  transition:
    transform var(--duration-fast),
    box-shadow var(--duration-fast);
}

.float-cta:hover {
  transform: translateY(var(--blog-hover-lift));
  box-shadow: var(--shadow-button);
}

.float-cta:focus-visible {
  outline: var(--rule-heavy) solid var(--accent);
  outline-offset: var(--focus-offset);
}

.float-cta svg {
  width: var(--icon-size);
  height: var(--icon-size);
  flex: 0 0 auto;
}

@media (max-width: 860px) {
  .article-body table {
    display: block;
    width: fit-content;
    max-width: 100%;
    overflow-x: auto;
  }
}

@media (max-width: 768px) {
  .blog-reading-column,
  .reading-wrap,
  .article-hero,
  .article-promo,
  .related-section,
  .post-navigation,
  .article-breadcrumbs {
    padding-inline: var(--mobile-gutter);
  }

  .blog-index-hero {
    padding-block: var(--u8) var(--u7);
  }

  .blog-index-hero-inner {
    min-height: auto;
    padding: var(--u7) var(--u5) var(--u14);
  }

  .blog-index-hero-inner::before {
    top: auto;
    right: var(--u4);
    bottom: var(--u4);
    width: calc(100% - var(--u8));
    height: var(--u10);
  }

  .blog-index-hero-inner::after {
    right: var(--u6);
    bottom: var(--u6);
    width: calc(100% - var(--u12));
  }

  .blog-catalog {
    padding-block: var(--u8) var(--u12);
  }

  .blog-catalog-heading {
    grid-template-columns: 1fr;
    gap: var(--u3);
  }

  .article-card {
    padding: var(--u5);
  }

  .article-hero {
    padding-block: var(--u8) var(--u14);
    padding-inline: calc(var(--mobile-gutter) + var(--u4));
  }

  .article-hero::before {
    top: auto;
    right: var(--u4);
    bottom: var(--u4);
    width: calc(100% - var(--u8));
    height: var(--u10);
  }

  .article-hero::after {
    right: var(--u6);
    bottom: var(--u6);
    width: calc(100% - var(--u12));
  }

  .article-hero .article-meta,
  .article-hero .article-summary {
    margin-inline-start: 0;
  }

  .article-body {
    margin-top: var(--u6);
  }

  .article-body h2 {
    margin-top: var(--u8);
  }

  .article-promo {
    grid-template-columns: 1fr;
    padding-block: var(--u6);
    padding-inline: calc(var(--mobile-gutter) + var(--u4));
  }

  .article-promo .action {
    width: 100%;
  }

  .related-grid,
  .post-navigation {
    grid-template-columns: 1fr;
  }

  .post-nav-next {
    text-align: start;
  }

  .float-cta {
    right: var(--blog-fab-mobile-right);
    bottom: var(--blog-fab-mobile-bottom);
    max-width: calc(100% - (var(--blog-fab-mobile-right) * 2));
    min-height: var(--tap-size);
    padding-inline: var(--u4);
  }
}

@media (prefers-reduced-motion: reduce) {
  .article-card,
  .related-card,
  .post-nav-card,
  .float-cta,
  .blog-filter-button {
    scroll-behavior: auto;
    transition: none;
  }

  .article-card:hover,
  .related-card:hover,
  .post-nav-card:hover,
  .float-cta:hover {
    transform: none;
  }
}