/* 威爾雜筆自訂樣式（載入順序在主題 CSS 之後，見 hugo.toml 的 custom_css） */

/* 文章封面：漸層遮罩＋文字陰影，讓白字在亮色照片上也讀得清楚（2026-09 方案 A） */
header.intro-header.post-cover { position: relative; }
header.intro-header.post-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.25) 45%, rgba(0,0,0,.65) 100%);
  pointer-events: none;
}
header.intro-header.post-cover > .container { position: relative; }
header.intro-header.post-cover .post-heading h1,
header.intro-header.post-cover .post-heading .subheading,
header.intro-header.post-cover .post-heading .meta { text-shadow: 0 2px 12px rgba(0,0,0,.45); }

/* 搜尋頁（Pagefind UI） */
#search { margin: 10px 0 40px; --pagefind-ui-scale: .9; --pagefind-ui-primary: #0085a1; --pagefind-ui-font: inherit; }
#search .pagefind-ui__result-link { color: #404040; }
#search mark { background: #d7eef3; color: inherit; }
