/* ==========================================================================
   Shadowrocket 官方下载站 · blog.css
   博客列表页与文章页专属样式。
   颜色 / 字体 / 圆角一律引用 base.css 的 :root 令牌,组件里不写死色值。
   文章页骨架类(.breadcrumbs / .story-hero / .intro-inner / .entry-meta /
   .article-lead / .post-body)在这里只写皮肤;限宽、居中与上下距由面板在
   本文件尾部统一追加。
   ========================================================================== */


/* --------------------------------------------------------------------------
   1. 列表页 Hero
   -------------------------------------------------------------------------- */

.blog-hero {
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -12%;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(closest-side, var(--veil), transparent 72%);
  pointer-events: none;
}

.blog-hero .wrap {
  position: relative;
  z-index: 1;
}

.blog-hero .page-title {
  font-size: clamp(1.75rem, 1.2rem + 1.6vw, 3rem);
  line-height: 1.18;
}

.blog-hero .page-lede {
  color: var(--text-muted);
}


/* --------------------------------------------------------------------------
   2. 标签筛选
   -------------------------------------------------------------------------- */

.filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.tag-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-filter {
  padding: 0.625rem 1.125rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  background: var(--bg-light-panel);
  color: var(--text-on-light-muted);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.tag-filter:hover {
  border-color: var(--accent-dark);
  color: var(--text-on-light);
}

.tag-filter[aria-pressed="true"] {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--bg-light);
}

.tag-filter:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 2px;
}

.post-count {
  margin: 0;
  color: var(--text-on-light-muted);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
}


/* --------------------------------------------------------------------------
   3. 文章卡(列表页)
   -------------------------------------------------------------------------- */

.post-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.post-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--bg-light-panel);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-panel);
  color: var(--text-on-light);
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.post-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-dark);
  box-shadow: var(--shadow-soft);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
  color: var(--text-on-light-muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.post-title {
  margin: 0;
  color: var(--text-on-light);
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1rem + 0.4vw, 1.375rem);
  line-height: 1.42;
}

.post-summary {
  margin: 0;
  color: var(--text-on-light-body);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.post-more {
  margin-top: auto;
  padding-top: 0.25rem;
  color: var(--accent-dark);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
}

.post-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 2rem 1.5rem;
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-panel);
  color: var(--text-on-light-muted);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  text-align: center;
}

.post-noscript {
  margin: 1.5rem 0 0;
  color: var(--text-on-light-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}


/* --------------------------------------------------------------------------
   4. 面包屑
   .breadcrumbs 只写皮肤;下面三组别名兜底也接住 nav.breadcrumb /
   nav.breadcrumbs / .blog-breadcrumb 三种写法,保证任何视口只占一行。
   -------------------------------------------------------------------------- */

.breadcrumbs {
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13px;
}

.breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--accent-soft);
}

.breadcrumbs [aria-current="page"] {
  color: var(--text);
}

.blog-breadcrumb,
nav.breadcrumb,
nav.breadcrumbs {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
  white-space: nowrap;
  overflow: hidden;
}

.blog-breadcrumb a,
nav.breadcrumb a,
nav.breadcrumbs a {
  flex: 0 1 auto;
  min-width: 0;
  overflow: hidden;
  color: var(--text-muted);
  text-decoration: none;
  text-overflow: ellipsis;
}

.blog-breadcrumb a:hover,
nav.breadcrumb a:hover,
nav.breadcrumbs a:hover {
  color: var(--accent-soft);
}

.blog-breadcrumb [aria-current="page"],
nav.breadcrumb [aria-current="page"],
nav.breadcrumbs [aria-current="page"] {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 30ch;
  overflow: hidden;
  color: var(--text);
  text-overflow: ellipsis;
}


/* --------------------------------------------------------------------------
   5. 文章 Hero
   .intro-inner 用 gap 保证 meta → H1 → 导语之间不粘死,与面板追加的
   margin 叠加后仍落在 10~44px 的页头节奏带内。
   -------------------------------------------------------------------------- */

