/* =========================================================================
 *  并购重组案例库 —— 样式
 * ========================================================================= */

:root {
  --navy:        #0f2a44;
  --navy-light:  #1c3e5e;
  --navy-deep:   #0a1f33;
  --gold:        #b08d4f;
  --gold-light:  #c9a96a;
  --ink:         #1f2933;
  --ink-soft:    #52606d;
  --line:        #e3e7ec;
  --line-soft:   #eef1f4;
  --bg:          #f6f7f9;
  --card:        #ffffff;
  --a-share:     #b03a3a;   /* A股 暖红 */
  --a-share-bg:  #fbeeee;
  --h-share:     #2f7d77;   /* H股 青 */
  --h-share-bg:  #e9f4f3;
  --hk:          #3a5fa8;   /* 港股 蓝 */
  --hk-bg:       #ebf0f9;
  --radius:      10px;
  --shadow:      0 1px 3px rgba(15, 42, 68, .06), 0 6px 18px rgba(15, 42, 68, .05);
  --shadow-hover:0 4px 10px rgba(15, 42, 68, .10), 0 14px 32px rgba(15, 42, 68, .10);
  --serif: "Noto Serif SC", "Source Han Serif SC", Georgia, "Songti SC", serif;
  --sans:  "Noto Sans SC", -apple-system, BlinkMacSystemFont, "Segoe UI",
           "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ---------- 顶部品牌栏 ---------- */
.site-header {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-light) 100%);
  color: #fff;
  border-bottom: 3px solid var(--gold);
}
.site-header .inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 22px 24px 20px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.brand h1 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  letter-spacing: .5px;
}
.brand .sub {
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  letter-spacing: 1px;
}
.header-actions { display: flex; gap: 10px; align-items: center; }
.header-link {
  font-size: 13px;
  color: rgba(255, 255, 255, .8);
  border: 1px solid rgba(255, 255, 255, .25);
  padding: 5px 14px;
  border-radius: 6px;
  transition: all .15s ease;
}
.header-link:hover { background: rgba(255, 255, 255, .12); color: #fff; }

/* ---------- 索引标签栏（吸顶） ---------- */
.tabbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(15, 42, 68, .04);
}
.tabbar .inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
}
.tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 11px 0;
  scrollbar-width: thin;
}
.tabs::-webkit-scrollbar { height: 5px; }
.tabs::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.tab {
  flex: 0 0 auto;
  font-size: 13.5px;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: all .15s ease;
  user-select: none;
}
.tab:hover { border-color: var(--gold-light); color: var(--ink); }
.tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  font-weight: 500;
}
.tab .count {
  margin-left: 5px;
  font-size: 11px;
  opacity: .65;
}

/* ---------- 工具行（搜索 / 计数） ---------- */
.toolrow {
  max-width: 1080px;
  margin: 22px auto 4px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.search-box {
  position: relative;
  flex: 1 1 280px;
  max-width: 360px;
}
.search-box input {
  width: 100%;
  padding: 9px 14px 9px 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--sans);
  background: #fff;
  transition: border-color .15s ease;
}
.search-box input:focus { outline: none; border-color: var(--gold-light); }
.search-box .ico {
  position: absolute;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  color: var(--ink-soft);
  font-size: 14px;
}
.result-count { font-size: 13px; color: var(--ink-soft); }

/* ---------- 主体 / 时间线 ---------- */
main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 8px 24px 80px;
}
.month-group { margin-top: 26px; }
.month-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}
.month-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}
.month-label .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-light, #c9a96a)22;
  flex: 0 0 auto;
}

.cards { display: flex; flex-direction: column; gap: 12px; }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--navy-light);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .12s ease, box-shadow .15s ease, border-color .15s ease;
}
.card:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
  border-left-color: var(--gold);
}
.card-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.45;
}
.card-summary {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 12px;
}
.card-tags { display: flex; flex-wrap: wrap; gap: 6px; }

