/* videos_list.html から切り出したスタイル。
   元は <style> タグ 1 個。中身は変更していない。 */

.videos-hgroup { margin-bottom: 1.5rem; }
.videos-hgroup h2 { margin: 0 0 0.25rem; font-size: 1.35rem; }
.videos-hgroup p { margin: 0; color: #6b7280; font-size: 0.9rem; }
/* 月ごとの折りたたみ（details/summary）は 2026-08-27 にやめた。
   開く手間がかかるうえ、Pico が summary に付ける矢印と自前の '▸' が重なって
   記号が二重に見えていた。いまは3ヶ月ぶんを並べてページ送りする。 */
.month-group { margin-bottom: 1.75rem; }
.month-heading {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 1rem; font-weight: 700; color: #1f2937;
  padding: 0.4rem 0; margin: 0 0 0.75rem;
  border-bottom: 2px solid #e5e7eb;
}
/* そのページが扱う期間（例: 2026年5月〜2026年7月） */
.videos-range {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0 0 1rem;
}
.month-count {
  font-size: 0.72rem; font-weight: 600; color: #6b7280;
  background: #f3f4f6; border-radius: 9999px; padding: 0.1rem 0.6rem;
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 1100px) { .content-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .content-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .content-grid { grid-template-columns: 1fr; } }
.content-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
}
.content-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.content-card-thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1a0000, #4a0e0e 40%, #b91c1c);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.content-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.content-card-thumb .ph { color: rgba(255,255,255,0.5); }
.content-card-body { padding: 0.85rem 1rem 1rem; flex: 1; display: flex; flex-direction: column; }
.content-card-title {
  margin: 0 0 0.4rem; font-size: 0.95rem; font-weight: 700; color: #1f2937; line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.content-card-meta { margin-top: auto; font-size: 0.75rem; color: #9ca3af; }
.videos-empty { color: #9ca3af; padding: 3rem 1rem; text-align: center; }
