/* 醤油の種類バッジのスタイル */
/* サイト全体で使用可能な共通スタイル */

.post-item-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.post-item-badge--essay {
  background: #5B8FA3;
  color: #fff;
}

.post-item-badge--cook {
  background: #DDD23B;
  color: #3A3226;
}

.post-item-badge--knowledge {
  background: #DDD23B;
  color: #3A3226;
}

.post-item-badge--empty {
  background: transparent;
  color: transparent;
  visibility: hidden;
  padding: 0;
  height: 0;
  margin: 0;
  line-height: 0;
  font-size: 0;
}

/* 透明バッジのみがある場合、バッジ行のpaddingを小さくする */
.post-item-badge-row:has(.post-item-badge--empty:only-child) {
  padding-bottom: 0;
  padding-top: 0;
}

/* 人気の読みものセクション用のバッジスタイル */
.popular-post-item-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.popular-post-item-badge--essay {
  background: #5B8FA3;
  color: #fff;
}

.popular-post-item-badge--cook {
  background: #DDD23B;
  color: #3A3226;
}

.popular-post-item-badge--knowledge {
  background: #DDD23B;
  color: #3A3226;
}

.popular-post-item-badge--empty {
  background: transparent;
  color: transparent;
  visibility: hidden;
  padding: 0;
  height: 0;
  margin: 0;
  line-height: 0;
  font-size: 0;
}

/* 透明バッジのみがある場合、バッジ行のpaddingを小さくする */
.popular-post-item-badge-row:has(.popular-post-item-badge--empty:only-child) {
  padding-bottom: 0;
  padding-top: 0;
}
