/**********************************************
* Category119 – オンデマンド配信 アーカイブ一覧
* 専用スタイル（独立CSS）
**********************************************/

/* 全体 */
.sa119-section-title {
  font-size: 28px;
  font-weight: 700;
  margin: 40px 0 20px;
  text-align: left;
  color: #252f41;
}

/* カード一覧の UL */
.sa119-cards {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* カード 1枚 */
.sa119-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease;
}

.sa119-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* サムネイル */
.sa119-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

/* テキスト領域 */
.sa119-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* 視聴時間 */
.sa119-meta {
  font-size: 14px;
  color: #666;
  margin-bottom: 6px;
}

/* タグ一覧 */
.sa119-tags {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sa119-tag {
  font-size: 12px;
  padding: 3px 8px;
  background: #eef5ff;
  border-radius: 4px;
  color: #333;
}

/* タイトル */
.sa119-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin: 8px 0 10px;
  color: #252f41;
}

/* 主催者 */
.sa119-organizer {
  font-size: 13px;
  color: #555;
  margin: 0 0 16px;
}

/* ボタン部分 */
.sa119-btn-wrap {
  margin-top: auto;
  text-align: left;
}

.sa119-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  background: #ff8800;
  padding: 10px 18px;
  border-radius: 6px;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  transition: background 0.2s ease;
}

.sa119-btn:hover {
  background: #ff9900;
}

.sa119-btn span {
  font-size: 12px;
  margin-left: 4px;
}

/* スマホ表示 */
@media (max-width: 1024px) {
  .sa119-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .sa119-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/* 一覧全体の横幅を制限（中央寄せ） */
.sa119-archive-wrap {
  max-width: 1120px;  /* お好みで 1040〜1200px の間で調整可 */
  margin: 40px auto 60px;
  padding: 0 16px;
}

/* 3カラムグリッド（PC）、2カラム/1カラムは既存のままでOK */
.sa119-cards {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
