/* ==========================================================================
   HOLD GROUP — Componentes de interface  v1.0
   Requer hold-tokens.css carregado antes.

   Índice
     1. Base e acessibilidade      6. Formulários
     2. Estrutura (shell)          7. Tabelas e estados vazios
     3. Barra lateral              8. Avisos, painéis e listas
     4. Barra superior             9. Toasts e modal
     5. Botões, cards, tags       10. Responsivo e impressão
   ========================================================================== */

/* ------------------------------------------- 1. Base e acessibilidade ---- */

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, p, dl, dd, figure { margin: 0; }
h1 { font-size: clamp(1.45rem, 2.2vw, 1.85rem); line-height: 1.18; letter-spacing: -0.028em; }
h2 { font-size: 1.06rem; line-height: 1.3; letter-spacing: -0.014em; }
h3 { font-size: 0.95rem; line-height: 1.35; letter-spacing: -0.01em; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
table { border-collapse: collapse; width: 100%; }
a { color: var(--primary); }

.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

:focus-visible {
  outline: 3px solid var(--primary-ring);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: var(--r-sm);
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-200%);
  transition: transform var(--ease);
}
.skip-link:focus { transform: translateY(0); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}

/* Canto chanfrado — eco da letra "D" da marca HOLD.
   Aplique com moderação: cartões de destaque, nunca em tudo. */
.notch {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 17px), calc(100% - 17px) 100%, 0 100%);
}

/* ------------------------------------------------ 2. Estrutura (shell) --- */

.app { min-height: 100vh; }

.app__main {
  margin-left: var(--sidebar-w);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.scrim {
  position: fixed;
  inset: 0;
  z-index: 89;
  background: rgba(8, 12, 18, 0.5);
  backdrop-filter: blur(2px);
}

.content {
  flex: 1;
  padding: clamp(20px, 3vw, 30px) clamp(16px, 3vw, 30px) 56px;
  max-width: var(--content-max);
  width: 100%;
}

.page-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.page-head p { margin-top: 7px; max-width: 68ch; color: var(--text-soft); font-size: 0.925rem; }
.page-head__actions { display: flex; flex-wrap: wrap; gap: 9px; }

/* Grade padrão: coluna principal + coluna de apoio de 352px. */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 352px;
  align-items: start;
  gap: 16px;
}
.stack { display: grid; gap: 16px; align-content: start; }
.duo { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 16px; }
.rows { display: grid; gap: 10px; }
.row-between { display: flex; align-items: center; justify-content: space-between; gap: 12px; }

/* --------------------------------------------------- 3. Barra lateral ---- */

.sidebar {
  position: fixed;
  z-index: 90;
  inset: 0 auto 0 0;
  display: flex;
  flex-direction: column;
  width: var(--sidebar-w);
  padding: 18px 12px 14px;
  color: var(--sidebar-ink);
  background: linear-gradient(180deg, var(--sidebar-bg), var(--sidebar-bg-2));
  border-right: 1px solid var(--sidebar-line);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 12px 13px;
  margin-bottom: 16px;
  border-radius: var(--r);
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--sidebar-line);
  transition: background var(--ease);
}
.brand:hover { background: rgba(255, 255, 255, 0.075); }
.brand__mark { flex: none; width: 30px; height: 30px; color: #fff; }
.brand__divider { flex: none; width: 1px; align-self: stretch; background: var(--sidebar-line); }
.brand__text { display: grid; gap: 5px; min-width: 0; }
.brand__logo { width: 96px; height: auto; color: #fff; }
.brand__product {
  font-size: 0.688rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sidebar-dim);
}

.nav { display: grid; gap: 2px; }
.nav__label {
  margin: 16px 0 6px;
  padding: 0 12px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--sidebar-dim);
}
.nav__label:first-child { margin-top: 2px; }

.nav a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 12px;
  border-radius: var(--r-sm);
  font-size: 0.885rem;
  font-weight: 500;
  color: var(--sidebar-ink);
  text-decoration: none;
  transition: background var(--ease), color var(--ease);
}
.nav a svg { flex: none; width: 18px; height: 18px; fill: currentColor; opacity: 0.62; }
.nav a:hover { background: rgba(255, 255, 255, 0.07); }
.nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  font-weight: 600;
}
.nav a[aria-current="page"] svg { opacity: 1; }
/* Marcador vermelho: único uso decorativo do vermelho institucional. */
.nav a[aria-current="page"]::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--hg-vermelho);
}
.nav .pill {
  margin-left: auto;
  min-width: 21px;
  padding: 1px 6px;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background: var(--hg-vermelho);
}

