/* ═══════════════════════════════════════════════
   WF DEFERRAL BENEFIT CALCULATOR — BLOOMBERG THEME
═══════════════════════════════════════════════ */

:root {
  --bg:           #0f1117;
  --panel:        #1a1f2e;
  --panel-2:      #222840;
  --border:       #2d3748;
  --border-light: #3a4560;
  --text:         #f0f4f8;
  --text-muted:   #8896b0;
  --text-dim:     #566280;
  --accent:       #f59e0b;
  --accent-dim:   #7c5110;
  --positive:     #34d399;
  --negative:     #f87171;
  --highlight:    #2563eb;
  --input-bg:     #111827;
  --radius:       6px;
  --radius-lg:    10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.55;
  min-height: 100vh;
}

/* ── Screens ─────────────────────────────────── */
.screen { min-height: 100vh; }
.hidden { display: none !important; }

/* ── Container ───────────────────────────────── */
.container {
  max-width: 780px;
  margin: 0 auto;
  padding: 1.25rem 1rem 4rem;
}

/* ══════════════════════════════════════════════
   LOGIN SCREEN
══════════════════════════════════════════════ */
.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1.5rem;
}

.login-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 380px;
  text-align: center;
}

.login-logo {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}
.logo-bracket { color: var(--accent); }
.logo-text    { color: var(--text); font-weight: 700; margin: 0 2px; }

.login-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.login-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.03em;
}

.login-form { display: flex; flex-direction: column; gap: 0.75rem; }

.keyword-input {
  background: var(--input-bg);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: 'JetBrains Mono', monospace;
  text-align: center;
  letter-spacing: 0.15em;
  width: 100%;
  transition: border-color 0.2s;
}
.keyword-input:focus { outline: none; border-color: var(--accent); }
.keyword-input::placeholder { letter-spacing: 0.05em; font-family: 'Inter', sans-serif; }

.login-error {
  color: var(--negative);
  font-size: 0.82rem;
  min-height: 1.2em;
  visibility: hidden;
}
.login-error.visible { visibility: visible; }

/* ══════════════════════════════════════════════
   PAGE HEADER
══════════════════════════════════════════════ */
.page-header {
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.header-brand .logo-bracket,
.header-brand .logo-text,
.header-brand .logo-bracket { font-family: 'JetBrains Mono', monospace; font-size: 0.9rem; }

.header-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  white-space: nowrap;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
}

.btn-primary {
  background: var(--accent);
  color: #000;
}
.btn-primary:hover { background: #fbbf24; }

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}
.btn-ghost:hover { color: var(--text); }

.btn-sm  { padding: 0.4rem 0.8rem; font-size: 0.8rem; }
.btn-full { width: 100%; }
.btn-large { padding: 0.85rem 2rem; font-size: 1rem; width: 100%; }

