/* =========================================================
   開源古籍 Kaiyuan Guji · 首頁專屬樣式
   只服務 index.html，公共部分見 assets/css/styles.css
   ========================================================= */

/* 專題板塊右側的裝幀圖 */
.feature-banner-art {
  flex: 0 0 340px;
  max-width: 340px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: color-mix(in srgb, var(--surface-border) 25%, var(--bg-paper));
  box-shadow: var(--shadow-soft);
}

.feature-banner-art img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: sepia(0.15);
}

/* 小螢幕下裝幀圖改為橫幅 */
@media (max-width: 868px) {
  .feature-banner-art {
    flex: 1 1 100%;
    max-width: none;
  }
}