.sidebar__foot {
  margin-top: auto;
  padding: 14px 12px 2px;
  border-top: 1px solid var(--sidebar-line);
  display: grid;
  gap: 5px;
}
.sidebar__foot small { font-size: 0.7rem; color: var(--sidebar-dim); }
.conn { display: flex; align-items: center; gap: 8px; font-size: 0.775rem; color: var(--sidebar-ink); }
.conn i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #3cbf85;
  box-shadow: 0 0 0 3px rgba(60, 191, 133, 0.2);
}
.conn.is-off i { background: var(--hg-vermelho); box-shadow: 0 0 0 3px rgba(170, 45, 41, 0.22); }

/* --------------------------------------------------- 4. Barra superior --- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 14px;
  height: var(--topbar-h);
  padding: 0 clamp(16px, 3vw, 30px);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar__menu { display: none; }
.topbar__context { display: grid; min-width: 0; overflow: hidden; }
.topbar__context span, .topbar__context strong {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.topbar__context span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.topbar__context strong { font-size: 0.94rem; letter-spacing: -0.01em; }
.topbar__actions { display: flex; flex: none; align-items: center; gap: 10px; margin-left: auto; }

.clock {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
  color: var(--text-soft);
  padding: 6px 11px;
  border-radius: var(--r-sm);
  background: var(--surface-3);
  white-space: nowrap;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--text-soft);
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.icon-btn:hover { background: var(--surface-3); color: var(--text); }
.icon-btn svg { width: 18px; height: 18px; fill: currentColor; }
#themeToggle .i-moon { display: none; }
[data-theme="dark"] #themeToggle .i-sun { display: none; }
[data-theme="dark"] #themeToggle .i-moon { display: block; }

.who { display: flex; align-items: center; gap: 9px; }
.who__text { display: grid; line-height: 1.2; }
.who__text strong { font-size: 0.82rem; }
.who__text small { font-size: 0.68rem; color: var(--text-dim); }
.avatar {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* ------------------------------------------ 5. Botões, cards, tags ------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  font-size: 0.87rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: background var(--ease), border-color var(--ease), color var(--ease), opacity var(--ease);
}
.btn svg { width: 16px; height: 16px; fill: currentColor; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }

.btn--primary { background: var(--primary); color: var(--primary-ink); }
.btn--primary:not(:disabled):hover { background: color-mix(in srgb, var(--primary) 86%, #000); }
.btn--secondary { background: var(--surface); color: var(--text); border-color: var(--line-strong); }
.btn--secondary:not(:disabled):hover { background: var(--surface-3); }
.btn--danger { background: var(--danger); color: #fff; }
.btn--danger:not(:disabled):hover { background: color-mix(in srgb, var(--danger) 85%, #000); }
.btn--ghost { background: transparent; color: var(--text-soft); }
.btn--ghost:not(:disabled):hover { background: var(--surface-3); color: var(--text); }
.btn--block { width: 100%; }
.btn--sm { padding: 6px 11px; font-size: 0.79rem; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-1);
  overflow: hidden;
}
.card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px 14px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}
.card__head > div:first-child { min-width: min(100%, 210px); flex: 1 1 auto; }
.card__head p { margin-top: 3px; font-size: 0.8rem; color: var(--text-soft); }
.card__body { padding: 18px; display: grid; gap: 15px; }
.card__body--flush { padding: 0; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.tag--success { background: var(--success-soft); color: var(--success); }
.tag--danger  { background: var(--danger-soft);  color: var(--danger); }
.tag--warning { background: var(--warning-soft); color: var(--warning); }
.tag--info    { background: var(--info-soft);    color: var(--info); }
.tag--neutral { background: var(--surface-3);    color: var(--text-soft); }

/* Chip de placa — use para qualquer identificador de veículo. */
.plate {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 10px;
  border: 1.5px solid var(--text);
  border-radius: var(--r-xs);
  background: var(--surface);
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--text);
}
.plate::before {
  content: "";
  width: 4px;
  align-self: stretch;
  margin: -4px 0 -4px -10px;
  border-radius: var(--r-xs) 0 0 var(--r-xs);
  background: var(--hg-marinho);
}
[data-theme="dark"] .plate::before { background: var(--info); }