/* 标签按市场上色 */
.pill {
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 999px;
  font-weight: 500;
  white-space: nowrap;
}
.pill.m-a  { color: var(--a-share); background: var(--a-share-bg); }
.pill.m-h  { color: var(--h-share); background: var(--h-share-bg); }
.pill.m-hk { color: var(--hk);      background: var(--hk-bg); }
.pill.m-rel{ color: var(--gold); background: #faf4e8; border: 1px solid #ecdcc0; }

/* ---------- 富文本详情内容（前台详情 + 后台编辑器共用）---------- */
.rich-content { font-size: 15px; line-height: 1.78; color: var(--ink); }
.rich-content.plain { white-space: pre-wrap; }
.rich-content > *:first-child { margin-top: 0; }
.rich-content h3, .rich-content h4 {
  font-family: var(--serif);
  color: var(--navy);
  margin: 18px 0 8px;
  line-height: 1.4;
}
.rich-content h3 { font-size: 17px; }
.rich-content h4 { font-size: 15.5px; }
.rich-content p { margin: 0 0 10px; }
.rich-content ul, .rich-content ol { margin: 0 0 10px; padding-left: 22px; }
.rich-content li { margin: 3px 0; }
.rich-content blockquote {
  margin: 12px 0;
  padding: 8px 14px;
  border-left: 3px solid var(--gold);
  background: #faf7f0;
  color: var(--ink-soft);
  border-radius: 0 6px 6px 0;
}
.rich-content a { color: var(--hk); text-decoration: underline; }
.rich-content strong { font-weight: 700; }
.rich-content hr { border: none; border-top: 1px solid var(--line); margin: 16px 0; }

.rich-content table,
.editor-area table {
  border-collapse: collapse;
  width: 100%;
  margin: 12px 0;
  font-size: 14px;
}
.rich-content th, .rich-content td,
.editor-area th, .editor-area td {
  border: 1px solid var(--line);
  padding: 7px 10px;
  text-align: left;
  vertical-align: top;
  min-width: 40px;
}
.rich-content th,
.editor-area th {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
}
.rich-content tbody tr:nth-child(even),
.editor-area tbody tr:nth-child(even) { background: #f7f9fb; }

/* ---------- 后台富文本编辑器 ---------- */
.editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 7px;
  border: 1px solid var(--line);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  background: #fafbfc;
}
.editor-toolbar button {
  min-width: 30px;
  height: 30px;
  padding: 0 9px;
  border: 1px solid transparent;
  background: #fff;
  border-radius: 5px;
  cursor: pointer;
  font-size: 13px;
  color: var(--ink);
  transition: all .12s ease;
  line-height: 1;
}
.editor-toolbar button:hover { border-color: var(--gold-light); }
.editor-toolbar .tb-sep { width: 1px; background: var(--line); margin: 3px 4px; }
.editor-area {
  min-height: 240px;
  max-height: 70vh;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 0 0 8px 8px;
  padding: 12px 16px;
  background: #fff;
  resize: vertical;
}
.editor-area:focus { outline: none; border-color: var(--gold-light); }
.editor-area:empty:before {
  content: attr(data-placeholder);
  color: #abb3bd;
}
/* PC 端给更大的默认编辑高度 */
@media (min-width: 880px) {
  .editor-area { min-height: 360px; }
}

/* 放大编辑（全屏）模式 */
.editor-wrap.maximized {
  position: fixed;
  inset: 3vh 4vw;
  z-index: 320;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(10, 31, 51, .4);
  display: flex;
  flex-direction: column;
  padding: 14px;
}
.editor-wrap.maximized .editor-toolbar { border-radius: 8px 8px 0 0; }
.editor-wrap.maximized .editor-area {
  flex: 1;
  min-height: 0;
  max-height: none;
  resize: none;
  border-radius: 0 0 8px 8px;
}
.editor-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 31, 51, .45);
  z-index: 310;
}
.editor-backdrop.show { display: block; }

