/* ==========================================================
   WINECOMPLEX / Pages
   - page-only overrides
   - fixed pages use wc-page--subpage as common shell
   - layout responsibility is moved to wc-layout.css
========================================================== */

/* ==========================================================
   Page common tuning
========================================================== */

.wc-page-summary__text {
  line-height: 2.02;
}

.wc-page-section__lead {
  font-size: inherit;
  line-height: inherit;
}

.wc-page-section__body p,
.wc-page-section__body li {
  font-size: inherit;
  line-height: inherit;
}

.wc-page-layout,
.wc-page-layout__inner,
.wc-page-layout__sidebar {
  overflow: visible;
}

.wc-page-layout__inner {
  align-items: start;
}

.wc-page-layout__sidebar {
  align-self: start;
}

/* wc-page-section: fix to match mocks-fixed design */
.wc-page-section {
  padding: 34px 34px 38px;
  background: #fbf9f5;
  border-radius: 26px;
  box-shadow: 0 18px 40px rgba(30, 24, 18, 0.05);
}

/* reset alternating backgrounds */
.wc-page-article > .wc-page-section:nth-child(even),
.wc-page-article > .wc-page-section:nth-child(odd) {
  background: #fbf9f5;
}

/* section gap */
.wc-page-article {
  gap: 28px;
}

.wc-page-section + .wc-page-section {
  margin-top: 0;
}

/* head margin */
.wc-page-section__head {
  margin-bottom: 24px;
  text-align: left;
}

/* =========================================================
   wc-page-section__title 強制定義
   ─────────────────────────────────────────────────────────
   【背景】
   WP 環境では pandora_tcd116 親テーマの CSS が
   h2 の display / font-size / border / text-align を上書きするため、
   wc-layout.css の定義が打ち消される。
   !important で確実に上書きし、モックと同等の見た目を維持する。

   【グラデーション背景について】
   wc-layout.css では ::before { z-index:-2 } で実装していたが、
   WP の stacking context 環境で描画されないケースが発生。
   background プロパティを要素本体に直接定義することで解決。
   wc-layout.css の ::before ルールは削除せず残してあるが
   display: none !important により無効化済み。

   【新規ページ追加時の注意】
   wc-page--event / wc-page--about-us 等の body クラスに関わらず
   このルールは全下層ページで有効。変更時はモックでも必ず確認すること。
   ========================================================= */
/* C案: パーチメント面 + ゴールド縦線（全ページ共通） */
.wc-page-section__title {
  display: block !important;
  position: relative !important;
  z-index: 0 !important;
  margin: 0 !important;
  padding: 14px 20px 15px 22px !important;
  font-size: clamp(28px, 3.4vw, 42px) !important;
  font-weight: 500 !important;
  line-height: 1.42 !important;
  text-align: left !important;
  background: rgba(215, 195, 165, 0.28) !important;
  border: 1px solid rgba(138, 116, 88, 0.16) !important;
  border-left: 3px solid #8a7458 !important;
  border-radius: 0 6px 6px 0 !important;
}

.wc-page-section__title::before {
  display: none !important;
}

/* C案: ::after（金色アンダーライン）無効化 */
.wc-page-section__title::after {
  display: none !important;
}

@media (max-width: 767px) {
  .wc-page-summary__text {
    line-height: 1.95;
  }

  .wc-page-section {
    padding: 24px 20px 28px;
    border-radius: 18px;
  }

  .wc-page-section__lead,
  .wc-page-section__body p,
  .wc-page-section__body li {
    font-size: inherit;
    line-height: inherit;
  }

  .wc-page-section__head {
    margin-bottom: 16px;
  }
}

/* ==========================================================
   Definition list  (.wc-dl)
   exhibitors-detail / kyoto-visitor-entry 共用
========================================================== */