/* Cartão de métrica — a barra colorida à esquerda vem de --accent. */
.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 13px;
  margin-bottom: 20px;
}
.metric {
  position: relative;
  padding: 15px 17px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-1);
  overflow: hidden;
}
.metric::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--accent, var(--line-strong));
}
.metric__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.735rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.metric__top svg { width: 17px; height: 17px; fill: var(--accent, var(--text-dim)); opacity: 0.9; }
.metric__value {
  display: block;
  margin: 7px 0 3px;
  font-size: 1.95rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
}
.metric__note { font-size: 0.775rem; color: var(--text-soft); }

/* --------------------------------------------------- 6. Formulários ------ */

label.field { display: grid; gap: 6px; font-size: 0.79rem; font-weight: 600; color: var(--text-soft); }
label.field > span.hint { font-weight: 400; font-size: 0.73rem; color: var(--text-dim); }

input, select, textarea {
  width: 100%;
  padding: 9px 11px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 400;
  transition: border-color var(--ease), box-shadow var(--ease);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-ring);
}
input[type="file"] { padding: 7px 9px; font-size: 0.8rem; }
input:invalid:not(:placeholder-shown) { border-color: var(--danger); }
textarea { min-height: 74px; resize: vertical; }
select {
  appearance: none;
  padding-right: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%237d8798' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 7px center;
  background-size: 18px;
}
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }
.form-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.field-error { font-size: 0.76rem; font-weight: 500; color: var(--danger); }

.filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 11px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}

/* --------------------------------------- 7. Tabelas e estados vazios ----- */

.table-wrap { overflow-x: auto; }
table { font-size: 0.83rem; }
thead th {
  position: sticky;
  top: 0;
  padding: 10px 14px;
  text-align: left;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
tbody td { padding: 11px 14px; border-bottom: 1px solid var(--line); vertical-align: middle; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: var(--surface-2); }
td.num, th.num { text-align: right; font-variant-numeric: tabular-nums; font-family: var(--mono); }
td.actions-cell { text-align: right; white-space: nowrap; }

.empty {
  display: grid;
  justify-items: center;
  gap: 9px;
  padding: 38px 22px;
  text-align: center;
  color: var(--text-soft);
}
.empty svg { width: 34px; height: 34px; fill: var(--line-strong); }
.empty strong { color: var(--text); font-size: 0.94rem; }
.empty p { font-size: 0.83rem; max-width: 42ch; }

/* ------------------------------- 8. Avisos, painéis, listas, timeline ---- */

.panel {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--surface-2);
}
.panel span { font-size: 0.71rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--text-dim); }
.panel strong { font-size: 1.02rem; letter-spacing: -0.015em; }
.panel p { font-size: 0.82rem; color: var(--text-soft); }

.notice {
  display: flex;
  gap: 11px;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  font-size: 0.83rem;
  line-height: 1.45;
}
.notice svg { flex: none; width: 18px; height: 18px; fill: currentColor; margin-top: 1px; }
.notice strong { display: block; margin-bottom: 2px; }
.notice--info { background: var(--info-soft); color: var(--info); }
.notice--warning { background: var(--warning-soft); color: var(--warning); }
.notice--danger { background: var(--danger-soft); color: var(--danger); }
.notice--success { background: var(--success-soft); color: var(--success); }

.people { display: grid; gap: 2px; }
.person { display: flex; align-items: center; gap: 11px; padding: 9px 10px; border-radius: var(--r-sm); }
.person:hover { background: var(--surface-2); }
.person__id { flex: 1; min-width: 0; }
.person__id strong { display: block; font-size: 0.85rem; font-weight: 600; }
.person__id small { display: block; font-size: 0.73rem; color: var(--text-dim); font-family: var(--mono); }

.api-list { display: grid; gap: 11px; }
.api-list > div { display: grid; gap: 3px; }
.api-list strong { font-size: 0.8rem; }
code { font-family: var(--mono); font-size: 0.735rem; color: var(--text-soft); word-break: break-all; }
pre {
  margin: 0;
  padding: 13px 15px;
  overflow-x: auto;
  border-radius: var(--r-sm);
  background: var(--surface-3);
  border: 1px solid var(--line);
}
pre code { color: var(--text); line-height: 1.6; word-break: normal; }

