/* =====================================================================
   style.css — アスペクト比・解像度計算 ツール固有の微調整のみ。
   共通スタイルは /_shared/shirugear.css に任せる（結果表示は sg-result）。
   ===================================================================== */

/* 結果値はタブ幅数字で桁を揃える */
.sg-result__value {
  font-variant-numeric: tabular-nums;
}

/* 幅/高さ・比の補助ラベルを入力直下に詰める */
.sg-card .sg-row .sg-help {
  margin-top: var(--sg-space-1);
  text-align: center;
}

/* 既知の値（select + 数値）の横並び。数値側を広く */
.sg-row--known {
  align-items: center;
}
.sg-row--known > .sg-input {
  flex: 1;
}