.wc-dl {
  display: grid;
  grid-template-columns: minmax(100px, 160px) 1fr;
  gap: 0;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.wc-dl dt,
.wc-dl dd {
  margin: 0;
  padding: 14px 20px;
  font-size: 16px;
  line-height: 1.9;
  border-bottom: 1px solid rgba(31, 31, 31, 0.07);
}

.wc-dl dt:last-of-type,
.wc-dl dd:last-of-type {
  border-bottom: none;
}

.wc-dl dt {
  font-family: "Century Gothic", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(31, 31, 31, 0.52);
  background: rgba(31, 31, 31, 0.025);
  display: flex;
  align-items: center;
}

.wc-dl dd {
  color: #1f1f1f;
}

@media (max-width: 767px) {
  .wc-dl {
    grid-template-columns: 1fr;
  }

  .wc-dl dt {
    padding-bottom: 4px;
    border-bottom: none;
  }

  .wc-dl dd {
    padding-top: 0;
  }
}

/* ==========================================================
   Data table  (.wc-table)
   exhibitors-detail: schedule / fee / cancellation
========================================================== */

.wc-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.wc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  line-height: 1.9;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.wc-table--fee {
  min-width: 560px;
}

.wc-table thead th {
  padding: 12px 16px;
  font-family: "Century Gothic", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(31, 31, 31, 0.52);
  background: rgba(31, 31, 31, 0.03);
  text-align: left;
  border-bottom: 1px solid rgba(31, 31, 31, 0.08);
}

.wc-table tbody td {
  padding: 12px 16px;
  color: #1f1f1f;
  border-bottom: 1px solid rgba(31, 31, 31, 0.06);
}

.wc-table tbody tr:last-child td {
  border-bottom: none;
}

.wc-table tbody tr:hover td {
  background: rgba(31, 31, 31, 0.015);
}

.wc-table__sub {
  color: rgba(31, 31, 31, 0.52);
  font-size: 15px;
  white-space: nowrap;
}

.wc-table__num {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.wc-table__muted {
  color: rgba(31, 31, 31, 0.52);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.wc-table__accent {
  font-weight: 500;
  color: #8a7458;
}

/* ==========================================================
   Password divider  (.wc-pw-divider)
   exhibitors-detail
========================================================== */

.wc-pw-divider {
  margin: 48px 0;
  padding: 28px 28px 30px;
  background: rgba(31, 31, 31, 0.03);
  border: 1px dashed rgba(31, 31, 31, 0.18);
  border-radius: 10px;
  text-align: center;
}

.wc-pw-divider__eyebrow {
  margin: 0 0 10px;
  font-family: "Century Gothic", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(31, 31, 31, 0.44);
}

.wc-pw-divider__title {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 500;
  color: rgba(31, 31, 31, 0.54);
}

.wc-pw-divider__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(31, 31, 31, 0.60);
}

/* ==========================================================
   Step list  (.wc-step-list)
   exhibitors-detail: flow section
========================================================== */

.wc-step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wc-step-list__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 16px;
  align-items: start;
}

.wc-step-list__item + .wc-step-list__item {
  margin-top: 12px;
}

.wc-step-list__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #8a7458;
  color: #fff;
  font-family: "Century Gothic", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 6px;
}

.wc-step-list__body {
  padding: 6px 0 20px;
  border-bottom: 1px solid rgba(31, 31, 31, 0.07);
}

.wc-step-list__item:last-child .wc-step-list__body {
  border-bottom: none;
  padding-bottom: 0;
}

.wc-step-list__title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 500;
  color: #1f1f1f;
}

.wc-step-list__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(31, 31, 31, 0.70);
}

/* ==========================================================
   Entry form  (.wc-entry-form)
   kyoto-visitor-entry
========================================================== */

.wc-entry-form {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 12px;
  padding: 36px 36px 40px;
  box-shadow: 0 10px 32px rgba(31, 31, 31, 0.04);
}

.wc-entry-form__group {
  margin-bottom: 48px;
}

.wc-entry-form__group:last-of-type {
  margin-bottom: 0;
}

.wc-entry-form__group-title {
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(31, 31, 31, 0.10);
  font-family: "Century Gothic", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(31, 31, 31, 0.44);
}

.wc-entry-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px 24px;
}

.wc-entry-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wc-entry-form__field--full {
  grid-column: 1 / -1;
}

