@charset "UTF-8";
/* ============================================================
   Event 専用スタイル
   ------------------------------------------------------------
   ・トップページ FV下のイベント一覧（.event-section-*）
   ・イベントアーカイブ（.event-page / .event-list）
   ・イベント詳細（.event-single）
   accent: #186a79 / #2f9aa0（グリーン系でブログと差別化）
   ============================================================ */

:root {
  --event-accent: #186a79;
  --event-accent-2: #2f9aa0;
  --event-text: #4a6671;
  --event-body: #2e2d31;
  --event-bg-grad: linear-gradient(180deg, #fcfdfd 0%, #eaf5f2 100%);
}

/* ============================================================
   1. トップページ FV下 イベントセクション
   ============================================================ */
.event-section-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 64px;
  padding: 0 20px;
}
.event-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 1096px;
  width: 100%;
  padding: 1rem 0 3rem;
  margin: 0 auto;
  align-items: center;
}
.event-section-header {
  text-align: center;
  margin-bottom: 12px;
}

/* イベントカード（日付バッジ型） */
.event-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e8f1f1;
  border-radius: 20px 4px 20px 4px;
  box-shadow: 0 4px 18px rgba(24, 106, 121, 0.07);
  padding: 20px 24px;
  text-decoration: none;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  box-sizing: border-box;
}
.event-card:hover {
  box-shadow: 0 14px 30px rgba(24, 106, 121, 0.13);
  transform: translateY(-4px);
}

/* 左：ヘッダー（日付バッジ ＋ タグ）*/
.event-card-head {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

/* 日付バッジ */
.event-date-badge {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 92px;
  padding: 12px 6px;
  background: linear-gradient(160deg, var(--event-accent) 0%, var(--event-accent-2) 100%);
  border-radius: 14px 2px 14px 2px;
  color: #fff;
  line-height: 1.1;
}
.event-date-badge .ev-year {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0.9;
}
.event-date-badge .ev-day {
  font-family: "Shippori Mincho", serif;
  font-size: 34px;
  font-weight: 700;
  margin: 2px 0;
}
.event-date-badge .ev-month {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* 中：サムネイル（任意） */
.event-card-thumb {
  flex-shrink: 0;
  width: 200px;
  height: 130px;
  object-fit: cover;
  border-radius: 12px 2px 12px 2px;
}

/* 右：本文 */
.event-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  gap: 10px;
  min-width: 0;
}
.event-badge-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 3px 12px;
  background: rgba(24, 106, 121, 0.08);
  border: 1px solid rgba(24, 106, 121, 0.25);
  border-radius: 50px;
  color: var(--event-accent);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.event-card-title {
  margin: 0;
  color: var(--event-text);
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
}
.event-card-excerpt {
  color: var(--event-body);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-card-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  color: var(--event-accent-2);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 600;
}
.event-card-more svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.event-card:hover .event-card-more svg {
  transform: translateX(4px);
}

/* 一覧へボタン（既存 .button-wrapper を流用しつつ余白調整） */
.event-section .button-wrapper {
  margin-top: 12px;
}

/* ============================================================
   2. イベントアーカイブ（category-event.php）
   ============================================================ */
.event-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  background: #ffffff;
}
.event-page-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--event-bg-grad);
  border-radius: 0 0 60px 60px;
  box-sizing: border-box;
  overflow: hidden;
}

