/*
Theme Name: Doujin Cross Hub
Theme URI:
Description: 同人作品の横断比較サイト用テーマ。manga-base の中立化思想（親=表示 / プラグイン=データ）を踏襲した最小構成。データは doujin-cross-hub プラグインが供給する。
Author: doujin-cross-hub project
Version: 0.1.0
Requires at least: 6.0
Requires PHP: 8.2
Text Domain: doujin-cross-hub
*/

/* ===========================================================================
   デザイントークン（STAGE_DESIGN1 §4・全フェーズの参照元）
   以後 Phase ②③ のバッジ/カードは必ずこの変数を参照（直値ハードコード禁止）。
   =========================================================================== */
:root {
  /* base (dark) */
  --bg:            #0e0e12;   /* 最暗・全体背景 */
  --bg-elev:       #16161d;   /* サイドバー/カード等の一段上げ面 */
  --bg-elev-2:     #1e1e27;   /* さらに上げ（ホバー面など） */
  --border:        #2a2a35;   /* 罫線・区切り */

  /* text */
  --text:          #e8e8ee;   /* 本文 */
  --text-dim:      #a0a0ad;   /* 副次テキスト */
  --text-faint:    #6c6c78;   /* 最も弱い（メタ情報） */

  /* accent (magenta/pink) */
  --accent:        #e84393;   /* 主アクセント（リンク/アクティブ/最安バッジ等） */
  --accent-hover:  #f25aa6;
  --accent-dim:    #b5316f;   /* 沈めたアクセント */
  --accent-bg:     rgba(232, 67, 147, 0.12); /* アクセントの薄面（バッジ地など） */

  /* semantic */
  --sale:          #ff6b6b;   /* セール表示 */
  --in-stock:      #4cd97b;   /* 在庫○ */
  --out-stock:     #6c6c78;   /* 取扱なし× */

  /* shape / space */
  --radius:        10px;
  --radius-sm:     6px;
  --gap:           16px;
  --sidebar-w:     232px;     /* 展開時 */
  --sidebar-w-min: 60px;      /* 畳み時（アイコンのみ） */

  /* type */
  --font: -apple-system, "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;

  /* ---- 旧トークン名エイリアス（既存 比較表/モーダル CSS の参照を維持） ---- */
  --bg-base:    var(--bg);
  --bg-surface: var(--bg-elev);
  --bg-card:    var(--bg-elev-2);
  --line:       var(--border);
  --muted:      var(--text-dim);
  --in:         var(--in-stock);
}

/* ===========================================================================
   全体地（ダークベース）
   =========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { color: var(--text); line-height: 1.35; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); text-decoration: underline; }

/* フォーカス可視（キーボード操作） */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

::selection { background: var(--accent-bg); color: var(--text); }

/* スクロールバー */
* { scrollbar-width: thin; scrollbar-color: var(--bg-elev-2) var(--bg); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: var(--bg-elev-2);
  border: 2px solid var(--bg);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover { background: var(--border); }

/* スクリーンリーダー専用 */
.dch-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ===========================================================================
   レイアウト骨格（左サイドバー固定 ＋ 右メイン）
   広幅: 展開 / 中幅: アイコン畳み / 狭幅: オフキャンバス
   =========================================================================== */
.dch-layout {
  display: grid;
  grid-template-columns: var(--sidebar-w) minmax(0, 1fr);
  min-height: 100vh;
}

.dch-main { min-width: 0; }

/* --- サイドバー --- */
.dch-sidebar {
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  padding: 16px 12px;
  background: var(--bg-elev);
  border-right: 1px solid var(--border);
}

/* ロゴ（テキスト＋小アイコン） */
.dch-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  color: var(--text);
  font-weight: 800;
  font-size: 1.05rem;
}
.dch-logo:hover { color: var(--text); text-decoration: none; }
.dch-logo svg { flex: 0 0 22px; width: 22px; height: 22px; color: var(--accent); }

/* 検索ボックス */
.dch-search { position: relative; }
.dch-search__input {
  width: 100%;
  padding: 9px 12px 9px 34px;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.9rem;
}
.dch-search__input::placeholder { color: var(--text-faint); }
.dch-search__input:focus { border-color: var(--accent); outline: none; }
.dch-search__icon {
  position: absolute;
  left: 9px; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: var(--text-faint);
  pointer-events: none;
}

/* ナビ */
.dch-nav { display: flex; flex-direction: column; gap: 2px; }
.dch-nav__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 10px;
  border-radius: var(--radius-sm);
  color: var(--text-dim);
  font-size: 0.92rem;
  white-space: nowrap;
}
.dch-nav__item:hover {
  background: var(--bg-elev-2);
  color: var(--text);
  text-decoration: none;
}
.dch-nav__item.is-active {
  background: var(--accent-bg);
  color: var(--accent);
}
.dch-nav__item svg { flex: 0 0 20px; width: 20px; height: 20px; }
.dch-nav__label { overflow: hidden; text-overflow: ellipsis; }

