/* Prime Gear Metrics（液体ガラス風＋フェード）— SWELLで効かせる用に詳細度を強化 */
/* ★ ここを flex→grid に変更して「常に3列・1行」を固定 */
.post_content .pg-metrics,
.p-mainVisual .pg-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* ← 3カラム固定 */
  align-items: center;
  justify-items: center;
  gap: 1.2rem;

  margin: .9rem auto 0;
  padding: .6rem 1rem;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 14px;
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(8px);
  max-width: 720px;
  color: #fff;
  font-family: "Yu Gothic Medium","Hiragino Sans",sans-serif;
  letter-spacing: .02em;

  /* アニメーションはそのまま */
  opacity: 0;
  transform: translateY(20px);
  animation: pgFadeUp 1s ease forwards;
}

/* 各アイテム：最小幅を0にして、グリッド内で折り返しを防止 */
.post_content .pg-metrics .m,
.p-mainVisual .pg-metrics .m {
  min-width: 0;            /* ← 重要：110px指定をやめ、折返し原因を排除 */
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .2rem .25rem;
}

/* 文字は改行させない＋小画面で自然に縮む */
.post_content .pg-metrics .m strong,
.p-mainVisual .pg-metrics .m strong {
  font-size: clamp(1.0rem, 1.6vw, 1.15rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  white-space: nowrap;      /* ← 改行禁止 */
}

.post_content .pg-metrics .m span,
.p-mainVisual .pg-metrics .m span {
  font-size: clamp(.78rem, 1.1vw, .85rem);
  opacity: .8;
  line-height: 1.2;
  white-space: nowrap;      /* ← 改行禁止 */
}

/* フェードはそのまま */
@keyframes pgFadeUp { to { opacity:1; transform:translateY(0); } }

/* スマホでも「3カラム1行」を維持。フォントだけ少し絞る */
@media (max-width:599px){
  .post_content .pg-metrics,
  .p-mainVisual .pg-metrics {
    gap: .8rem;
    padding: .5rem .7rem;
    /* 3列は維持（grid-template-columns 変更なし） */
  }
  .post_content .pg-metrics .m strong,
  .p-mainVisual .pg-metrics .m strong { font-size: clamp(.95rem, 3.2vw, 1.05rem); }
  .post_content .pg-metrics .m span,
  .p-mainVisual .pg-metrics .m span { font-size: clamp(.72rem, 2.8vw, .8rem); }
}