/* Hero */
.event-hero {
  width: 100%;
  position: relative;
}
.event-hero-inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 260px;
  margin: 0 auto;
}
.event-hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 720px;
  object-fit: cover;
  border-radius: 120px 0 0 0;
  z-index: 1;
}
/* PC幅ではヒーロー画像を画面右端までフルブリード（左端位置は維持したまま右へ拡張） */
@media (min-width: 1200px) {
  .event-hero-image {
    right: calc((1200px - 100vw) / 2);
    max-width: calc(720px + (100vw - 1200px) / 2);
  }
}
.event-hero-text {
  position: relative;
  z-index: 2;
  padding: 3rem 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.event-hero-text .section-label {
  color: var(--event-accent-2);
}
.event-hero-text .section-title {
  color: var(--event-text);
}

/* Content layout */
.event-content {
  width: 100%;
  max-width: 1096px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  box-sizing: border-box;
}
.event-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.event-empty {
  text-align: center;
  color: var(--event-text);
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding: 40px 0;
}

/* Pagination */
.event-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
}
.event-pagination a, .event-pagination span {
  display: inline-block;
  padding: 8px 16px;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  color: #3b4b55;
  transition: all 0.25s ease;
}
.event-pagination a.page-numbers {
  border-bottom: 2px solid #d6e5e7;
}
.event-pagination a.page-numbers:hover {
  border-color: var(--event-accent-2);
  color: var(--event-accent-2);
  transform: translateY(-2px);
}
.event-pagination .current {
  border-color: var(--event-accent-2);
  color: var(--event-accent-2);
  font-weight: 700;
}

/* 一覧下の戻るボタン中央寄せ */
.event-content > .button-wrapper {
  margin: 48px auto 0;
}

/* ============================================================
   3. イベント詳細（single-event.php）
   ============================================================ */
.event-single .event-article {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 0 0 40px 0;
  box-shadow: 0 6px 26px rgba(24, 106, 121, 0.08);
  box-sizing: border-box;
}
.event-single .event-article-inner {
  padding: 48px 56px 56px;
}
.event-article-header {
  margin-bottom: 32px;
}
.event-article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.event-article-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--event-accent);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-weight: 600;
}
.event-article-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 14px;
  background: linear-gradient(160deg, var(--event-accent) 0%, var(--event-accent-2) 100%);
  border-radius: 50px;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}