.story-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 88% -20%, var(--veil), transparent 62%),
    linear-gradient(180deg, var(--bg-panel2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--hairline);
  color: var(--text);
}

.intro-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.story-hero h1 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2rem);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: 0.01em;
}

.entry-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.875rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.6;
}

.entry-meta a {
  color: var(--accent-soft);
  text-decoration: none;
}

.entry-meta a:hover {
  text-decoration: underline;
}

.article-lead {
  color: var(--text-muted);
  font-size: clamp(0.9375rem, 0.85rem + 0.45vw, 1.125rem);
  line-height: 1.7;
}


/* --------------------------------------------------------------------------
   6. 正文
   白底阅读列;章节之间用紧凑节奏,不复用首页的营销级节距。
   -------------------------------------------------------------------------- */

.post-body {
  background: var(--bg-light);
  border-radius: var(--radius-panel);
  color: var(--text-on-light-body);
  font-family: var(--font-body);
}

.post-body h2 {
  margin: 2.25rem 0 0.75rem;
  color: var(--text-on-light);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
  line-height: 1.35;
}

.post-body h3 {
  margin: 1.75rem 0 0.5rem;
  color: var(--text-on-light);
  font-family: var(--font-display);
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.25rem);
  line-height: 1.4;
}

.post-body > h2:first-child,
.post-body > section > h2:first-child {
  margin-top: 0;
}

.post-body p {
  margin: 0 0 1rem;
}

/* 白底正文面板里的 strong 用白底令牌,避免继承深底 --text 变成近白字 */
.post-body strong {
  color: var(--text-on-light);
}

/* 步骤组件默认用深底令牌 --text-muted,白底正文列里换成白底正文色 */
.post-body .step-body {
  color: var(--text-on-light-body);
}

.post-body .steps > li::before {
  background-color: #eaf3fb;
  border-color: #cfe2f3;
  color: var(--accent-dark);
}

.post-body > section {
  margin: 0;
  padding: 0;
}

.post-body > section + section {
  margin-top: 2.25rem;
}

.post-body img {
  max-width: 100%;
  height: auto;
}

.post-body a:not([class*="btn"]):not([class*="button"]),
.prose:not(.prose--dark) a:not([class*="btn"]):not([class*="button"]) {
  color: var(--accent-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.post-body a:not([class*="btn"]):not([class*="button"]):hover,
.prose:not(.prose--dark) a:not([class*="btn"]):not([class*="button"]):hover {
  color: var(--text-on-light);
}


/* --------------------------------------------------------------------------
   7. 文末:引导卡 + 延伸阅读 + 上一篇 / 下一篇
   引导卡皮肤由 components.css 提供,这里只补文章页的上下距。
   -------------------------------------------------------------------------- */

.store-cta-card {
  margin-top: 2.75rem;
}

#related-posts,
#post-nav {
  max-width: 820px;
  margin: 2.5rem auto 0;
  padding: 1.75rem;
  background: var(--bg-light-panel);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-panel);
  color: var(--text-on-light);
}

#related-posts:empty,
#post-nav:empty {
  display: none;
}

#post-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 1rem;
}

.tail-title {
  margin: 0 0 1rem;
  color: var(--text-on-light);
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1rem + 0.4vw, 1.375rem);
  line-height: 1.35;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 1rem;
  max-width: 820px;
}

.related-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.125rem 1.25rem;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-btn);
  color: var(--text-on-light);
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.related-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-dark);
  box-shadow: var(--shadow-soft);
}

.related-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-on-light-muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.related-title {
  margin: 0;
  color: var(--text-on-light);
  font-family: var(--font-display);
  font-size: 1.0625rem;
  line-height: 1.45;
}

.post-nav-card {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 1.125rem 1.25rem;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-btn);
  color: var(--text-on-light);
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.post-nav-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-dark);
  box-shadow: var(--shadow-soft);
}

