:root {
  --bg: #f7f7f8;
  --card: #ffffff;
  --text: #1c1f23;
  --muted: #6b7280;
  --border: #e5e7eb;
  --primary: #1f6feb;
  --primary-hover: #1858be;
  --error-bg: #fee2e2;
  --error-text: #991b1b;
  --info-bg: #dbeafe;
  --info-text: #1e3a8a;
  --success-bg: #dcfce7;
  --success-text: #14532d;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;
  font-size: 15px; line-height: 1.5;
  color: var(--text); background: var(--bg);
}
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; background: #fff; border-bottom: 1px solid var(--border);
}
.topbar .brand { font-weight: 600; text-decoration: none; color: var(--text); }
.topbar nav { display: flex; align-items: center; gap: 16px; }
.topbar nav a { color: var(--primary); text-decoration: none; }
.topbar nav .who { color: var(--muted); font-size: 13px; }
.topbar nav .inline { display: inline; margin: 0; }
.topbar nav .link {
  background: none; border: none; color: var(--primary);
  cursor: pointer; padding: 0; font: inherit;
}
.container { max-width: 720px; margin: 32px auto; padding: 0 20px; }
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 28px;
}
.card h1 { margin: 0 0 8px; font-size: 22px; }
.muted { color: var(--muted); }
.small { font-size: 13px; }
form label { display: block; margin: 16px 0; }
form input[type="text"], form input[type="email"] {
  display: block; width: 100%; margin-top: 6px;
  padding: 10px 12px; font-size: 15px;
  border: 1px solid var(--border); border-radius: 6px;
  background: #fff; color: var(--text);
}
form input:focus { outline: 2px solid var(--primary); outline-offset: -1px; }
button.primary, a.button.primary, button.button {
  display: inline-block;
  padding: 10px 18px; border-radius: 6px; border: 1px solid var(--primary);
  background: var(--primary); color: #fff; font: inherit; font-weight: 500;
  cursor: pointer; text-decoration: none;
}
button.primary:hover, a.button.primary:hover { background: var(--primary-hover); }
a.button {
  display: inline-block;
  padding: 10px 18px; border-radius: 6px; border: 1px solid var(--border);
  background: #fff; color: var(--text); text-decoration: none;
}
.flashes { list-style: none; padding: 0; margin: 0 0 16px; }
.flash { padding: 10px 14px; border-radius: 6px; margin-bottom: 8px; font-size: 14px; }
.flash-error   { background: var(--error-bg);   color: var(--error-text); }
.flash-info    { background: var(--info-bg);    color: var(--info-text); }
.flash-success { background: var(--success-bg); color: var(--success-text); }
.next-steps { padding-left: 20px; }
.footer { text-align: center; color: var(--muted); padding: 24px; }

/* page header (title + actions on the right) */
.page-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; margin-bottom: 16px;
}
.page-header h1 { margin: 0; font-size: 22px; }
.page-header .actions { display: flex; gap: 8px; }
.page-header .breadcrumb { margin: 0 0 4px; font-size: 13px; }
.page-header .breadcrumb a { color: var(--muted); text-decoration: none; }

/* tables */
table.data { width: 100%; border-collapse: collapse; background: #fff;
             border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
table.data th, table.data td {
  text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--border);
  font-size: 14px; vertical-align: top;
}
table.data th { background: #f9fafb; color: var(--muted); font-weight: 500; font-size: 12px;
                text-transform: uppercase; letter-spacing: 0.04em; }
table.data tr:last-child td { border-bottom: none; }
table.data .slug { font-size: 12px; color: var(--muted); font-family: ui-monospace, monospace; }

