/* ============================================================
   WORKS page — live channels section (2026-08)
   style.css には手を入れず、works.html 専用の追加スタイル
   ============================================================ */

.works-note {
  font-size: 13px;
  color: var(--color-text-mute);
  margin-top: 20px;
  line-height: 1.9;
}

/* ---------- チャンネルカードのグリッド ---------- */
.ch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 72px 40px;
  margin-top: 64px;
}

.ch-card {
  display: block;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

/* 横動画ヒーロー（16:9・カード上段） */
.ch-hero a {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--color-soft);
  margin-bottom: 10px;
}
.ch-hero a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}
.ch-hero a:hover img { transform: scale(1.03); }

/* サムネ3枚（縦型ショート） */
.ch-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.ch-thumbs a {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: var(--color-soft);
}
.ch-thumbs.ig-ratio a { aspect-ratio: 4 / 5; }
.ch-thumbs.p34 a { aspect-ratio: 3 / 4; }
.ch-thumbs + .ch-thumbs { margin-top: 10px; }
.ch-thumbs a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}
.ch-thumbs a:hover img { transform: scale(1.045); }

/* 再生数バッジ */
.ch-views {
  position: absolute;
  left: 8px;
  bottom: 8px;
  background: rgba(21, 21, 21, 0.82);
  color: #fff;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 5px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

/* 再生アイコン */
.ch-play {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(21, 21, 21, 0.72);
  display: grid;
  place-items: center;
}
.ch-play::after {
  content: "";
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #fff;
  margin-left: 2px;
}

/* チャンネル情報 */
.ch-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.ch-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--color-line);
  flex-shrink: 0;
}
.ch-head .works-title { margin-bottom: 2px; font-size: 16px; line-height: 1.45; }
.ch-stats {
  font-size: 12.5px;
  color: var(--color-text-sub);
  line-height: 1.5;
}
.ch-stats strong {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-text);
  letter-spacing: 0.01em;
}

/* 抽象事例（リンクなしカード） */
.works-page-grid .works-card { cursor: default; }

/* ---------- レスポンシブ ---------- */
@media (max-width: 1024px) {
  .ch-grid { gap: 64px 28px; }
}
@media (max-width: 768px) {
  .ch-grid { grid-template-columns: 1fr; gap: 56px; margin-top: 48px; }
  .ch-thumbs { gap: 8px; }
  .ch-thumbs a { border-radius: 10px; }
}