.wc-entry-form__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Avenir Next", "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(31, 31, 31, 0.78);
}

.wc-entry-form__badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  background: #8a7458;
  color: #fff;
  font-family: "Century Gothic", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.12em;
  border-radius: 3px;
  flex-shrink: 0;
}

.wc-entry-form__input,
.wc-entry-form__select,
.wc-entry-form__textarea {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 31, 31, 0.16);
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.6;
  color: #1f1f1f;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wc-entry-form__input:focus,
.wc-entry-form__select:focus,
.wc-entry-form__textarea:focus {
  outline: none;
  border-color: #8a7458;
  box-shadow: 0 0 0 3px rgba(138, 116, 88, 0.14);
}

.wc-entry-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231f1f1f' stroke-opacity='.4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.wc-entry-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.wc-entry-form__input-with-btn {
  display: flex;
  gap: 8px;
  align-items: center;
}

.wc-entry-form__input-with-btn .wc-entry-form__input {
  flex: 1;
}

.wc-entry-form__check-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wc-entry-form__check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(31, 31, 31, 0.78);
  cursor: pointer;
}

.wc-entry-form__check-label input[type="checkbox"],
.wc-entry-form__check-label input[type="radio"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #8a7458;
  cursor: pointer;
}

.wc-entry-form__confirm-area {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(31, 31, 31, 0.08);
}

.wc-entry-form__confirm-text {
  margin: 0 0 20px;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(31, 31, 31, 0.66);
}

.wc-entry-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 360px;
  min-height: 54px;
  padding: 0 32px;
  background: #8a7458;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-family: "Century Gothic", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(138, 116, 88, 0.32);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.wc-entry-form__submit:hover {
  background: #7a6449;
  box-shadow: 0 8px 24px rgba(138, 116, 88, 0.40);
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .wc-entry-form {
    padding: 24px 20px 28px;
    border-radius: 10px;
  }

  .wc-entry-form__row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .wc-entry-form__submit {
    max-width: 100%;
  }
}

/* ==========================================================
   Name grid  (.wc-name-grid)
   kyoto-visitor-entry: exhibitor list
========================================================== */

.wc-name-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.wc-name-grid__item {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(31, 31, 31, 0.76);
}

@media (max-width: 1024px) {
  .wc-name-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .wc-name-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}

/* ==========================================================
   PDF panel  (.wc-pdf-panel)
   kyoto-visitor-entry
========================================================== */

.wc-pdf-panel {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 10px;
}

.wc-pdf-panel__icon {
  flex-shrink: 0;
  width: 40px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(138, 116, 88, 0.10);
  border-radius: 6px;
  font-family: "Century Gothic", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #8a7458;
  font-weight: 700;
}

.wc-pdf-panel__body {
  flex: 1;
  min-width: 0;
}

.wc-pdf-panel__title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 500;
  color: #1f1f1f;
}

.wc-pdf-panel__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(31, 31, 31, 0.60);
}

