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

/* 行事カードの一覧 */
.be-events {
  display: flex;
  flex-direction: column;
  margin-top: var(--sg-space-3, 12px);
}
.be-event {
  padding: 10px 0;
  border-top: 1px solid var(--sg-border, #e5e7eb);
}
.be-event:first-child {
  border-top: none;
}
.be-event__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 4px 12px;
}
.be-event__name {
  font-weight: 700;
  font-size: 1rem;
}
.be-event__date {
  font-weight: 600;
  color: var(--sg-accent, #3b5bdb);
  white-space: nowrap;
}
.be-event__desc {
  margin: 4px 0 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--sg-muted, #666);
}

/* 免責の注記 */
.be-disclaimer {
  margin-top: var(--sg-space-3, 12px);
  line-height: 1.7;
}
