/* =====================================================================
   style.css — お酒の適温早見 ツール固有の微調整のみ。
   共通スタイルは /_shared/shirugear.css に任せる（結果表示は sg-result）。
   ===================================================================== */

/* セレクトは幅いっぱいに */
#drink-select {
  width: 100%;
}

/* 結果の温度は大きく強調 */
.sg-result__value {
  font-variant-numeric: tabular-nums;
  line-height: 1.4;
}

/* 一言・冷やし方の注記の間隔 */
.wst-note {
  margin-top: var(--sg-space-2, 8px);
}
.wst-cool {
  margin-top: var(--sg-space-1, 4px);
  color: var(--sg-muted, #555);
}
.wst-caveat {
  margin-top: var(--sg-space-3, 12px);
  color: var(--sg-muted, #777);
  font-size: 0.8rem;
  line-height: 1.7;
}

/* 日本酒の温度帯の呼称チャート */
.sg-chart {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2px 16px;
}
.sg-chart-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 5px 0;
  border-bottom: 1px solid var(--sg-border, #e5e7eb);
}
.sg-chart-row__key {
  flex: 0 0 3.4em;
  font-weight: 600;
  text-align: right;
}
.wst-scale__temp {
  font-variant-numeric: tabular-nums;
}
.sg-chart-row__val {
  flex: 1 1 auto;
  color: var(--sg-muted, #555);
}
