/* ==========================================================================
   USEN推しリク 投票データ統計分析レポート - スタイルシート
   設計方針: 過度な装飾を控え、読みやすさと信頼感を最優先したレポート風デザイン
   ========================================================================== */

/* 1. 設計システム（デザインシステム変数） */
:root {
  /* 配色: 深いネイビー、スチールブルー、ソフトグレーをベースにした知的で控えめなトーン */
  --primary-color: hsl(215, 60%, 20%);      /* 深いネイビー（主要な見出し・信頼の表現） */
  --secondary-color: hsl(215, 20%, 40%);    /* スチールブルー（サブ情報・罫線） */
  --accent-color: hsl(25, 75%, 40%);        /* 警告・注目用の落ち着いたアンバー（オレンジ） */
  
  --bg-color: hsl(210, 20%, 97%);           /* 目が疲れにくい、柔らかなオフホワイト */
  --surface-color: hsl(0, 0%, 100%);        /* 白（コンテンツカード用） */
  --border-color: hsl(214, 24%, 88%);       /* 非常に静かな薄グレー（枠線用） */
  
  --text-primary: hsl(215, 28%, 15%);       /* 読みやすい濃いチャコールグレー */
  --text-secondary: hsl(215, 12%, 42%);     /* 補足・日付などのサブテキスト */
  
  /* 警告/注意専用の配色（目を引くが、彩度を抑えてギラつかせない） */
  --warn-bg: hsl(35, 100%, 97%);
  --warn-border: hsl(35, 70%, 82%);
  --warn-text: hsl(30, 75%, 28%);

  /* ボックス要素のシャドウとボーダー */
  --border-subtle: 1px solid var(--border-color);
  --shadow-flat: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 4px 16px rgba(180, 190, 205, 0.12);

  /* 余白と角丸 */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;
}

/* 2. グローバル・リセットとベーススタイル */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  /* システムUIフォントを優先し、外部への接続要求（CDN）を完全にゼロ化するセキュアなフォント設計 */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 2.0;
  letter-spacing: 0.03em;
  padding-bottom: 60px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

/* 3. レイアウトと共通コンテナ */
.container {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 20px;
}

.grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 20px;
}

@media (min-width: 850px) {
  .grid-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.section-block {
  margin: 50px 0;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
  border-left: 4px solid var(--primary-color);
  padding-left: 12px;
}

.section-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

/* 4. ヘッダーデザイン */
.site-header {
  background-color: var(--surface-color);
  border-bottom: var(--border-subtle);
  padding: 35px 0;
  margin-bottom: 40px;
}

.header-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (min-width: 768px) {
  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.header-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.header-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  background-color: var(--bg-color);
  color: var(--secondary-color);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

#header-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.3;
}

.header-date {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* 5. カードコンポーネント（レポート用紙調） */
.card {
  background-color: var(--surface-color);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 30px;
  margin-bottom: 30px;
}

.card-header {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.card-subtitle {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color);
}

.card-body {
  font-size: 0.95rem;
}

.card-text {
  margin-bottom: 20px;
  color: var(--text-primary);
}

/* 免責事項・警告カード専用（Muted Amber） */
.card-warning {
  background-color: var(--warn-bg);
  border: 1px solid var(--warn-border);
  box-shadow: var(--shadow-flat);
}

.alert-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--warn-text);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.alert-title::before {
  content: "⚠️";
}

.alert-content {
  font-size: 0.9rem;
  color: var(--warn-text);
}

.alert-content ul {
  margin-top: 10px;
  margin-left: 20px;
}

.alert-content li {
  margin-bottom: 10px;
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  background-color: var(--bg-color);
  color: var(--primary-color);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  border: var(--border-subtle);
}

/* 運営公式コメント引用部分 */
.official-quote {
  background-color: var(--bg-color);
  border-left: 4px solid var(--secondary-color);
  padding: 20px;
  margin: 20px 0;
  font-style: normal;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.official-quote p {
  color: hsl(215, 25%, 25%);
  font-weight: 500;
}

.text-muted {
  color: var(--text-secondary);
}

.text-small {
  font-size: 0.8rem;
}

/* 6. タブ切り替えUI */
.tabs-container {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 25px;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox用 */
}

.tabs-container::-webkit-scrollbar {
  display: none; /* Chrome/Safari用 */
}

.tab-btn {
  background: none;
  border: none;
  padding: 12px 18px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-bottom-color 0.2s ease;
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--primary-color);
}

.tab-btn.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
  font-weight: 700;
}