/* badges */
.badge {
  display: inline-block; padding: 2px 8px; border-radius: 999px;
  font-size: 12px; font-weight: 500; line-height: 1.6;
  background: #e5e7eb; color: #374151;
}
.badge-active   { background: #dcfce7; color: #14532d; }
.badge-draft    { background: #fef9c3; color: #713f12; }
.badge-archived { background: #e5e7eb; color: #4b5563; }

/* forms */
.form-stack textarea {
  display: block; width: 100%; margin-top: 6px;
  padding: 10px 12px; font-size: 14px; line-height: 1.5;
  border: 1px solid var(--border); border-radius: 6px;
  background: #fff; color: var(--text); font-family: inherit; resize: vertical;
}
.form-stack textarea:focus { outline: 2px solid var(--primary); outline-offset: -1px; }
.form-stack .row { display: flex; gap: 12px; align-items: stretch; }
.form-stack .row .grow { flex: 1; }
.form-stack input[type="date"] {
  display: block; width: 100%; margin-top: 6px;
  padding: 9px 12px; font-size: 15px;
  border: 1px solid var(--border); border-radius: 6px;
  background: #fff; color: var(--text); font-family: inherit;
}
.form-stack .actions { display: flex; gap: 8px; margin-top: 8px; }

/* event "show" page */
.card + .card { margin-top: 16px; }
.card h2 { margin: 0 0 12px; font-size: 16px; }
.md-source {
  background: #f9fafb; border: 1px solid var(--border); border-radius: 6px;
  padding: 12px 14px; font-size: 13px; line-height: 1.55; white-space: pre-wrap;
  font-family: ui-monospace, "SF Mono", Menlo, monospace; color: #1f2937;
  overflow-x: auto;
}
.empty { text-align: center; }

/* rendered markdown ("prose") */
.prose { font-size: 15px; line-height: 1.6; color: #1f2937; }
.prose h1, .prose h2, .prose h3, .prose h4 {
  margin: 1.4em 0 0.4em; line-height: 1.25; color: #111827;
}
.prose h1:first-child, .prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose h1 { font-size: 24px; }
.prose h2 { font-size: 19px; }
.prose h3 { font-size: 16px; }
.prose p, .prose ul, .prose ol, .prose blockquote { margin: 0.6em 0; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin: 0.2em 0; }
.prose code {
  background: #f3f4f6; padding: 1px 5px; border-radius: 4px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 13px;
}
.prose pre {
  background: #1f2937; color: #f9fafb; padding: 12px 14px;
  border-radius: 6px; overflow-x: auto; font-size: 13px;
}
.prose pre code { background: transparent; color: inherit; padding: 0; }
.prose blockquote {
  border-left: 3px solid var(--border); padding-left: 14px;
  color: var(--muted); margin-left: 0;
}
.prose a { color: var(--primary); }
.prose table {
  border-collapse: collapse; margin: 0.6em 0; font-size: 14px;
}
.prose table th, .prose table td {
  border: 1px solid var(--border); padding: 6px 10px; text-align: left;
}
.prose table th { background: #f9fafb; }
.prose hr { border: 0; border-top: 1px solid var(--border); margin: 1.5em 0; }

/* Lead upload + column mapping */
.mapping-grid { display: flex; flex-direction: column; gap: 8px; margin: 12px 0 4px; }
.mapping-row {
  display: flex; gap: 16px; align-items: center;
  padding: 10px 12px; border: 1px solid var(--border); border-radius: 6px;
  background: #fff;
}
.mapping-header { flex: 1; min-width: 0; }
.mapping-header .header-name { font-weight: 500; font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 13px; }
.mapping-header .header-sample {
  margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mapping-pick select {
  padding: 6px 10px; font-size: 13px;
  border: 1px solid var(--border); border-radius: 6px; background: #fff; color: var(--text);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
.scroll-x { overflow-x: auto; margin-top: 8px; }
table.preview { font-size: 12px; }
table.preview th, table.preview td {
  white-space: nowrap; max-width: 240px; overflow: hidden; text-overflow: ellipsis;
}
.badge-uploaded   { background: #e0e7ff; color: #3730a3; }
.badge-mapping    { background: #fef3c7; color: #92400e; }
.badge-processing { background: #fef3c7; color: #92400e; }
.badge-done       { background: #dcfce7; color: #14532d; }
.badge-error      { background: #fee2e2; color: #991b1b; }

/* ---- Lead triage view --------------------------------------------------- */

/* Triage page wants a wider container than the default 720px */
body.triage-view .container { max-width: 1180px; }

.triage-summary .summary-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.triage-summary .summary-total { font-size: 15px; }
.summary-chip {
  display: inline-block; padding: 4px 10px; border-radius: 999px;
  font-size: 13px; font-weight: 500;
}

/* Shared priority palette: same colors in summary chips, filter chips, row badges, buttons */
.chip-hot,    .badge-priority-hot,    .btn-hot.is-current,    .filter-chip.chip-hot.active   { background: #fee2e2; color: #991b1b; }
.chip-warm,   .badge-priority-warm,   .btn-warm.is-current,   .filter-chip.chip-warm.active  { background: #fef3c7; color: #92400e; }
.chip-cold,   .badge-priority-cold,   .btn-cold.is-current,   .filter-chip.chip-cold.active  { background: #dbeafe; color: #1e3a8a; }
.chip-unset,  .badge-priority-unset,                          .filter-chip.chip-unset.active { background: #e5e7eb; color: #4b5563; }
.chip-sent    { background: #dcfce7; color: #14532d; }
.chip-skipped { background: #e5e7eb; color: #4b5563; }

.filter-bar .filter-form { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.filter-group { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.filter-group .filter-label { color: var(--muted); font-size: 13px; margin-right: 2px; }
.filter-chip {
  display: inline-block; padding: 4px 10px; border-radius: 999px;
  font-size: 12px; text-decoration: none; color: #374151; background: #f3f4f6;
  border: 1px solid transparent; text-transform: lowercase;
}
.filter-chip:hover { background: #e5e7eb; }
.filter-chip.active { border-color: rgba(0,0,0,0.08); font-weight: 500; }
.filter-search { margin-left: auto; gap: 6px; }
.filter-search input[type="search"] {
  padding: 6px 10px; font-size: 13px;
  border: 1px solid var(--border); border-radius: 6px;
  background: #fff; color: var(--text); min-width: 220px;
}

/* Make the .card "no-pad" so the table can be flush */
.card.no-pad { padding: 0; }

.triage-table { border: none; border-radius: 8px; overflow: hidden; }
.triage-table th, .triage-table td { font-size: 13px; padding: 10px 12px; vertical-align: top; }
.triage-table .cell-lead .lead-name { font-weight: 500; }
.triage-table .cell-notes { max-width: 360px; }
.triage-table .pill-products {
  display: inline-block; margin-top: 4px; padding: 2px 8px; border-radius: 4px;
  background: #eef2ff; color: #3730a3; font-size: 11px;
}
.triage-table .cell-state { white-space: nowrap; }
.triage-table .badge-priority { display: inline-block; padding: 2px 8px; border-radius: 999px; font-size: 11px; font-weight: 500; text-transform: lowercase; }
.triage-table .col-actions, .triage-table .cell-actions { white-space: nowrap; }

.triage-buttons { display: flex; gap: 4px; }
.btn-triage {
  width: 28px; height: 28px; padding: 0; line-height: 26px; text-align: center;
  border: 1px solid var(--border); background: #fff; color: #374151;
  border-radius: 6px; font: inherit; font-size: 13px; font-weight: 600; cursor: pointer;
}
.btn-triage:hover { background: #f3f4f6; }
.btn-triage.is-current { border-color: transparent; box-shadow: 0 0 0 1px rgba(0,0,0,0.08) inset; }
.btn-hot:hover     { background: #fee2e2; color: #991b1b; }
.btn-warm:hover    { background: #fef3c7; color: #92400e; }
.btn-cold:hover    { background: #dbeafe; color: #1e3a8a; }
.btn-skip:hover    { background: #f3f4f6; color: #6b7280; }
.btn-unskip:hover  { background: #dcfce7; color: #14532d; }

.pagination {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; margin-top: 16px;
}


/* ============================================================
   Lead detail page (draft workbench)
   ============================================================ */

.lead-detail-view .facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 760px) {
  .lead-detail-view .facts-grid { grid-template-columns: 1fr; }
}
.lead-detail-view .facts-col h2 {
  margin: 0 0 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.lead-detail-view dl.kv {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 4px 12px;
  margin: 0 0 8px;
  font-size: 13px;
}
.lead-detail-view dl.kv dt { color: var(--muted); }
.lead-detail-view dl.kv dd { margin: 0; word-break: break-word; }
.lead-detail-view .notes-heading {
  margin: 12px 0 6px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.lead-detail-view .notes-body {
  font-size: 13px;
  white-space: pre-wrap;
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 12px;
}
.lead-detail-view .badge-priority {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  text-transform: lowercase;
}
.lead-detail-view .detail-triage-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.lead-detail-view .detail-triage-row .btn-triage {
  width: auto;
  padding: 0 12px;
  font-weight: 500;
}

/* ----- Draft card ----- */
.draft-card .draft-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}
.draft-card .draft-header h2 { margin: 0; font-size: 16px; }
.draft-card textarea {
  width: 100%;
  font: inherit;
  font-size: 13px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  resize: vertical;
  box-sizing: border-box;
}
.draft-card .form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}
.draft-card .draft-field { margin-bottom: 14px; }
.draft-card .draft-subject {
  font-size: 15px;
  font-weight: 500;
  padding: 6px 0 2px;
}
.draft-card .draft-body {
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.5;
  white-space: pre-wrap;
  margin: 4px 0 0;
}
.draft-card .draft-pending {
  background: #fef9c3;
  border: 1px solid #fde68a;
  border-radius: 6px;
  padding: 12px 14px;
  color: #713f12;
}
.draft-card .draft-pending p { margin: 0 0 4px; }
.draft-card .draft-pending p:last-child { margin-bottom: 0; }
.draft-card .draft-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 6px;
  padding: 12px 14px;
}
.draft-card .error-message,
.draft-card .raw-output {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 8px 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  white-space: pre-wrap;
  margin: 8px 0;
}
.draft-card details { margin: 8px 0; }
.draft-card details summary {
  cursor: pointer;
  font-size: 13px;
  color: var(--muted);
}
.draft-card .soft-rule {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 16px 0;
}

/* ----- Stale draft history ----- */
.stale-card details summary {
  cursor: pointer;
  font-weight: 500;
  padding: 4px 0;
}
.stale-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.stale-item {
  border-top: 1px solid var(--border);
  padding: 12px 0;
}
.stale-item:first-child { border-top: 0; }
.stale-item .stale-meta { margin-bottom: 4px; }
.stale-item .stale-subject { font-size: 13px; margin-bottom: 4px; }
.stale-item .stale-body {
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  line-height: 1.5;
  white-space: pre-wrap;
  margin: 4px 0 0;
  max-height: 240px;
  overflow-y: auto;
}

/* Priority badge colors for the detail page — reuse triage palette */
.lead-detail-view .badge-priority-hot    { background: #fee2e2; color: #991b1b; }
.lead-detail-view .badge-priority-warm   { background: #fef3c7; color: #92400e; }
.lead-detail-view .badge-priority-cold   { background: #dbeafe; color: #1e3a8a; }
.lead-detail-view .badge-priority-unset  { background: #e5e7eb; color: #4b5563; }

/* ----- Editable notes/products form on detail page ----- */
.touch-edit-form { margin-top: 12px; }
.touch-edit-form .field-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin: 10px 0 4px;
  color: #374151;
}
.touch-edit-form .field-label .muted { font-weight: 400; }
.touch-edit-form textarea,
.touch-edit-form input[type="text"] {
  width: 100%;
  font: inherit;
  font-size: 13px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  box-sizing: border-box;
  background: #fff;
}
.touch-edit-form textarea { resize: vertical; line-height: 1.5; }
.touch-edit-form textarea:disabled,
.touch-edit-form input[type="text"]:disabled {
  background: #f3f4f6;
  color: #6b7280;
  cursor: not-allowed;
}
.touch-edit-form .form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

/* "Notes changed since draft generated" warn banner */
.banner {
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 12px;
}
.banner-warn {
  background: #fef3c7;
  border: 1px solid #fde68a;
  color: #713f12;
}
.banner-warn a { color: #713f12; font-weight: 500; }

/* ============================================================
   Send-button feature
   ============================================================ */

/* Editable subject/body inside the ready-state draft card. The
   <input> and <textarea> here replace the static <pre> we used
   to render the AI's output. Sized to feel like real email
   composition, not a tiny form field. */
.draft-send-form input[type="text"],
.draft-send-form textarea {
  width: 100%;
  box-sizing: border-box;
  font: inherit;
  padding: 8px 10px;
  border: 1px solid #d0d7de;
  border-radius: 6px;
  background: #fff;
}

.draft-send-form input[type="text"] {
  font-weight: 600;
  font-size: 15px;
}

.draft-send-form textarea {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  line-height: 1.5;
  min-height: 240px;
  resize: vertical;
}

.draft-send-form .field-label {
  display: block;
  margin: 12px 0 4px;
  font-weight: 600;
  font-size: 13px;
}

.send-actions {
  margin-top: 14px;
}

/* The primary Send button needs to stand out — this is the
   irreversible action on the page. */
.send-actions .button.primary {
  background: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
  font-weight: 600;
}

.send-actions .button.primary:hover:not(:disabled) {
  background: #0a58ca;
  border-color: #0a58ca;
}

.send-actions .button.primary:disabled {
  background: #adb5bd;
  border-color: #adb5bd;
  cursor: not-allowed;
}

/* Sent-state card — replaces the draft card once a touch has
   been sent. Visually distinct (green-ish accent) so the rep
   immediately sees "this is done". */
.sent-card {
  border-left: 4px solid #16a34a;
}

.sent-card .draft-header h2 {
  color: #166534;
}

.sent-card .sent-meta {
  margin-bottom: 16px;
}

.sent-card .sent-meta code {
  font-size: 11px;
  background: #f3f4f6;
  padding: 1px 6px;
  border-radius: 4px;
  /* The SES message-id is a long unbreakable hyphenated string —
     force it to wrap inside the kv grid cell instead of blowing
     the container out horizontally. */
  word-break: break-all;
  overflow-wrap: anywhere;
  display: inline-block;
  max-width: 100%;
}

/* The sent-state body is a <pre> like the draft preview, but
   scoped under .sent-card it wasn't inheriting the wrapping rules
   from .draft-card. Mirror them here. */
.sent-card .draft-body {
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.5;
  white-space: pre-wrap;
  /* Break inside long unbroken tokens (URLs, hashes) so they
     can't escape the box. */
  overflow-wrap: anywhere;
  word-break: break-word;
  margin: 4px 0 0;
  max-height: 480px;
  overflow-y: auto;
}
.sent-card .draft-subject {
  font-size: 15px;
  font-weight: 500;
  padding: 6px 0 2px;
  /* Subjects can theoretically be very long; same defensive wrap. */
  overflow-wrap: anywhere;
  word-break: break-word;
}
.sent-card .draft-field { margin-bottom: 14px; }

/* ============================================================
   Desktop two-column layout for the lead-detail page.

   On wide screens (≥1080px) we widen the container to 1180px
   (matching the triage list page) and split the cards into:
     - a main column on the left (≈720px) holding the draft / sent
       / stale cards — i.e. everything related to composing the
       email
     - a right rail (≈360px) holding the lead-facts card, which is
       reference info the rep glances at while writing
   The right rail is `position: sticky` so it stays in view as the
   rep scrolls a long email body.

   Below the breakpoint we collapse back to a single column and
   the natural HTML source order applies (facts first, then draft).
   ============================================================ */
body.lead-detail-view .container {
  max-width: 1180px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 1080px) {
  .detail-layout {
    grid-template-columns: minmax(0, 1fr) 360px;
    grid-template-areas:
      "main rail";
    align-items: start;
    gap: 24px;
  }
  /* Right rail — the contact + scan facts. Sticky so it stays
     visible while the rep scrolls a long email composition. */
  .detail-layout > .lead-facts {
    grid-area: rail;
    position: sticky;
    top: 24px;
    /* In single-rail mode the two facts columns no longer have
       room to sit side-by-side; stack them. */
  }
  .detail-layout > .lead-facts .facts-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  /* Every other card stacks in the main column. */
  .detail-layout > .card:not(.lead-facts) {
    grid-area: main;
  }
}

/* When stacked (any width), or when sitting alone in the main
   column at desktop, give the editable textareas + send button a
   sensible composition feel — wider than the old 720px-cramped
   layout but still capped so very wide monitors don't produce
   absurdly long lines that are hard to read/edit. */
.draft-send-form textarea {
  min-height: 320px;
}

/* Better-looking primary button on the send action — slightly
   larger touch target than the default .button. */
.send-actions .button.primary {
  padding: 10px 18px;
  font-size: 14px;
}

/* Defensive: long email addresses (e.g. consultant role aliases
   or shared mailboxes) shouldn't break the contact card layout. */
.lead-detail-view .lead-facts dd { overflow-wrap: anywhere; }
