/* ==========================================================================
   🌹 pages-event.css
   Event：イベント概要ページ
   方針：
   - lesson の構造を踏襲
   - まずは h2-sm と区切りのみ
   - 中身は後で各イベント別に実装
   ========================================================================== */

/* セクション */
.p-event__section {
  margin-top: 56px;
}

/* 最初のセクションだけ詰める */
.p-event__section:first-child {
  margin-top: 0;
}

/* h2-sm は components-heading.css に依存
   ここでは位置調整のみ */
.p-event__section .c-heading--sm {
  margin-bottom: 16px;
}

/* 本文箱（今は空） */

/* =========================================================
   Event：合宿 写真3枚（PC）
   ========================================================= */

.p-event__figures {
  display: flex;
  gap: 24px;
}

.p-event__figure {
  flex: 1;
  margin: 0;
}

.p-event__figure img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================================================
   Event｜大切にしていること（Lesson踏襲）
   ========================================================= */

.p-event__poster {
  background: var(--brand-primary);
  color: var(--text-invert);
  padding: 80px 0;
}

.p-event__posterInner {
  max-width: 720px;
  margin: 0 auto;
}

.p-event__posterInner p {
  margin: 0 0 12px;
  line-height: 1.8;
}

.p-event__lead {
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 26px;
  margin-bottom: 0;
  line-height: 1.6;
}
