/* =====================================================================
   style.css — 二十四節気 ツール固有の微調整のみ。
   共通スタイルは /_shared/shirugear.css に任せる。
   ===================================================================== */

.sg-subtitle {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 var(--sg-space-3, 12px);
}

.sekki-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}
@media (min-width: 560px) {
  .sekki-list {
    grid-template-columns: 1fr 1fr;
    gap: 2px 20px;
  }
}
.sekki-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 8px 4px;
  border-bottom: 1px solid var(--sg-border, #eceff5);
}
.sekki-item__name {
  font-weight: 600;
}
.sekki-item__date {
  font-variant-numeric: tabular-nums;
  color: var(--sg-muted, #666);
  white-space: nowrap;
}