.post-nav-dir {
  color: var(--text-on-light-muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.post-nav-title {
  color: var(--text-on-light);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.45;
}


/* --------------------------------------------------------------------------
   8. 窄屏与动效偏好
   -------------------------------------------------------------------------- */

@media (max-width: 820px) {
  .post-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .filter-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  #related-posts,
  #post-nav {
    padding: 1.25rem;
  }
}

@media (max-width: 560px) {
  .post-card {
    padding: 1.25rem;
  }

  .tag-filter {
    padding: 0.5rem 0.875rem;
  }

  .blog-hero::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .post-card,
  .related-card,
  .post-nav-card,
  .tag-filter {
    transition: none;
  }

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

/* ═══ blog-components v1(2026-08-18 面板统一追加,勿手改;色调全部 color-mix 吃站点令牌,
   明暗主题自适应)——文章富文本组件词汇表,写作端只填内容不写样式 ═══ */
.item-summary, .item-stats, .item-steps, .item-compare, .item-faq, .item-errors,
.item-config, .item-scheme, .item-insight, .item-flow { margin: 1.25rem 0; }

/* 色调系统:a=品牌主色 b=品牌强调色 c=青 d=琥珀 e=玫红(低饱和淡染,任何主题都压得住) */
[data-tone="a"], .item-tone-a { --item-tone: var(--color-primary, #4f7cff); }
[data-tone="b"], .item-tone-b { --item-tone: var(--color-accent, var(--color-primary, #7c5cff)); }
[data-tone="c"], .item-tone-c { --item-tone: #0e9f8a; }
[data-tone="d"], .item-tone-d { --item-tone: #d97706; }
[data-tone="e"], .item-tone-e { --item-tone: #e11d48; }

/* 本文速览卡 */
.item-summary {
  border: 1px solid color-mix(in srgb, var(--color-primary, #4f7cff) 28%, transparent);
  background: color-mix(in srgb, var(--color-primary, #4f7cff) 7%, transparent);
  border-radius: 12px;
  padding: 0.875rem 1.125rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}
.item-summary strong { display: block; font-size: 0.8125rem; letter-spacing: 0.02em; opacity: 0.75; margin-bottom: 0.25rem; }
.item-summary p { margin: 0; font-size: inherit !important; }

/* 数据瓦片行 */
.item-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.75rem; }
.item-stats[data-cols="2"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.item-stats[data-cols="4"] { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.item-stat {
  --item-tone: var(--color-primary, #4f7cff);
  text-align: center;
  padding: 0.75rem 0.5rem;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--item-tone) 26%, transparent);
  background: color-mix(in srgb, var(--item-tone) 7%, transparent);
}
.item-stat__num { font-size: 1.375rem; font-weight: 800; line-height: 1.2; color: color-mix(in srgb, var(--item-tone) 62%, var(--color-text, currentColor)); }
.item-stat__label { font-size: 0.75rem; opacity: 0.72; margin-top: 0.125rem; line-height: 1.45; }

/* 编号步骤卡 */
.item-steps { list-style: none; counter-reset: bcstep; padding: 0; display: grid; gap: 0.75rem; }
.item-step {
  counter-increment: bcstep;
  position: relative;
  padding: 0.875rem 1rem 0.875rem 3.25rem;
  border: 1px solid color-mix(in srgb, var(--color-text, #888) 14%, transparent);
  border-radius: 12px;
  background: color-mix(in srgb, var(--color-text, #888) 3%, transparent);
}
.item-step::before {
  content: counter(bcstep);
  position: absolute; left: 0.875rem; top: 0.875rem;
  width: 1.75rem; height: 1.75rem; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.875rem; font-weight: 700;
  background: var(--color-primary, #4f7cff);
  color: var(--color-bg, var(--color-canvas, #fff));
}
.item-step h4 { margin: 0 0 0.25rem; font-size: 0.9375rem !important; line-height: 1.5; }
.item-step p { margin: 0; font-size: 0.875rem; line-height: 1.65; opacity: 0.88; }

/* 对比卡组 */
.item-compare { display: grid; gap: 0.75rem; }
.item-compare__item {
  border: 1px solid color-mix(in srgb, var(--color-text, #888) 14%, transparent);
  border-radius: 12px;
  padding: 0.875rem 1rem;
  background: color-mix(in srgb, var(--color-text, #888) 3%, transparent);
}
.item-compare__item.is-best {
  border: 2px solid color-mix(in srgb, var(--color-primary, #4f7cff) 55%, transparent);
  background: color-mix(in srgb, var(--color-primary, #4f7cff) 6%, transparent);
}
.item-compare__item > header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.375rem; }
.item-compare__item h4 { margin: 0; font-size: 0.9375rem !important; line-height: 1.5; }
.item-compare__tag {
  font-size: 0.6875rem; font-weight: 700; line-height: 1;
  padding: 0.25rem 0.5rem; border-radius: 999px;
  background: var(--color-primary, #4f7cff);
  color: var(--color-bg, var(--color-canvas, #fff));
}
.item-compare__item p { margin: 0 0 0.375rem; font-size: 0.875rem; line-height: 1.65; opacity: 0.88; }
.item-compare__scene {
  font-size: 0.8125rem !important; opacity: 1 !important;
  padding: 0.375rem 0.625rem; border-radius: 8px; margin: 0 !important;
  background: color-mix(in srgb, var(--color-primary, #4f7cff) 9%, transparent);
}

/* 问答彩卡 */
.item-faq { display: grid; gap: 0.75rem; }
.item-faq__item {
  --item-tone: var(--color-primary, #4f7cff);
  border: 1px solid color-mix(in srgb, var(--item-tone) 26%, transparent);
  background: color-mix(in srgb, var(--item-tone) 6%, transparent);
  border-radius: 12px;
  padding: 0.875rem 1rem;
}
.item-faq__item h4 { margin: 0 0 0.3125rem; font-size: 0.9375rem !important; line-height: 1.5; }
.item-faq__item h4::before { content: "Q "; font-weight: 800; color: color-mix(in srgb, var(--item-tone) 62%, var(--color-text, currentColor)); }
.item-faq__item p { margin: 0; font-size: 0.875rem; line-height: 1.65; opacity: 0.88; }

/* 报错排查卡 */
.item-errors { display: grid; gap: 0.75rem; }
.item-error {
  border: 1px solid color-mix(in srgb, #e11d48 22%, transparent);
  border-left: 4px solid color-mix(in srgb, #e11d48 62%, transparent);
  border-radius: 10px;
  padding: 0.875rem 1rem;
  background: color-mix(in srgb, #e11d48 5%, transparent);
}
.item-error h4 {
  margin: 0 0 0.3125rem; font-size: 0.875rem !important; line-height: 1.5;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.item-error p { margin: 0; font-size: 0.875rem; line-height: 1.65; opacity: 0.88; }

/* 键值配置卡 */
.item-config { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; }
.item-config__card {
  --item-tone: var(--color-primary, #4f7cff);
  border: 1px solid color-mix(in srgb, var(--item-tone) 26%, transparent);
  background: color-mix(in srgb, var(--item-tone) 6%, transparent);
  border-radius: 12px;
  padding: 0.875rem 1rem;
}
.item-config__card h4 { margin: 0 0 0.5rem; font-size: 0.9375rem !important; line-height: 1.5; color: color-mix(in srgb, var(--item-tone) 58%, var(--color-text, currentColor)); }
.item-config__card dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 0.25rem 0.75rem; font-size: 0.8125rem; line-height: 1.6; }
.item-config__card dt { font-weight: 600; opacity: 0.7; }
.item-config__card dd { margin: 0; }
.item-config__note {
  margin: 0.625rem 0 0 !important; padding: 0.375rem 0.625rem; border-radius: 8px;
  font-size: 0.75rem !important; line-height: 1.55;
  background: color-mix(in srgb, var(--item-tone) 11%, transparent);
}

/* 双栏方案面板 */
.item-scheme {
  border: 1px solid color-mix(in srgb, var(--color-primary, #4f7cff) 24%, transparent);
  background: color-mix(in srgb, var(--color-primary, #4f7cff) 4%, transparent);
  border-radius: 14px;
  padding: 1rem 1.125rem;
}
.item-scheme__title { margin: 0 0 0.75rem; font-size: 1rem !important; line-height: 1.5; }
.item-scheme__cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.item-scheme__col h5 { margin: 0 0 0.375rem; font-size: 0.875rem; line-height: 1.5; opacity: 0.92; }
.item-scheme__col ul { margin: 0; padding-left: 1.125rem; font-size: 0.875rem; line-height: 1.7; }
.item-scheme__note {
  margin: 0.875rem 0 0 !important; padding: 0.5rem 0.75rem; border-radius: 8px;
  font-size: 0.8125rem !important; line-height: 1.6;
  background: color-mix(in srgb, var(--color-primary, #4f7cff) 10%, transparent);
}

/* 洞察结论卡 */
.item-insight {
  border: 1px solid color-mix(in srgb, #0e9f8a 30%, transparent);
  background: linear-gradient(135deg,
    color-mix(in srgb, #0e9f8a 8%, transparent),
    color-mix(in srgb, var(--color-primary, #4f7cff) 7%, transparent));
  border-radius: 12px;
  padding: 0.875rem 1.125rem;
}
.item-insight h4 { margin: 0 0 0.25rem; font-size: 0.9375rem !important; line-height: 1.5; }
.item-insight h4::before { content: "💡 "; }
.item-insight p { margin: 0; font-size: 0.875rem; line-height: 1.68; opacity: 0.9; }

/* 流程链 */
.item-flow { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; }
.item-flow span {
  font-size: 0.8125rem; line-height: 1.5;
  padding: 0.375rem 0.75rem; border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--color-primary, #4f7cff) 30%, transparent);
  background: color-mix(in srgb, var(--color-primary, #4f7cff) 7%, transparent);
}
.item-flow span:not(:last-child)::after {
  content: "→";
  margin-left: 0.5rem; margin-right: -0.25rem;
  opacity: 0.45;
}

@media (max-width: 720px) {
  .item-stats, .item-stats[data-cols="4"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .item-config, .item-scheme__cols { grid-template-columns: 1fr; }
}

/* ═══ article-shell v1(面板统一追加,勿手改;文章页骨架几何——限宽/对齐/节奏由此钉死,
   上方站点自有样式只负责这些类的皮肤:颜色/字体/背景/边框 ═══ */
.breadcrumbs, nav.breadcrumb, nav.breadcrumbs {
  max-width: 660px; margin-inline: auto; padding-inline: clamp(16px, 4vw, 24px);
  display: flex; align-items: center; gap: 0.5rem;
  white-space: nowrap; overflow: hidden;
  font-size: 13px; line-height: 1.5;
  margin-top: 1.5rem; margin-bottom: 1.25rem;
}
.breadcrumbs a, nav.breadcrumb a, nav.breadcrumbs a { text-decoration: none; color: inherit; opacity: 0.62; }
.breadcrumbs a:hover, nav.breadcrumb a:hover, nav.breadcrumbs a:hover { opacity: 1; }
.breadcrumbs [aria-hidden], nav.breadcrumb [aria-hidden], nav.breadcrumbs [aria-hidden] { opacity: 0.35; }
.breadcrumbs [aria-current="page"], nav.breadcrumb [aria-current="page"], nav.breadcrumbs [aria-current="page"] {
  max-width: 30ch; overflow: hidden; text-overflow: ellipsis; flex: 0 1 auto; min-width: 0; opacity: 0.85;
}
.story-hero { padding-block: 0.75rem 1.75rem; }
.intro-inner { max-width: 660px; margin-inline: auto; padding-inline: clamp(16px, 4vw, 24px); }
.entry-meta { margin: 0 0 1.1rem; font-size: 13px; line-height: 1.6; opacity: 0.72; }
.intro-inner h1 { margin: 0; max-width: 100%; line-height: 1.28; font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2rem); }
.article-lead { margin: 1.2rem 0 0; font-size: clamp(0.9375rem, 0.85rem + 0.45vw, 1.125rem); line-height: 1.7; opacity: 0.82; }
.post-body { max-width: 660px; margin-inline: auto; padding-inline: clamp(16px, 4vw, 24px); padding-block: 0.25rem 3rem; }
.post-body > h2:first-of-type { margin-top: 0; }