.timeline { display: grid; gap: 0; }
.timeline__item {
  position: relative;
  display: grid;
  gap: 3px;
  padding: 11px 0 11px 26px;
  border-bottom: 1px solid var(--line);
}
.timeline__item:last-child { border-bottom: 0; }
.timeline__item::before {
  content: "";
  position: absolute;
  left: 4px; top: 16px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--dot, var(--line-strong));
  box-shadow: 0 0 0 3px var(--surface);
}
.timeline__item::after {
  content: "";
  position: absolute;
  left: 8px; top: 25px; bottom: -1px;
  width: 1px;
  background: var(--line);
}
.timeline__item:last-child::after { display: none; }
.timeline__item strong { font-size: 0.85rem; font-weight: 600; }
.timeline__item small { font-size: 0.75rem; color: var(--text-dim); font-variant-numeric: tabular-nums; }
.timeline__item p { font-size: 0.8rem; color: var(--text-soft); }

.legend { display: flex; flex-wrap: wrap; gap: 14px; font-size: 0.76rem; color: var(--text-soft); }
.legend span { display: inline-flex; align-items: center; gap: 6px; }
.legend i { width: 9px; height: 9px; border-radius: 50%; }

.kbd {
  display: inline-block;
  padding: 1px 6px;
  border: 1px solid var(--line-strong);
  border-bottom-width: 2px;
  border-radius: var(--r-xs);
  background: var(--surface-3);
  font-family: var(--mono);
  font-size: 0.72rem;
}

/* ------------------------------------------------- 9. Toasts e modal ----- */

.toasts {
  position: fixed;
  z-index: 300;
  right: 16px; bottom: 16px;
  display: grid;
  gap: 9px;
  width: min(360px, calc(100vw - 32px));
  pointer-events: none;
}
.toast {
  display: flex;
  gap: 11px;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent, var(--primary));
  box-shadow: var(--shadow-3);
  font-size: 0.84rem;
  pointer-events: auto;
  animation: toast-in 200ms cubic-bezier(0.2, 0, 0.15, 1);
}
.toast.is-out { animation: toast-out 180ms ease forwards; }
.toast svg { flex: none; width: 18px; height: 18px; fill: var(--accent, var(--primary)); margin-top: 1px; }
.toast strong { display: block; font-size: 0.85rem; }
.toast p { margin-top: 2px; color: var(--text-soft); font-size: 0.8rem; }
.toast--success { --accent: var(--success); }
.toast--danger  { --accent: var(--danger); }
.toast--warning { --accent: var(--warning); }

@keyframes toast-in  { from { opacity: 0; transform: translateY(10px) scale(0.98); } }
@keyframes toast-out { to   { opacity: 0; transform: translateX(16px); } }

.modal { border: 0; padding: 0; background: transparent; color: inherit; max-width: min(440px, calc(100vw - 32px)); }
.modal::backdrop { background: rgba(8, 12, 18, 0.55); backdrop-filter: blur(2px); }
.modal__box {
  display: grid;
  gap: 11px;
  padding: 22px;
  border-radius: var(--r);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-3);
}
.modal__box p { font-size: 0.88rem; color: var(--text-soft); }
.modal__actions { display: flex; justify-content: flex-end; gap: 9px; margin-top: 6px; }

/* ------------------------------------- 10. Responsivo e impressão -------- */

@media (max-width: 1180px) {
  .split { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .app__main { margin-left: 0; }
  .topbar__menu { display: grid; }
  .sidebar {
    transform: translateX(-100%);
    transition: transform var(--ease);
    box-shadow: var(--shadow-3);
  }
  .sidebar.is-open { transform: translateX(0); }
  .who__text, .clock { display: none; }
  .page-head { align-items: stretch; }
  .page-head__actions { width: 100%; }
  .page-head__actions .btn { flex: 1; }
}

@media (max-width: 560px) {
  .metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .metric__value { font-size: 1.6rem; }
  .content { padding-bottom: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .sidebar, .topbar, .toasts, .page-head__actions, .filters,
  .actions-cell, .skip-link, .scrim { display: none !important; }
  .app__main { margin-left: 0; }
  .content { padding: 0; max-width: none; }
  .card { border-color: #bbb; box-shadow: none; break-inside: avoid; }
  body { background: #fff; font-size: 11pt; }
}