/* ハンバーガー（狭幅のみ表示） */
.dch-hamburger {
  display: none;
  position: fixed;
  top: 12px; left: 12px;
  z-index: 40;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  background: var(--bg-elev);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.dch-hamburger svg { width: 22px; height: 22px; }

/* オフキャンバス時の暗幕 */
.dch-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 25;
  background: rgba(8, 8, 10, .6);
}

/* --- 中幅: サイドバーをアイコンのみに畳む --- */
@media (max-width: 1024px) {
  .dch-layout { grid-template-columns: var(--sidebar-w-min) minmax(0, 1fr); }
  .dch-sidebar { padding: 16px 8px; align-items: center; }
  .dch-nav__label,
  .dch-logo span,
  .dch-search__input { display: none; }
  .dch-nav__item { justify-content: center; gap: 0; padding: 10px; }
  .dch-search {
    width: 40px; height: 40px;
  }
  .dch-search__icon {
    left: 50%; transform: translate(-50%, -50%);
    pointer-events: auto;
  }
}

/* --- 狭幅(スマホ): オフキャンバス --- */
@media (max-width: 768px) {
  .dch-layout { grid-template-columns: 1fr; }
  .dch-hamburger { display: flex; }
  .dch-sidebar {
    position: fixed;
    top: 0; left: 0;
    z-index: 30;
    width: var(--sidebar-w);
    padding: 16px 12px;
    align-items: stretch;
    transform: translateX(-100%);
    transition: transform .22s ease;
  }
  /* 狭幅では展開状態のラベル/検索を復活 */
  .dch-nav__label,
  .dch-logo span,
  .dch-search__input { display: revert; }
  .dch-nav__item { justify-content: flex-start; gap: 12px; padding: 10px; }
  .dch-search { width: auto; height: auto; }
  .dch-search__icon { left: 9px; transform: translateY(-50%); pointer-events: none; }
  .dch-main { padding-top: 56px; } /* ハンバーガー分の余白 */

  .dch-layout.is-open .dch-sidebar { transform: translateX(0); }
  .dch-layout.is-open .dch-overlay { display: block; }
}

.dch-single {
  max-width: 860px;
  margin: 0 auto;
  padding: 24px 16px 80px;
}

.dch-comic__title {
  font-size: 1.6rem;
  margin: 0 0 16px;
}

.dch-comic__thumb img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.dch-comic__body {
  margin: 16px 0 32px;
}

/* ===========================================================================
   横断比較表
   =========================================================================== */
.dch-offers__heading {
  font-size: 1.2rem;
  border-left: 4px solid var(--accent);
  padding-left: 10px;
  margin: 0 0 12px;
}