.event-article-title {
  margin: 0;
  color: var(--event-text);
  font-family: "Shippori Mincho", serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
}
.event-article-divider {
  height: 3px;
  width: 72px;
  margin-top: 20px;
  background: linear-gradient(90deg, var(--event-accent) 0%, var(--event-accent-2) 100%);
  border-radius: 2px;
}
.event-article-thumb {
  width: 100%;
  border-radius: 16px 2px 16px 2px;
  margin-bottom: 32px;
  object-fit: cover;
}
.event-article-body {
  color: var(--event-body);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16.5px;
  line-height: 2.05;
  letter-spacing: 0.01em;
}
.event-article-body p { margin: 0 0 1.6em; }
.event-article-body img { max-width: 100%; height: auto; }
.event-article-body a {
  color: var(--event-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.event-article-body ul,
.event-article-body ol { margin: 0 0 1.7em; padding-left: 1.4em; }
.event-article-body li { margin-bottom: 0.5em; }
.event-article-body strong {
  color: var(--event-accent);
  background: linear-gradient(transparent 62%, rgba(47, 154, 160, 0.18) 62%);
  font-weight: 700;
}

/* ------------------------------------------------------------
   セクション見出し（h2）— SVGアイコンバッジ付き
   ------------------------------------------------------------
   アイコンは /img/svg-icon/ に格納した SVG を指定。
   下の --ev-heading-icon のパスを差し替えれば共通アイコンを変更可。
   セクションごとに変えたい場合は nth-of-type の指定を有効化。
   ------------------------------------------------------------ */
.event-article-body > h2 {
  --ev-h2-pb: 16px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 3em 0 1.1em;
  padding-bottom: var(--ev-h2-pb);
  border-bottom: 1px solid #e2edee;
  color: var(--event-text);
  font-family: "Shippori Mincho", serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.45;

  /* ▼ 既定アイコン（見出しが6個以上になった場合のフォールバック） */
  --ev-heading-icon: url(../img/svg-icon/event-icon.svg);
}
/* 台座（グラデーションの四角） */
.event-article-body > h2::before {
  content: "";
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: linear-gradient(150deg, var(--event-accent) 0%, var(--event-accent-2) 100%);
  border-radius: 14px 3px 14px 3px;
  box-shadow: 0 6px 14px rgba(24, 106, 121, 0.28);
}
/* アイコン（白／どんな色のSVGでも白で表示・パス差替え可） */
.event-article-body > h2::after {
  content: "";
  position: absolute;
  left: 0;
  /* 台座（::before）と同じ中心へ。padding-bottom 分を差し引く */
  top: calc((100% - var(--ev-h2-pb)) / 2);
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background-color: #fff;
  -webkit-mask: var(--ev-heading-icon) center / 24px 24px no-repeat;
          mask: var(--ev-heading-icon) center / 24px 24px no-repeat;
  pointer-events: none;
}

/* 見出しごとのアイコン（出現順） */
.event-article-body > h2:nth-of-type(1) { --ev-heading-icon: url(../img/svg-icon/event-icon.svg); }     /* 貴重な機会 */
.event-article-body > h2:nth-of-type(2) { --ev-heading-icon: url(../img/svg-icon/chart-icon.svg); }     /* 取引経験の共有 */
.event-article-body > h2:nth-of-type(3) { --ev-heading-icon: url(../img/svg-icon/recommend-icon.svg); } /* 安心の声 */
.event-article-body > h2:nth-of-type(4) { --ev-heading-icon: url(../img/svg-icon/comment-icon.svg); }   /* 運営コメント */
.event-article-body > h2:nth-of-type(5) { --ev-heading-icon: url(../img/svg-icon/merit-icon.svg); }     /* 今後の開催 */
.event-article-body h3 {
  margin: 2em 0 0.7em;
  padding-left: 14px;
  border-left: 4px solid var(--event-accent-2);
  color: var(--event-text);
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  font-weight: 700;
}

/* ------------------------------------------------------------
   写真＋キャプション
   URL指定: <figure class="event-figure">
              <img src="..." alt="...">
              <figcaption>説明文</figcaption>
            </figure>
   ※ クラシック [caption] / ブロック figure も同デザインで対応
   ------------------------------------------------------------ */
.event-article-body .event-figure,
.event-article-body figure,
.event-article-body .wp-block-image,
.event-article-body .wp-caption {
  max-width: 100%;
  margin: 3em auto;
  text-align: center;
}
.event-article-body .event-figure img,
.event-article-body figure img,
.event-article-body .wp-block-image img,
.event-article-body .wp-caption img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 16px 36px rgba(24, 106, 121, 0.18);
}
/* wpautop 対策：figure 内の余計な段落を無効化 */
.event-article-body .event-figure p,
.event-article-body figure p { margin: 0; }
.event-article-body .event-figure figcaption,
.event-article-body figure figcaption,
.event-article-body .wp-block-image figcaption,
.event-article-body .wp-caption-text {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 12px auto 0;
  padding: 0;
  color: #6b7d84;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.7;
  text-align: left;
}
.event-article-body .event-figure figcaption::before,
.event-article-body figure figcaption::before,
.event-article-body .wp-block-image figcaption::before,
.event-article-body .wp-caption-text::before {
  content: "\f030"; /* Font Awesome: camera */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--event-accent-2);
  font-size: 12px;
}

/* ------------------------------------------------------------
   リード文（class="event-lead"）
   ------------------------------------------------------------ */
.event-article-body .event-lead,
.is-style-event-lead {
  position: relative;
  margin: 0 0 2.6em;
  padding: 30px 34px 30px 38px;
  background: linear-gradient(135deg, #f3faf8 0%, #e6f4ef 100%);
  border-radius: 20px 3px 20px 3px;
  box-shadow: 0 6px 20px rgba(24, 106, 121, 0.07);
  color: var(--event-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 2.1;
  overflow: hidden;
}
.event-article-body .event-lead::before,
.is-style-event-lead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--event-accent) 0%, var(--event-accent-2) 100%);
}