/* ══════════════════════════════════════════════
   PRIVACY BANNER
══════════════════════════════════════════════ */
.privacy-banner {
  background: #1a2a1a;
  border: 1px solid #2d5a2d;
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  font-size: 0.82rem;
  color: #6dbd6d;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.privacy-icon { font-size: 0.55rem; }

/* ══════════════════════════════════════════════
   FORM SECTIONS
══════════════════════════════════════════════ */
.form-section {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  margin-bottom: 1rem;
}

.section-header {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.section-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.section-note {
  font-size: 0.77rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── Fields ──────────────────────────────────── */
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) {
  .field-row { grid-template-columns: 1fr; }
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.field-input {
  background: var(--input-bg);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius);
  padding: 0.6rem 0.75rem;
  font-size: 0.9375rem;
  font-family: 'JetBrains Mono', monospace;
  width: 100%;
  transition: border-color 0.2s;
}
.field-input:focus { outline: none; border-color: var(--accent); }
.field-input::placeholder { color: var(--text-dim); font-family: 'Inter', sans-serif; }
.field-input.error { border-color: var(--negative); }

.field-select {
  background: var(--input-bg);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius);
  padding: 0.6rem 0.75rem;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  width: 100%;
  cursor: pointer;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  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='%238896b0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.25rem;
}
.field-select:focus { outline: none; border-color: var(--accent); }

.field-hint {
  font-size: 0.77rem;
  color: var(--text-dim);
  margin-top: 0.25rem;
}

/* ── Prefix/Suffix Inputs ─────────────────────── */
.input-prefix-wrap,
.input-suffix-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-prefix {
  position: absolute;
  left: 0.65rem;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  pointer-events: none;
  z-index: 1;
}
.input-prefix-wrap .field-input { padding-left: 1.5rem; }

.input-suffix {
  position: absolute;
  right: 0.65rem;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  pointer-events: none;
}
.input-suffix-wrap .field-input { padding-right: 2rem; }

/* ── Deferral blocks ─────────────────────────── */
.deferral-block {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 0.75rem;
}

.deferral-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.deferral-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.deferral-cap {
  font-size: 0.75rem;
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
}

.deferral-inputs {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.deferral-inputs .input-prefix-wrap,
.deferral-inputs .input-suffix-wrap { flex: 1; }
.deferral-or {
  font-size: 0.75rem;
  color: var(--text-dim);
  flex-shrink: 0;
}

.deferral-amt { width: 100%; }
.deferral-pct { width: 100%; }

.deferral-derived {
  font-size: 0.77rem;
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  margin-top: 0.4rem;
  min-height: 1.1em;
}

.total-deferral-row {
  background: var(--panel-2);
  border: 1px solid var(--accent-dim);
  border-radius: var(--radius);
  padding: 0.65rem 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  color: var(--accent);
  min-height: 2.2rem;
}

/* ── Federal Bracket Table ───────────────────── */
.bracket-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.bracket-table {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.bracket-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.bracket-row:hover { border-color: var(--border-light); }
.bracket-row.selected {
  border-color: var(--accent);
  background: #1a150a;
}

.bracket-row input[type="radio"] {
  accent-color: var(--accent);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.bracket-rate {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  min-width: 2.8rem;
}

.bracket-range {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
}

/* ── Radio Group ─────────────────────────────── */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.radio-option {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.65rem 0.85rem;
  cursor: pointer;
  transition: border-color 0.15s;
}
.radio-option:hover { border-color: var(--border-light); }
.radio-option:has(input:checked) { border-color: var(--accent); background: #1a150a; }

.radio-option input[type="radio"] {
  accent-color: var(--accent);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.radio-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
  display: block;
}

.radio-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
}

/* ── Return Input ────────────────────────────── */
.return-input-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.return-input-wrap { max-width: 120px; }
.return-input { text-align: center; }
.return-hint { font-size: 0.8rem; color: var(--text-muted); }

.fund-ref-header {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.5rem;
}
.fund-ref-note {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-dim);
}

.fund-table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.82rem;
}

.fund-table-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 0.45rem 0.85rem;
  background: var(--panel-2);
  color: var(--text-dim);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.fund-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 0.5rem 0.85rem;
  border-top: 1px solid var(--border);
  align-items: center;
}
.fund-row:nth-child(even) { background: #13171f; }

.fund-return {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  color: var(--text-muted);
  text-align: right;
}
.fund-return.pos { color: var(--positive); }

.fund-table-note {
  font-size: 0.68rem;
  color: var(--text-dim);
  padding: 0.4rem 0.85rem;
  border-top: 1px solid var(--border);
  line-height: 1.4;
  background: var(--panel-2);
}

/* ── Calculate action ────────────────────────── */
.calc-action { padding: 1.5rem 0 0; }
.calc-error {
  margin-top: 0.75rem;
  color: var(--negative);
  font-size: 0.82rem;
  text-align: center;
}

/* ══════════════════════════════════════════════
   RESULTS SCREEN
══════════════════════════════════════════════ */

/* Toggle Bar */
.toggle-bar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
}
.toggle-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.toggle-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.toggle-btn {
  background: var(--input-bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: var(--radius);
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.15s;
}
.toggle-btn:hover { border-color: var(--border-light); color: var(--text); }
.toggle-btn.active { border-color: var(--accent); color: var(--accent); background: #1a150a; }
.toggle-note { font-size: 0.72rem; color: var(--text-dim); }

/* Headline Grid */
.headline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
@media (max-width: 680px) {
  .headline-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .headline-grid { grid-template-columns: 1fr; }
}

.headline-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
}

.headline-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.headline-value {
  font-size: 1.7rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  line-height: 1.1;
  margin-bottom: 0.3rem;
  color: var(--positive);
}
.headline-value.negative { color: var(--negative); }

.headline-sub {
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.4;
}

/* Verdict */
.verdict-box {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.1rem;
  margin-bottom: 1.25rem;
}
.verdict-box.favorable { border-color: #2d5a3d; background: #111d15; }
.verdict-box.unfavorable { border-color: #5a2d2d; background: #1d1111; }
.verdict-box.neutral { border-color: var(--border); }

.verdict-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.verdict-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text);
}
.verdict-text strong { color: var(--accent); }

/* Results Sections */
.results-section {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  margin-bottom: 1rem;
}

.results-section-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

/* Chart */
.chart-wrap {
  position: relative;
  height: 180px;
}

/* Tables */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.data-table th {
  text-align: right;
  padding: 0.45rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-dim);
  background: var(--panel-2);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.data-table th:first-child { text-align: left; }

.data-table td {
  text-align: right;
  padding: 0.45rem 0.75rem;
  border-bottom: 1px solid #1f2535;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: var(--text);
  white-space: nowrap;
}
.data-table td:first-child {
  text-align: left;
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
}

.data-table tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover td { background: #1e2438; }

.data-table tfoot td {
  border-top: 1px solid var(--border);
  font-weight: 700;
  color: var(--accent);
  border-bottom: none;
}

.td-positive { color: var(--positive) !important; }
.td-negative { color: var(--negative) !important; }
.td-accent   { color: var(--accent) !important; }

.dist-phase-header td {
  background: var(--panel-2);
  color: var(--text-dim);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.75rem;
  font-family: 'Inter', sans-serif !important;
}

/* Non-defer summary */
.non-defer-summary {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text);
}
.non-defer-summary .nds-row {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0;
  border-bottom: 1px solid #1f2535;
  align-items: baseline;
}
.non-defer-summary .nds-row:last-child { border-bottom: none; }
.nds-label { color: var(--text-muted); font-size: 0.82rem; }
.nds-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  font-weight: 600;
}
.nds-value.nds-accent { color: var(--positive); }

.nds-section-header {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.65rem 0 0.2rem;
  margin-top: 0.35rem;
  border-top: 1px solid var(--border);
}
.nds-section-header:first-child { border-top: none; margin-top: 0; padding-top: 0; }

.nds-cg-note {
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin-top: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

/* FICA Note */
.fica-note {
  background: #111827;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.fica-icon { font-size: 0.875rem; flex-shrink: 0; }

/* Assumptions */
.assumptions-block {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.assumptions-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.1rem;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  user-select: none;
}
.assumptions-title:hover { color: var(--text); }
.assumptions-toggle-icon { font-size: 0.6rem; transition: transform 0.2s; }
.assumptions-toggle-icon.open { transform: rotate(180deg); }

.assumptions-body {
  display: none;
  padding: 0.5rem 1.1rem 1.1rem;
  border-top: 1px solid var(--border);
}
.assumptions-body.open { display: block; }

.assumption-row {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  border-bottom: 1px solid #1a2030;
  font-size: 0.8rem;
}
.assumption-row:last-child { border-bottom: none; }
.assumption-key { color: var(--text-muted); }
.assumption-val {
  font-family: 'JetBrains Mono', monospace;
  color: var(--text);
  text-align: right;
}

/* Bottom Actions */
.bottom-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  padding-top: 0.5rem;
}

/* ══════════════════════════════════════════════
   PRINT STYLES
══════════════════════════════════════════════ */
.print-only { display: none; }

@media print {
  :root {
    --bg: #fff;
    --panel: #f8fafc;
    --panel-2: #f1f5f9;
    --border: #cbd5e0;
    --text: #1a202c;
    --text-muted: #4a5568;
    --text-dim: #718096;
    --accent: #c05600;
    --positive: #276749;
    --negative: #c53030;
    --input-bg: #f8fafc;
  }

  body { background: #fff; color: #1a202c; }

  .no-print { display: none !important; }
  .print-only { display: block !important; }

  .page-header { position: static; background: none; border-bottom: 2px solid #1a202c; margin-bottom: 1rem; }
  .header-inner { padding: 0.5rem 0; }
  .header-title { color: #4a5568; }
  .logo-bracket, .logo-text { color: #1a202c; }

  .screen { min-height: unset; }
  .container { padding: 0.5rem 0 1rem; max-width: 100%; }

  .headline-grid { grid-template-columns: 1fr 1fr 1fr; }
  .headline-value { font-size: 1.3rem; }

  .results-section { break-inside: avoid; }

  .assumptions-body { display: block !important; }
  .assumptions-toggle-icon { display: none; }

  .chart-wrap { height: 200px; }

  a { text-decoration: none; }
}