.dch-offer-table {
  width: 100%;
  table-layout: fixed; /* 全列を等幅にしてバランスを揃える */
  border-collapse: collapse;
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.dch-offer-table th,
.dch-offer-table td {
  padding: 10px 12px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.dch-offer-table thead th {
  background: var(--bg-card);
  color: var(--muted);
  font-weight: 600;
}

.dch-offer-table tbody th[scope="row"] {
  text-align: center;
  font-weight: 700;
}

.dch-offer-row.is-unavailable {
  color: var(--muted);
}

.dch-col-price a {
  font-weight: 700;
  text-decoration: none;
}

.dch-muted { color: var(--muted); }

.dch-badge {
  display: inline-block;
  padding: 1px 8px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.6;
}
.dch-badge--sale { background: rgba(224,86,122,.16); color: var(--sale); }
.dch-sale-end { display: block; font-size: 0.75rem; color: var(--muted); }

/* 価格: 縦2段（1段目=定価/打ち消し, 2段目=セール価格/強調）。セールなしは1段。 */
.dch-price-link { text-decoration: none; }
.dch-price {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.25;
}
.dch-price-list {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 0.85em;
}
.dch-price-sale {
  color: var(--sale);
  font-weight: 700;
}
.dch-price-current { font-weight: 700; }

/* 取り扱い: アイコン（在=◯緑 / 無=✕グレー） */
.dch-avail {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
}
.dch-avail--in      { color: var(--in); }
.dch-avail--none    { color: var(--muted); }
.dch-avail--pending { color: var(--muted); } /* candidate: 在無どちらにも数えない neutral 表示 */

/* 最安バッジ（comparator 判定・素価格のみ） */
.dch-badge--cheapest { background: rgba(76,175,120,.18); color: var(--in); }

/* 最安サマリー文（動的・固定文ではない） */
.dch-cheapest {
  margin: 0 0 14px;
  padding: 10px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}
.dch-cheapest--empty { color: var(--muted); font-weight: 400; }

/* 還元: 数値を出さず「あり（条件付き）」を統一表示 */
.dch-rebate-flag { font-size: 0.85rem; color: var(--text); }

/* 還元の条件アコーディオン（native details） */
.dch-rebate {
  margin: 16px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-surface);
  padding: 8px 14px;
}
.dch-rebate__summary { cursor: pointer; font-weight: 700; }
.dch-rebate__list { margin: 10px 0 0; padding-left: 1.2em; }
.dch-rebate__list li { margin: 4px 0; font-size: 0.9rem; }
.dch-rebate__note { margin: 8px 0 0; font-size: 0.78rem; color: var(--muted); }

/* ---------------------------------------------------------------------------
   スマホ: テーブルをストアごとのカードに組み替える（横スクロール回避）
   価格の縦2段はそのまま維持される。
   --------------------------------------------------------------------------- */
@media (max-width: 600px) {
  /* 1ストア=1カード。
       [ヘッダー] 店名 ＋ 取り扱い：◯/✕（◯=緑 / ✕=グレー）
       価格    ¥660 → ¥594
       セール   -10% 〜6/13まで
       還元    15%（なければ行ごと非表示）
     価格/セールのラベルは固定幅(6em)で値の開始位置を縦に揃える。PC表示は不変。 */
  .dch-offer-table {
    border: none;
    background: transparent;
  }
  .dch-offer-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
  .dch-offer-table,
  .dch-offer-table tbody {
    display: block;
  }

  /* カード本体 */
  .dch-offer-table tr {
    position: relative;
    display: block;
    background: var(--bg-surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    margin-bottom: 8px;
    padding: 8px 12px;
  }
  .dch-offer-table th,
  .dch-offer-table td {
    display: block;
    border: none;
  }

  /* ヘッダー: 店名（下線） */
  .dch-offer-table tbody th[scope="row"] {
    text-align: left;
    font-size: 1.05rem;
    padding: 0 0 5px;
    margin-bottom: 6px;
    border-bottom: 1px solid var(--line);
  }
  /* 取り扱い：◯/✕ をヘッダー右に重ねる（◯=緑 / ✕=グレー） */
  .dch-offer-table .dch-col-avail {
    position: absolute;
    top: 8px;
    right: 12px;
    padding: 0;
  }
  .dch-offer-table .dch-col-avail::before {
    content: "取り扱い：";
    color: var(--muted);
    font-size: 0.9rem;
  }

  /* 値行: ラベル(6em固定) ｜ 値。ラベルは値に対して縦中央。行間を一定に。 */
  .dch-offer-table .dch-col-price,
  .dch-offer-table .dch-col-sale,
  .dch-offer-table .dch-col-point,
  .dch-offer-table td.dch-muted {
    display: flex;
    align-items: center;
    column-gap: 8px;
    padding: 3px 0;
    text-align: left;
  }
  .dch-offer-table .dch-col-price::before,
  .dch-offer-table .dch-col-sale::before,
  .dch-offer-table .dch-col-point::before,
  .dch-offer-table td.dch-muted::before {
    content: attr(data-label);
    flex: 0 0 6em;
    color: var(--muted);
  }

  /* 価格は1行「¥660 → ¥594」（スマホでも2段にしない） */
  .dch-offer-table .dch-col-price .dch-price {
    flex-direction: row;
    align-items: baseline;
    gap: 6px;
  }
  .dch-offer-table .dch-col-price .dch-price-sale::before {
    content: "→";
    color: var(--muted);
    margin-right: 4px;
    font-weight: 400;
  }

  /* セール終了日 */
  .dch-sale-end {
    display: inline;
    font-size: 0.8rem;
  }

  /* 還元なしは行ごと非表示 */
  .dch-offer-table .dch-col-point:has(> .dch-muted) {
    display: none;
  }
}

/* ===========================================================================
   年齢確認モーダル
   =========================================================================== */
.dch-age-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 10, .92);
  padding: 20px;
}
.dch-age-modal__inner {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  max-width: 440px;
  width: 100%;
  padding: 32px 24px;
  text-align: center;
}
.dch-age-modal__title { font-size: 1.25rem; margin: 0 0 16px; }
.dch-age-modal__copy { color: var(--muted); margin: 0 0 24px; }
.dch-age-modal__buttons { display: flex; gap: 12px; justify-content: center; }
.dch-age-btn {
  cursor: pointer;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 700;
}
.dch-age-btn--yes { background: var(--accent); color: #fff; }
.dch-age-btn--no  { background: var(--bg-surface); color: var(--muted); border: 1px solid var(--line); }
.dch-age-btn__sub { display: block; font-size: 0.72rem; font-weight: 400; opacity: .85; }

/* ===========================================================================
   一覧/アーカイブ カード（STAGE_DESIGN2・トークン参照）
   =========================================================================== */
.dch-archive__title {
  font-size: 1.5rem;
  margin: 0 0 20px;
}
.dch-archive__kicker {
  display: inline-block;
  margin-right: 8px;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--accent-bg);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  vertical-align: middle;
}