/* ------------------------------------------------------------
   会員の声（class="event-voice" または引用）
   ------------------------------------------------------------ */
.event-article-body .event-voice,
.is-style-event-voice,
.event-article-body blockquote {
  position: relative;
  margin: 2em 0;
  padding: 30px 30px 30px 66px;
  background: #ffffff;
  border: 1px solid #e0eeee;
  border-radius: 16px 3px 16px 3px;
  box-shadow: 0 8px 24px rgba(24, 106, 121, 0.08);
  color: var(--event-text);
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
}
.event-article-body .event-voice::before,
.is-style-event-voice::before,
.event-article-body blockquote::before {
  content: "\201C";
  position: absolute;
  top: 18px;
  left: 22px;
  color: var(--event-accent-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 60px;
  line-height: 1;
  opacity: 0.28;
}
/* 閉じ括弧（右下・開き括弧と対に） */
.event-article-body .event-voice::after,
.is-style-event-voice::after,
.event-article-body blockquote::after {
  content: "\201C";
  position: absolute;
  right: 22px;
  bottom: 8px;
  transform: rotate(180deg);
  color: var(--event-accent-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 60px;
  line-height: 1;
  opacity: 0.28;
}
.event-article-body .event-voice p,
.is-style-event-voice p,
.event-article-body blockquote p {
  position: relative;
  margin: 0 0 0.9em;
  padding-left: 18px;
}
.event-article-body .event-voice p::before,
.is-style-event-voice p::before,
.event-article-body blockquote p::before {
  content: "";
  position: absolute;
  top: 0.85em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--event-accent-2);
  border-radius: 50%;
}
.event-article-body .event-voice p:last-child,
.is-style-event-voice p:last-child,
.event-article-body blockquote p:last-child { margin-bottom: 0; }
.is-style-event-voice cite { color: #6b7d84; font-size: 13px; font-style: normal; }

/* ------------------------------------------------------------
   情報ボックス（class="event-infobox"）
   例：「エアポケットシグナル配信について」
   ------------------------------------------------------------ */
.event-article-body .event-infobox,
.is-style-event-infobox {
  position: relative;
  margin: 3.2em 0 1.6em;
  padding: 36px 38px 34px;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(47, 154, 160, 0.08) 0%, rgba(47, 154, 160, 0) 55%),
    linear-gradient(180deg, #f7fbfa 0%, #eef6f4 100%);
  border: 1px solid #d5e8e6;
  border-radius: 22px 4px 22px 4px;
  box-shadow: 0 10px 30px rgba(24, 106, 121, 0.08);
}
.event-article-body .event-infobox::before,
.is-style-event-infobox::before {
  content: "\f05a"; /* Font Awesome: info-circle */
  position: absolute;
  top: 30px;
  right: 32px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 26px;
  color: var(--event-accent-2);
  opacity: 0.35;
}
.event-article-body .event-infobox > h2,
.event-article-body .event-infobox > h3,
.is-style-event-infobox > h2,
.is-style-event-infobox > h3 {
  counter-increment: none;
  display: block;
  margin: 0 0 18px;
  padding: 0 0 14px;
  border: none;
  border-bottom: 2px solid var(--event-accent-2);
  color: var(--event-text);
  font-family: "Shippori Mincho", serif;
  font-size: 21px;
}
.event-article-body .event-infobox > h2::before,
.is-style-event-infobox > h2::before { content: none; }
.event-article-body .event-infobox p,
.is-style-event-infobox p { font-size: 15.5px; line-height: 1.95; }
.event-article-body .event-infobox p:last-child,
.is-style-event-infobox p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------
   注意書き ※（class="event-note"）
   ------------------------------------------------------------ */
.event-article-body .event-note,
.is-style-event-note {
  margin-top: 2.4em;
  padding: 16px 20px;
  background: #f7f8f8;
  border-radius: 10px;
  color: #7a8890;
  font-size: 13px;
  line-height: 1.85;
}

/* シェア */
.event-share {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid #e6ebed;
}
.event-share-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--event-text);
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
}
.event-share-icons { display: flex; gap: 12px; }
.event-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.event-share-btn:hover { transform: translateY(-3px); opacity: 0.9; }
.event-share-btn.x { background: #000; }
.event-share-btn.facebook { background: #1877f2; }
.event-share-btn.line { background: #06c755; }

/* 記事下ナビ */
.event-bottom-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
}
.event-nav-link {
  color: var(--event-text);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
}
.event-nav-link:hover { color: var(--event-accent-2); }
.event-nav-link.is-empty { visibility: hidden; }

/* ============================================================
   4. レスポンシブ
   ============================================================ */
@media (max-width: 768px) {
  /* トップFV直下イベントセクションの余白最適化 */
  .event-section-wrapper { margin-top: 40px; }
  .event-section { gap: 20px; padding: 0.5rem 0 2.5rem; }
  .event-section-header { margin-bottom: 4px; }

  .event-card {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px;
  }
  /* ヘッダー：日付バッジ ＋ タグを横並び */
  .event-card-head {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    width: 100%;
  }
  .event-date-badge {
    flex-direction: row;
    gap: 8px;
    width: fit-content;
    padding: 8px 16px;
  }
  .event-date-badge .ev-day { font-size: 22px; margin: 0; }
  .event-card-thumb { width: 100%; height: 180px; }
  .event-card-body { width: 100%; }
  .event-card-title { font-size: 19px; }
  /* 「詳細を見る」を右寄せ */
  .event-card-more { align-self: flex-end; margin-top: 8px; }

  .event-hero-inner { height: auto; min-height: 180px; }
  .event-hero-image { border-radius: 80px 0 0 0; opacity: 0.28; }
  /* パンくず・見出しを画像に埋もれさせず読みやすく */
  .event-hero-text {
    padding: 2rem 20px 1.5rem;
    text-shadow: 0 1px 10px rgba(255, 255, 255, 0.85);
  }
  .event-hero-text .breadcrumb { margin-top: 0.75rem; }

  .event-single .event-article-inner { padding: 1rem; }
  .event-article-title { font-size: 23px; }
  .event-content { padding: 24px 16px 56px; }

  /* 本文（プレスリリース） */
  .event-article-body { font-size: 15.5px; line-height: 1.95; }
  .event-article-body > h2 {
    --ev-h2-pb: 12px;
    gap: 10px;
    margin: 2.2em 0 0.9em;
    font-size: 17px;
    line-height: 1.5;
  }
  .event-article-body > h2::before,
  .event-article-body > h2::after {
    width: 32px;
    height: 32px;
  }
  .event-article-body > h2::before {
    border-radius: 10px 2px 10px 2px;
  }
  .event-article-body > h2::after {
    -webkit-mask-size: 17px 17px;
            mask-size: 17px 17px;
  }
  .event-article-body h3 { font-size: 17px; }
  .event-article-body .event-lead,
  .is-style-event-lead { padding: 22px 20px 22px 24px; font-size: 16px; line-height: 1.95; }
  .event-article-body .event-voice,
  .is-style-event-voice,
  .event-article-body blockquote { padding: 24px 20px 24px 48px; }
  .event-article-body .event-infobox,
  .is-style-event-infobox { padding: 26px 22px; }
  /* 情報ボックスの装飾アイコンは見出しと重なるため非表示 */
  .event-article-body .event-infobox::before,
  .is-style-event-infobox::before { display: none; }
  .event-article-body .event-infobox > h2,
  .is-style-event-infobox > h2 { font-size: 18px; }
  .event-article-body .event-figure,
  .event-article-body figure { margin: 2.2em auto; }
}