@media (max-width: 767px) {
  .wc-pdf-panel {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

.wc-pdf-panel .wc-btn {
  flex-shrink: 0;
}

/* ==========================================================
   Sponsor list  (.wc-sponsor-list)
   kyoto-visitor-entry: glass sponsor / cooperation
========================================================== */

.wc-sponsor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.wc-sponsor-list__item {
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 6px;
  font-size: 13px;
  color: rgba(31, 31, 31, 0.72);
}

/* ==========================================================
   Shared utilities
========================================================== */

.wc-dl__sub {
  font-size: 13px;
  color: rgba(31, 31, 31, 0.58);
}

.wc-text-link {
  color: #8a7458;
  text-decoration: underline;
}

.wc-sidebar__nav--events-text {
  margin-top: 16px;
}


/* =========================================================
   Page transition shared
========================================================= */
body.transition-enter-from-top {
  background: #fdfcf8;
}

body.transition-enter-from-top main,
body.transition-enter-from-sub main {
  opacity: 0;
  filter: blur(16px) brightness(0.68);
  transition:
    opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, filter, transform;
}

body.transition-enter-from-top main {
  transform: translateY(14px);
}

body.transition-enter-from-sub main {
  transform: translateY(-14px);
}

body.transition-enter-from-top.is-loaded main,
body.transition-enter-from-sub.is-loaded main {
  opacity: 1;
  filter: blur(0) brightness(1);
  transform: translateY(0);
}

body.is-leaving-to-top main {
  opacity: 0;
  filter: blur(14px) brightness(0.8);
  transform: translateY(14px);
  transition:
    opacity 0.34s ease,
    filter 0.34s ease,
    transform 0.34s ease;
}

/* ==========================================================
   Status badge  (.wc-status-badge)
   開催終了など、イベントステータスを示すバッジ
========================================================== */

.wc-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: "Century Gothic", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.10em;
  font-weight: 600;
  line-height: 1;
}

.wc-status-badge--closed {
  background: rgba(31, 31, 31, 0.08);
  color: rgba(31, 31, 31, 0.52);
}

/* ==========================================================
   Events archive (.wc-events-list)
========================================================== */
.wc-events-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.wc-events-list__item {
  min-width: 0;
}

@media (max-width: 600px) {
  .wc-events-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ==========================================================
   グローバルモバイル補正
   ※ wc-about.css のスコープ済みルールが後勝ちで上書きする
========================================================== */
@media (max-width: 767px) {
  /* Option B: ほぼ全幅カード＋高級感シャドウ */
  .wc-page-layout__inner {
    width: calc(100% - 8px);   /* 左右 4px のみ外余白 */
    padding: 14px;             /* テキスト幅 ≈ summary と揃える */
    border-radius: 6px;        /* 薄くカード感を残す */
  }

  /* ::before が border-radius / shadow を担うため合わせて更新 */
  .wc-page-layout__inner::before {
    border-radius: 6px;
    box-shadow:
      0 4px 16px rgba(31, 31, 31, 0.07),
      0 16px 40px rgba(31, 31, 31, 0.055);
  }

  .wc-page-layout__main {
    font-size: 0.98rem;
    line-height: 1.82;
  }

  .wc-page-section p,
  .wc-page-section li {
    font-size: 0.98rem;
    line-height: 1.82;
  }
}

/* ==========================================================
   wc-event-eyecatch
========================================================== */
.wc-event-eyecatch {
  margin: 0 0 40px;
  border-radius: 8px;
  overflow: hidden;
}

.wc-event-eyecatch__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ==========================================================
   Mobile table: stacked layout (SP 640px以下)
   対象: .wc-table--stack
========================================================== */
@media (max-width: 640px) {
  .wc-table--stack {
    background: transparent;
    border: none;
    border-radius: 0;
    min-width: 0;
  }
  .wc-table--stack thead {
    display: none;
  }
  .wc-table--stack tbody tr {
    display: block;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(31, 31, 31, 0.08);
    border-radius: 8px;
    margin-bottom: 0.625rem;
    overflow: hidden;
  }
  .wc-table--stack tbody td {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    padding: 9px 14px;
    border-bottom: 1px solid rgba(31, 31, 31, 0.06);
    font-size: 15px;
  }
  .wc-table--stack tbody td:last-child {
    border-bottom: none;
  }
  .wc-table--stack tbody td::before {
    content: attr(data-label);
    flex-shrink: 0;
    min-width: 5.5em;
    font-family: "Century Gothic", "Avenir Next", Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(31, 31, 31, 0.42);
    padding-top: 2px;
    white-space: nowrap;
  }
  .wc-table--stack .wc-table__num,
  .wc-table--stack .wc-table__muted {
    text-align: left;
  }
}

/* ==========================================================
   Annual Schedule — Timeline (.wc-timeline-*)
========================================================== */

.wc-timeline-section {
  margin-bottom: 40px;
}

.wc-timeline-section__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.wc-timeline-section__label {
  flex-shrink: 0;
  font-family: "Century Gothic", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(31, 31, 31, 0.45);
}

.wc-timeline-section__line {
  flex: 1;
  height: 1px;
  background: rgba(31, 31, 31, 0.12);
}

.wc-timeline-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wc-timeline-item {
  background: rgba(255, 255, 255, 0.80);
  border: 1px solid rgba(31, 31, 31, 0.07);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.22s ease;
}

.wc-timeline-item:hover {
  box-shadow: 0 6px 20px rgba(31, 31, 31, 0.07);
}

.wc-timeline-item--closed {
  background: rgba(31, 31, 31, 0.03);
  border-color: rgba(31, 31, 31, 0.05);
}

.wc-timeline-item--closed .wc-timeline-item__title {
  color: rgba(31, 31, 31, 0.45);
}

.wc-timeline-item--closed .wc-timeline-item__date,
.wc-timeline-item--closed .wc-timeline-item__venue {
  color: rgba(31, 31, 31, 0.38);
}

.wc-timeline-item--cross {
  border-left: 3px solid #8a4e2e;
}

.wc-timeline-item__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
}

.wc-timeline-item__body {
  flex: 1;
  min-width: 0;
}

.wc-timeline-item__date {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: "Century Gothic", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(31, 31, 31, 0.52);
  margin-bottom: 4px;
}

.wc-timeline-item__title {
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", serif;
  font-size: 15px;
  font-weight: 500;
  color: #1f1f1f;
  margin: 0 0 4px;
  line-height: 1.45;
}

.wc-timeline-item__venue {
  font-size: 12.5px;
  color: rgba(31, 31, 31, 0.55);
  margin: 0;
  line-height: 1.5;
}

.wc-timeline-item__exhibit {
  font-size: 12px;
  color: rgba(31, 31, 31, 0.45);
  margin: 4px 0 0;
  line-height: 1.55;
}

.wc-timeline-item__actions {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

/* Closed / Pending labels */
.wc-closed-label {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: "Century Gothic", "Avenir Next", Arial, sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  background: rgba(31, 31, 31, 0.06);
  color: rgba(31, 31, 31, 0.38);
}

.wc-pending-label {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: "Century Gothic", "Avenir Next", Arial, sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: rgba(138, 78, 46, 0.07);
  color: rgba(138, 78, 46, 0.72);
}

/* Status badge variants */
.wc-status-badge--exhibitor {
  background: rgba(44, 85, 48, 0.09);
  color: rgba(44, 85, 48, 0.82);
}

/* Mobile */
@media (max-width: 640px) {
  .wc-timeline-item__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
  }

  .wc-timeline-item__actions {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .wc-timeline-item__title {
    font-size: 14px;
  }
}

/* ==========================================================
   CTA Block (.wc-cta-block)
========================================================== */

.wc-page-section--cta {
  background: rgba(251, 248, 243, 0.72);
}

.wc-cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.wc-cta-block__body {
  flex: 1;
  min-width: 0;
}

.wc-cta-block__text {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(31, 31, 31, 0.70);
  margin: 0;
}

.wc-cta-block__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .wc-cta-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .wc-cta-block__actions {
    width: 100%;
  }
}

/* ==========================================================
   Footer large banner (.wc-footer-large-banner)
========================================================== */

.wc-footer-large-banner {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
}

.wc-footer-large-banner .content {
  position: relative;
  z-index: 2;
  padding: 48px 60px;
  max-width: 540px;
}

.wc-footer-large-banner .catch {
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 500;
  color: #fff;
  line-height: 1.65;
  margin: 0 0 24px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.38);
}

.wc-footer-large-banner .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.92);
  color: #1f1f1f;
  font-family: "Century Gothic", "Avenir Next", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.wc-footer-large-banner .button:hover {
  background: #fff;
  transform: translateY(-1px);
}

.wc-footer-large-banner .overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(20, 15, 10, 0.62) 0%,
    rgba(20, 15, 10, 0.28) 60%,
    rgba(20, 15, 10, 0.06) 100%
  );
}

.wc-footer-large-banner .image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.wc-footer-large-banner .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 640px) {
  .wc-footer-large-banner .content {
    padding: 36px 24px;
  }

  .wc-footer-large-banner .catch {
    font-size: 18px;
  }
}