/* ---------- 相关案例 / 进展脉络 ---------- */
.related-block {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.related-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: .3px;
}
.related-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all .14s ease;
}
.related-item:hover { border-color: var(--gold-light); background: #fffdf8; }
.related-item .related-date {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.related-item .related-name {
  font-size: 13.5px;
  color: var(--ink);
}

/* ---------- 空状态 ---------- */
.empty {
  text-align: center;
  color: var(--ink-soft);
  padding: 70px 20px;
  font-size: 15px;
}
.empty .big { font-size: 40px; margin-bottom: 12px; opacity: .4; }

/* ---------- 浏览量 / 点赞 ---------- */
.stat-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
}
.stat-item { font-size: 13px; color: var(--ink-soft); }
.stat-item b { color: var(--ink); font-weight: 600; }
.like-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  color: var(--ink-soft);
  font-family: var(--sans);
  transition: all .15s ease;
}
.like-btn .heart { color: #c0392b; font-size: 15px; line-height: 1; }
.like-btn:hover { border-color: #e3b4b4; }
.like-btn.liked {
  background: #fbeeee;
  border-color: #e3b4b4;
  color: var(--a-share);
  font-weight: 600;
}

/* ---------- 详情弹窗 ---------- */
.modal-mask {
  position: fixed; inset: 0;
  background: rgba(10, 31, 51, .55);
  backdrop-filter: blur(2px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  z-index: 100;
  padding: 60px 20px;
  overflow-y: auto;
}
.modal-mask.show { display: flex; }
.modal {
  background: #fff;
  border-radius: 14px;
  max-width: 680px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(10, 31, 51, .3);
  border-top: 4px solid var(--gold);
  animation: pop .16s ease;
}
@keyframes pop { from { transform: translateY(8px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-head {
  padding: 24px 28px 16px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.modal-head .date {
  font-size: 13px; color: var(--gold);
  font-weight: 600; letter-spacing: .5px;
  margin-bottom: 6px;
}
.modal-head h2 {
  font-family: var(--serif);
  font-size: 21px; margin: 0 0 12px;
  color: var(--ink); line-height: 1.4;
}
.modal-close {
  position: absolute; top: 18px; right: 20px;
  width: 30px; height: 30px;
  border: none; background: var(--line-soft);
  border-radius: 50%; cursor: pointer;
  font-size: 17px; color: var(--ink-soft);
  line-height: 1; transition: background .15s ease;
}
.modal-close:hover { background: var(--line); }
.modal-body {
  padding: 20px 28px 28px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.75;
}
.modal-body .summary-line {
  font-size: 15px; color: var(--ink-soft);
  font-style: italic; margin-bottom: 16px;
  padding-left: 12px; border-left: 3px solid var(--line);
}

/* ---------- 公开评论 ---------- */
.comments-block {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.comments-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: .3px;
}
.comments-title span { color: var(--ink-soft); font-weight: 500; }
.comments-list { margin-bottom: 14px; }
.cm-empty { font-size: 13px; color: var(--ink-soft); padding: 6px 0 10px; }
.cm-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
}
.cm-item:last-child { border-bottom: none; }
.cm-meta {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}
.cm-meta b { font-size: 13.5px; color: var(--ink); }
.cm-meta span { font-size: 11.5px; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.cm-text { font-size: 14px; color: var(--ink); line-height: 1.65; white-space: pre-wrap; }

/* ---------- 客户咨询 / 留言 ---------- */
.inquiry-block {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.inquiry-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
  letter-spacing: .3px;
}
.inquiry-sub { font-size: 12.5px; color: var(--ink-soft); margin: 0 0 12px; }
.iq-input {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 14px;
  font-family: var(--sans);
  color: var(--ink);
  margin-bottom: 9px;
}
.iq-input:focus { outline: none; border-color: var(--gold-light); }
textarea.iq-input { min-height: 82px; resize: vertical; line-height: 1.6; }
.iq-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.inquiry-actions { display: flex; align-items: center; gap: 12px; }
.btn-inquiry {
  padding: 9px 22px;
  border: none;
  border-radius: 7px;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-family: var(--sans);
  cursor: pointer;
  transition: background .15s ease;
}
.btn-inquiry:hover { background: var(--navy-light); }
.btn-inquiry:disabled { opacity: .6; cursor: default; }
.inquiry-tip { font-size: 13px; }
.inquiry-tip.ok { color: var(--h-share); }
.inquiry-tip.err { color: var(--a-share); }

/* ---------- 页脚 ---------- */
.site-footer {
  text-align: center;
  color: var(--ink-soft);
  font-size: 12.5px;
  padding: 28px 20px 40px;
  border-top: 1px solid var(--line);
  background: #fff;
}

/* ====================== admin 后台专用 ====================== */
.admin-wrap { max-width: 1080px; margin: 0 auto; padding: 28px 24px 80px; }
.admin-grid { display: grid; grid-template-columns: 420px 1fr; gap: 28px; align-items: start; }
@media (max-width: 880px) { .admin-grid { grid-template-columns: 1fr; } }

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}
.panel h3 {
  font-family: var(--serif);
  margin: 0 0 16px;
  font-size: 17px;
  color: var(--navy);
  display: flex; align-items: center; gap: 8px;
}
.panel.sticky { position: sticky; top: 16px; }

.field { margin-bottom: 15px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.field label .req { color: var(--a-share); }
.field input[type=text],
.field input[type=month],
.field textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 14px;
  font-family: var(--sans);
  color: var(--ink);
  transition: border-color .15s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold-light); }
.field textarea { resize: vertical; min-height: 90px; line-height: 1.6; }
.field .hint { font-size: 12px; color: var(--ink-soft); margin-top: 4px; }

.tagpick { display: flex; flex-wrap: wrap; gap: 7px; }
.tagpick label {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12.5px; font-weight: 500;
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  user-select: none;
  transition: all .12s ease;
  margin: 0;
}
.tagpick label:hover { border-color: var(--gold-light); }
.tagpick input { display: none; }
.tagpick label.on { background: var(--navy); color: #fff; border-color: var(--navy); }

/* 相关案例选择器 */
.rel-pick {
  margin-top: 8px;
  max-height: 220px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px;
  background: #fcfcfd;
}
.rel-empty { font-size: 12.5px; color: var(--ink-soft); padding: 10px; text-align: center; }
.rel-opt {
  display: flex; align-items: baseline; gap: 9px;
  padding: 7px 9px;
  border-radius: 6px;
  cursor: pointer;
  margin: 0;
  transition: background .12s ease;
}
.rel-opt:hover { background: #fff; }
.rel-opt.on { background: var(--hk-bg); }
.rel-opt input { display: none; }
.rel-opt .rel-d {
  flex: 0 0 auto; font-size: 11.5px; font-weight: 600;
  color: var(--gold); font-variant-numeric: tabular-nums;
}
.rel-opt .rel-t { font-size: 13px; color: var(--ink); }
.rel-opt.on .rel-t { font-weight: 600; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 9px 18px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--sans);
  cursor: pointer;
  transition: all .15s ease;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-light); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--gold-light); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-light); }
.btn-danger { background: #fff; color: var(--a-share); border-color: #f0d4d4; }
.btn-danger:hover { background: var(--a-share-bg); }
.btn-sm { padding: 5px 11px; font-size: 12.5px; }
.btn-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }

.admin-toolbar {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 18px; align-items: center;
}
.admin-toolbar .spacer { flex: 1; }

.adm-list { display: flex; flex-direction: column; gap: 10px; }
.adm-item {
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 13px 15px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  transition: border-color .15s ease;
}
.adm-item:hover { border-color: var(--gold-light); }
.adm-item.editing { border-color: var(--navy); box-shadow: 0 0 0 2px rgba(15,42,68,.08); }
.adm-item .meta { min-width: 0; }
.adm-item .t { font-weight: 600; font-size: 14.5px; margin-bottom: 3px; }
.adm-item .s { font-size: 12.5px; color: var(--ink-soft); margin-bottom: 7px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 380px; }
.adm-item .d { font-size: 11.5px; color: var(--gold); font-weight: 600; }
.adm-item .acts { display: flex; gap: 6px; flex: 0 0 auto; }

.toast {
  position: fixed; bottom: 26px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy-deep); color: #fff;
  padding: 11px 22px; border-radius: 8px;
  font-size: 14px; box-shadow: 0 8px 28px rgba(10,31,51,.35);
  opacity: 0; pointer-events: none;
  transition: all .25s ease; z-index: 200;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.callout {
  background: var(--hk-bg);
  border: 1px solid #d7e1f2;
  color: var(--navy);
  border-radius: 9px;
  padding: 13px 16px;
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 18px;
}
.callout b { color: var(--navy-deep); }

/* ---------- 后台登录闸门 ---------- */
.gate-mask {
  position: fixed; inset: 0;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  display: flex; align-items: center; justify-content: center;
  z-index: 500; padding: 20px;
}
.gate-card {
  background: #fff;
  border-radius: 14px;
  border-top: 4px solid var(--gold);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  width: 100%; max-width: 360px;
  padding: 32px 30px 28px;
  text-align: center;
}
.gate-card h2 {
  font-family: var(--serif);
  font-size: 20px; margin: 0 0 6px; color: var(--navy);
}
.gate-card p { font-size: 13px; color: var(--ink-soft); margin: 0 0 20px; }
.gate-card input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--sans);
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.gate-card input:focus { outline: none; border-color: var(--gold-light); }
.gate-card .gate-err {
  color: var(--a-share); font-size: 12.5px;
  min-height: 18px; margin-bottom: 8px;
}
.gate-card .btn { width: 100%; }
.app-hidden { display: none !important; }
.callout code {
  background: #fff; padding: 1px 6px; border-radius: 4px;
  font-size: 12.5px; border: 1px solid #d7e1f2;
}