.tab-panels {
  background-color: var(--bg-color);
  padding: 25px;
  border-radius: var(--radius-md);
  border: var(--border-subtle);
}

.tab-panel h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.tab-panel p {
  font-size: 0.9rem;
  color: var(--text-primary);
}

.tab-panel[hidden] {
  display: none;
}

/* 7. 統計グラフ・検証画像表示領域 */
.chart-image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px auto;
  padding: 12px;
  min-width: 0;
  background-color: var(--surface-color);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-flat);
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.chart-image {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.chart-image-caption {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 10px;
  text-align: center;
}

.chart-wrapper {
  background-color: hsl(210, 20%, 99%);
  border: var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 15px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0;
  position: relative;
}


/* SVGスタイル用の定義（JSから呼び出し・制御） */
.chart-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.axis-line {
  stroke: hsl(215, 15%, 80%);
  stroke-width: 1;
}

.grid-line {
  stroke: hsl(215, 20%, 93%);
  stroke-width: 1;
  stroke-dasharray: 2 2;
}

.axis-label {
  fill: var(--text-secondary);
  font-size: 10px;
  font-family: inherit;
}

/* グラフ線とプロット */
.path-theoretical {
  stroke: var(--secondary-color);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 4 3; /* 点線にして「理論上のなだらかな分布」を表現 */
}

.path-observed {
  stroke: var(--primary-color);
  stroke-width: 2.5;
  fill: none;
}

.observed-point {
  fill: var(--primary-color);
  stroke: var(--surface-color);
  stroke-width: 1;
}

.bar-observed {
  fill: hsl(215, 50%, 65%);
  opacity: 0.65;
  transition: opacity 0.2s ease;
}

.bar-observed:hover {
  opacity: 0.9;
}

/* グラフの凡例 */
.chart-legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 0.8rem;
  margin-top: 10px;
  color: var(--text-secondary);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.legend-color {
  display: inline-block;
  width: 14px;
  height: 8px;
  border-radius: 2px;
}

.legend-normal {
  background-color: var(--secondary-color);
  border: 1px dashed var(--secondary-color);
}

.legend-observed {
  background-color: hsl(215, 50%, 65%);
}

.legend-observed-line {
  background-color: var(--primary-color);
  height: 2px;
  width: 16px;
}

/* インタラクティブなツールチップ */
.chart-tooltip {
  position: absolute;
  background-color: var(--primary-color);
  color: var(--surface-color);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

/* 8. フッター */
.site-footer {
  border-top: var(--border-subtle);
  background-color: var(--surface-color);
  padding: 40px 0;
  margin-top: 60px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-note {
  font-size: 0.78rem;
}

/* 9. ユーティリティ & 経緯セクション用スタイル (見やすさ最優先のシンプル設計) */
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }

.note-box {
  background-color: hsl(210, 20%, 96%);
  border: var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 15px;
  margin: 15px 0;
  color: var(--text-primary);
  line-height: 1.6;
}

.info-block {
  margin: 15px 0;
}

.list-bulleted, .list-checked {
  margin-left: 20px;
  margin-bottom: 15px;
}

.list-bulleted li {
  list-style-type: square;
  margin-bottom: 12px;
}

.list-checked li {
  list-style-type: none;
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
}

.list-checked li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

/* ==========================================================================
   8. チャットタイムライン表示用スタイル
   ========================================================================== */
.chat-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px 0;
  padding: 20px;
  background-color: hsl(210, 20%, 98%);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  max-height: 600px;
  overflow-y: auto;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.chat-message {
  display: flex;
  flex-direction: column;
  max-width: 85%;
}

.chat-message.sender-whistleblower {
  align-self: flex-end;
}

.chat-message.sender-unext {
  align-self: flex-start;
}

.chat-meta {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
}

.chat-message.sender-whistleblower .chat-meta {
  justify-content: flex-end;
  text-align: right;
}

.chat-message.sender-unext .chat-meta {
  justify-content: flex-start;
  text-align: left;
}

.chat-bubble {
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.6;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.chat-message.sender-whistleblower .chat-bubble {
  background-color: var(--primary-color);
  color: white;
  border-top-right-radius: 4px;
}

.chat-message.sender-unext .chat-bubble {
  background-color: hsl(210, 15%, 92%);
  color: var(--text-primary);
  border-top-left-radius: 4px;
  border: 1px solid hsl(210, 15%, 86%);
}

.chat-bubble p {
  margin: 0 0 8px 0;
}

.chat-bubble p:last-child {
  margin-bottom: 0;
}

.chat-bubble strong {
  color: inherit;
  font-weight: 700;
}

.chat-bubble .badge-reply {
  display: inline-block;
  padding: 2px 6px;
  background-color: rgba(0, 0, 0, 0.1);
  color: inherit;
  border-radius: 4px;
  font-size: 0.75rem;
  margin-bottom: 8px;
  font-weight: bold;
}

.chat-bubble ul {
  margin: 8px 0 8px 20px;
  padding: 0;
}

.chat-bubble li {
  margin-bottom: 10px;
  list-style-type: disc;
}

@media (max-width: 768px) {
  .chat-message {
    max-width: 95%;
  }
}

/* チャットバブル内の権利配慮に伴うマスク部分の注記 */
.chat-bubble-note {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.chat-message.sender-whistleblower .chat-bubble-note {
  border-top: 1px dashed rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   9. アコーディオン風の検証画像展開パネル
   ========================================================================== */
.proof-details {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background-color: hsl(210, 20%, 98%);
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.proof-details[open] {
  background-color: var(--surface-color);
  border-color: var(--secondary-color);
}

.proof-summary {
  list-style: none; /* デフォルトの三角形を消す */
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  background-color: hsl(210, 15%, 95%);
  transition: background-color 0.2s ease;
}

.proof-summary::-webkit-details-marker {
  display: none; /* Safari用の三角形を消す */
}

.proof-summary:hover {
  background-color: hsl(210, 15%, 92%);
}

.proof-summary-icon {
  font-size: 1.2rem;
  font-weight: normal;
  transition: transform 0.3s ease;
}

.proof-details[open] .proof-summary {
  border-bottom: 1px solid var(--border-color);
  background-color: var(--surface-color);
}

.proof-details[open] .proof-summary-icon {
  transform: rotate(45deg);
  color: var(--accent-color);
}

.proof-content {
  padding: 20px;
}

/* ==========================================================================
   10. レポート風データテーブル (補正期間・倍率一覧用)
   ========================================================================== */
.table-container {
  width: 100%;
  overflow-x: auto;
  margin: 15px 0 25px 0;
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  background-color: var(--surface-color);
  box-shadow: var(--shadow-flat);
}

.report-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.report-table th, 
.report-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  vertical-align: middle;
}

.report-table th:last-child,
.report-table td:last-child {
  border-right: none;
}

.report-table tr:last-child td {
  border-bottom: none;
}

.report-table th {
  background-color: hsl(215, 30%, 95%);
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.report-table tr:hover td {
  background-color: hsl(210, 20%, 99%);
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.font-bold {
  font-weight: 700;
}

.text-accent {
  color: var(--accent-color);
}

.text-accent-cool {
  color: hsl(200, 55%, 40%);
}

.text-xs {
  font-size: 0.75rem;
  display: block;
  margin-top: 2px;
}

.badge-subtle {
  background-color: hsl(210, 15%, 92%);
  color: var(--text-secondary);
  border: none;
  font-weight: 500;
  font-size: 0.7rem;
  padding: 1px 5px;
  border-radius: 3px;
  display: inline-block;
  margin-left: 5px;
}





img {
  max-width: 100% !important;
  height: auto !important;
  box-sizing: border-box;
}

.chart-image {
  max-width: 100% !important;
  height: auto !important;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.chart-image-container img {
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* モバイル向け最適化：スマホの幅いっぱいに画像と文字を表示 */

@media (max-width: 768px) {
  .container {
    padding: 0 4px;
    max-width: 100vw;
    overflow: hidden;
  }
  .header-container {
    max-width: 100%;
    padding: 0 10px;
  }
  .site-header {
    padding: 15px 0;
    margin-bottom: 10px;
    overflow: hidden;
  }
  #header-title {
    font-size: 1.3rem;
  }
  .card {
    padding: 8px 10px;
    margin-bottom: 8px;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
    box-shadow: none;
    border-left: none;
    border-right: none;
    max-width: 100vw;
    overflow: hidden;
  }
  .card-header {
    padding-bottom: 6px;
    margin-bottom: 8px;
  }
  .card-body {
    padding: 0;
    max-width: 100%;
    overflow: hidden;
  }
  .alert-content {
    max-width: 100%;
    overflow: hidden;
  }
  .chart-image-container {
    padding: 0;
    margin: 6px 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    max-width: 100%;
    overflow: hidden;
  }
  .chart-image {
    border-radius: 0;
    border: none;
    width: 100%;
    max-width: 100%;
  }
  img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }
  .table-container {
    margin: 6px 0;
    overflow-x: auto;
    max-width: 100%;
  }
  .report-table th, .report-table td {
    padding: 4px 3px;
    font-size: 0.8rem;
  }
  .chart-image-caption {
    font-size: 0.75rem;
    padding: 0 4px;
  }
  .section-block {
    margin: 20px 0;
    overflow: hidden;
  }
  .section-title {
    font-size: 1.2rem;
  }
  .card-title {
    font-size: 1.05rem;
  }
}

/* 読みやすさ向上用の余白追加 */
p {
  margin-bottom: 1.5em;
}
p:last-child {
  margin-bottom: 0;
}
ul, ol {
  margin-bottom: 1.5em;
  padding-left: 1.5em;
}
li {
  margin-bottom: 0.8em;
}
h2, h3, h4 {
  margin-top: 1.5em;
  margin-bottom: 0.8em;
}

/* ==========================================================================
   11. アクセスカウンター (スタイリッシュ・カプセルUI)
   ========================================================================== */
.pv-counter-container {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-color);
  padding: 6px 18px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-flat);
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.pv-counter-container:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 4px 12px rgba(180, 190, 205, 0.25);
  transform: translateY(-1px);
}

.pv-counter-icon {
  font-size: 0.95rem;
  color: var(--secondary-color);
  display: inline-flex;
  align-items: center;
  animation: pulse-slow 3s infinite ease-in-out;
}

.pv-counter-count {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

@keyframes pulse-slow {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* ==========================================================================
   12. エグゼクティブサマリー (SNSスクショ・プレミアムカードUI)
   ========================================================================== */
.summary-card {
  border-left: 6px solid var(--primary-color);
  background: linear-gradient(135deg, hsl(210, 20%, 99%) 0%, hsl(210, 20%, 96%) 100%);
  border-top: var(--border-subtle);
  border-right: var(--border-subtle);
  border-bottom: var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(180, 190, 205, 0.2);
  padding: 24px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.summary-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 10px;
}

.summary-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin-bottom: 20px;
}

.summary-item {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  line-height: 1.7;
}

.summary-item:last-child {
  margin-bottom: 0;
}

.summary-badge {
  position: absolute;
  left: 0;
  top: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

.summary-item-title {
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.summary-item-desc {
  font-size: 0.9rem;
  color: var(--text-primary);
}

.summary-conclusion {
  background-color: rgba(25, 75, 40, 0.04);
  border: 1px dashed rgba(25, 75, 40, 0.2);
  border-radius: var(--radius-sm);
  padding: 15px;
  margin-top: 20px;
}

.summary-conclusion-title {
  font-weight: 700;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.summary-conclusion-title::before {
  content: "🔍";
}

.summary-conclusion-text {
  font-size: 0.92rem;
  color: var(--text-primary);
  line-height: 1.7;
}

.summary-credit {
  text-align: right;
  font-size: 0.72rem;
  color: var(--text-secondary);
  margin-top: 15px;
  border-top: 1px dashed var(--border-color);
  padding-top: 8px;
}