/* グリッド: auto-fill/minmax で広幅=多列・狭幅=自然に列減 */
.dch-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--gap);
}
@media (max-width: 480px) {
  .dch-card-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
}

/* カード本体 */
.dch-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.dch-card:hover {
  background: var(--bg-elev-2);
  border-color: var(--accent-dim);
  transform: translateY(-2px);
}

/* サムネ: アスペクト比固定の箱で CLS 抑制。縦長/横長混在のため contain で見切れ防止（§6-A）。
   縦長は左右、横長は上下に余白が出るが切れない。カード高さは箱で揃う。 */
.dch-card__thumb {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  background: var(--bg-elev);
  overflow: hidden;
}
.dch-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.dch-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  background:
    repeating-linear-gradient(45deg, var(--bg-elev) 0 10px, var(--bg-elev-2) 10px 20px);
}
.dch-card__placeholder svg { width: 40px; height: 40px; }

/* SALE バッジ（サムネ左上にオーバーレイ） */
.dch-card__sale {
  position: absolute;
  top: 8px; left: 8px;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  background: var(--sale);
  color: #1a1a1a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: .04em;
}

/* 本文 */
.dch-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 12px 12px;
}
.dch-card__title {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}
.dch-card__title a {
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;        /* 2行で省略 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dch-card__title a:hover { color: var(--accent); text-decoration: none; }

.dch-card__meta { margin: 0; font-size: 0.8rem; }
.dch-card__term { color: var(--text-dim); }

/* 取扱ストアバッジ（在＝origin/confirmed） */
.dch-card__stores {
  list-style: none;
  margin: 2px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.dch-store-badge {
  padding: 1px 7px;
  border-radius: var(--radius-sm);
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.6;
}

/* 最低価格 */
.dch-card__price {
  margin: 4px 0 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.dch-card__price-label { font-size: 0.72rem; color: var(--text-faint); }
.dch-card__price-value { font-size: 1.05rem; font-weight: 800; color: var(--text); }
.dch-card__price-none { font-size: 0.8rem; color: var(--text-faint); }

/* ページネーション（最小・トークン参照） */
.dch-single .pagination,
.dch-single .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 28px;
}
.dch-single .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-dim);
}
.dch-single .page-numbers:hover { background: var(--bg-elev-2); color: var(--text); text-decoration: none; }
.dch-single .page-numbers.current {
  background: var(--accent-bg);
  border-color: var(--accent-dim);
  color: var(--accent);
}

/* ===========================================================================
   個別作品ページ（STAGE_DESIGN3・比較表が主役・トークン参照）
   =========================================================================== */

/* パンくず（§6-E） */
.dch-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0 0 18px;
  font-size: 0.82rem;
  color: var(--text-faint);
}
.dch-breadcrumb a { color: var(--text-dim); }
.dch-breadcrumb a:hover { color: var(--accent); text-decoration: none; }
.dch-breadcrumb__sep { color: var(--text-faint); }
.dch-breadcrumb__current {
  color: var(--text-faint);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

/* 作品情報（カバー左・情報右。狭幅は縦積み / §6-B） */
.dch-work {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 20px;
  margin: 0 0 24px;
}

/* カバー: 向き判定なし contain（縦長/横長とも見切れない / §5・§6-A）。
   枠地＋中央寄せ＋max-height 頭打ちで、縦は左右・横は上下に余白が出る。 */
.dch-work__cover {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 8px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.dch-work__img {
  max-width: 100%;
  max-height: 380px;
  width: auto;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}
.dch-work__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 280px;
  color: var(--text-faint);
}
.dch-work__placeholder svg { width: 56px; height: 56px; }

.dch-work__info { min-width: 0; }
.dch-work__title {
  font-size: 1.4rem;
  line-height: 1.4;
  margin: 0 0 10px;
}
.dch-work__byline { margin: 0 0 12px; font-size: 0.92rem; }
.dch-work__term {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  color: var(--text-dim);
}
.dch-work__term:hover { color: var(--accent); border-color: var(--accent-dim); text-decoration: none; }

/* 作品説明（本文） */
.dch-comic__body {
  margin: 0 0 28px;
  color: var(--text-dim);
}

/* 比較表セクション＝主役。見出しを少し強める。 */
.dch-offers { margin-top: 8px; }

/* 狭幅: カバー上・情報下に縦積み（§6-B）。比較表のスマホ表示は既存流用。 */
@media (max-width: 600px) {
  .dch-work {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .dch-work__cover {
    max-width: 260px;
    margin: 0 auto;
  }
  .dch-work__title { font-size: 1.2rem; }
}
