/**
 * AIトレンド記事スタイル
 *
 * - CTA セクション
 * - 本文スタイル（.ai-trend-content）
 * - 関連度バッジ
 * - レスポンシブ対応
 */

/* === AIトレンド記事 CTA === */
.ai-trend-cta {
  display: block;
  background: var(--color-bg-light, #ecf0f5);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  margin-top: 48px;
}
.ai-trend-cta__title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text, #202832);
  margin-bottom: 16px;
  line-height: 1.6;
}
.ai-trend-cta__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-width: 280px;
  height: 56px;
  padding: 0 36px;
  background: #e07830;
  color: #fff !important;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none !important;
  border-bottom: 4px solid #c0632a;
  box-shadow: none;
  transition: transform 0.2s;
}
.ai-trend-cta__button::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.ai-trend-cta__button:hover {
  transform: translateY(-1px);
}

/* === アーカイブページ === */
#ai-trend .ai-trend-relevance {
  margin-bottom: 10px;
}
#ai-trend .pagenavi {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  #ai-trend .pagenavi {
    margin-top: 30px;
  }
}

/* === 本文スタイル === */
.ai-trend-content h2 { font-size: 24px; color: #1A2B3C; margin: 48px 0 24px; padding-bottom: 12px; border-bottom: 2px solid #6689A4; }
.ai-trend-content h3 { font-size: 20px; color: #1A2B3C; margin: 36px 0 20px; }
.ai-trend-content p { margin-bottom: 1.5em; line-height: 1.9; }
.ai-trend-content a { color: #6689A4; text-decoration: none; border-bottom: 1px solid #6689A4; }
.ai-trend-content a:hover { opacity: 0.8; }
.ai-trend-content ul, .ai-trend-content ol { margin: 1.5em 0; padding-left: 1.5em; }
.ai-trend-content li { margin-bottom: 0.8em; }
.ai-trend-content blockquote { border-left: 4px solid #6689A4; margin: 2em 0; padding: 1em 1.5em; background: #f8f9fa; font-style: italic; }

/* === 関連度バッジ === */
.ai-trend-relevance { display: inline-block; padding: 4px 12px; border-radius: 4px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.ai-trend-relevance--now { background: #d4edda; color: #155724; }
.ai-trend-relevance--soon { background: #fff3cd; color: #856404; }
.ai-trend-relevance--later { background: #f8d7da; color: #721c24; }

/* === レスポンシブ === */
@media (max-width: 768px) {
  .ai-trend-cta { padding: 20px 16px; }
  .ai-trend-cta__button { min-width: 0; width: 100%; box-sizing: border-box; height: 52px; font-size: 15px; }
  .ai-trend-content h2 { font-size: 20px; margin: 32px 0 16px; }
  .ai-trend-content h3 { font-size: 18px; }
}