/* =========================================================
   Productions 一覧ページ用スタイル
   - ヒーロー
   - グリッドレイアウト
   - カード微調整（既存の product-card を再利用）
   ========================================================= */

body{
  background: var(--bg, #f5f5f6);
}

.list-hero{
  padding: clamp(28px, 6vw, 44px) 0 clamp(12px, 4vw, 22px);
  border-bottom: 1px solid var(--line, #e3e6ea);
  background: linear-gradient(180deg, #ffffff, #f6f6f8);
}
.list-hero .breadcrumbs{
  margin: 0 0 6px;
  color: var(--muted, #5c6068);
  font-weight: 700;
  font-size: 0.95rem;
}
.list-hero .breadcrumbs a{
  color: inherit;
  text-decoration: none;
}
.list-hero .breadcrumbs a:hover{ text-decoration: underline; }
.list-hero .title{
  margin: 0 0 6px;
  font-weight: 900;
  font-size: clamp(26px, 4vw, 36px);
  letter-spacing: .01em;
  color: var(--brand, #cc0000);
}
.list-hero .lede{
  margin: 0;
  color: var(--muted, #5c6068);
  font-weight: 700;
}

.prod-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 360px)); /* 固定幅のカードを並べる */
  grid-auto-rows: 1fr; /* 各カードを同じ高さに伸ばす */
  gap: clamp(16px, 3vw, 24px);
  align-items: stretch;
  padding: clamp(18px, 4vw, 28px) 0 clamp(28px, 5vw, 36px);
  justify-content: flex-start; /* 左揃え */
}
.prod-grid > *{
  height: 100%;
}

.year-groups{
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 4vw, 32px);
}
.year-section{
  border-top: 1px solid var(--line, #e3e6ea);
  padding-top: clamp(12px, 3vw, 18px);
}
.year-title{
  margin: 0 0 8px;
  font-weight: 900;
  font-size: clamp(18px, 3vw, 22px);
  letter-spacing: .01em;
  color: var(--text, #161616);
}

/* カードを一覧用に少しコンパクトに */
.product-card.product-card--list{
  min-height: auto;
  height: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-1, 0 12px 30px rgba(0,0,0,.1));
}
.product-card--list .product-media{
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.product-card--list .product-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-card--list .product-body{
  gap: 8px;
  padding: 14px 14px 16px;
}
.product-card--list .product-desc{
  color: #2d323a;
  -webkit-line-clamp: 4;
}
.product-card--list .tags{
  margin-top: 6px;
}
.product-card--list .actions{
  margin-top: auto;
  gap: 10px;
}
.product-card--list .btn{
  min-height: auto;
  padding: .85rem 1.2rem;
  border-radius: 14px;
}

.empty-msg{
  margin: clamp(12px, 3vw, 18px) 0;
  color: var(--muted, #5c6068);
  font-weight: 700;
}
