/* ============================================================
   HoneyDB — host console (#119 redesign, Claude Design concept 1A)
   Shared by the public host page (app.host-public.php, loaded via
   $head_links after public.css) and the authenticated host view
   (app.host.php, loaded after the AdminLTE reskin layer).

   Self-contained: every token the console uses is (re)declared on
   .console itself, so the card renders identically under public.css
   and under AdminLTE. Values mirror public.css :root — keep in sync.
   The @font-face declarations live in public.css / adminlte-reskin.css,
   both of which load before this file.
   ============================================================ */

.console {
  --bg:        #0b0c0f;
  --bg-2:      #0e1014;
  --surface:   #141720;
  --surface-2: #191d27;
  --surface-3: #1f2430;
  --line:      rgba(255, 255, 255, 0.07);
  --line-2:    rgba(255, 255, 255, 0.12);
  --ink:       #f4f2ec;
  --ink-soft:  #c3c6cd;
  --muted:     #8b909b;
  --faint:     #5b616d;
  --honey:        #f5b301;
  --honey-bright: #ffc933;
  --honey-deep:   #d98a00;
  --honey-ink:    #1a1404;
  --live:   #3ddc84;
  --alert:  #ff5c5c;
  --sans: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --r-sm: 8px;
  --r-lg: 18px;

  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  text-align: left;

  background: var(--bg-2); border: 1px solid var(--line-2);
  border-radius: var(--r-lg); overflow: hidden;
}
.console a { text-decoration: none; }

/* identity bar */
.cs-head {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap; padding: 18px 22px; border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
}
.cs-id { display: flex; align-items: center; gap: 16px; }
.cs-glyph { width: 38px; height: 38px; flex: none; }
.cs-iprow { display: flex; align-items: center; gap: 10px; }
.cs-ip { font-family: var(--mono); font-size: 26px; font-weight: 600; letter-spacing: 0.01em; margin: 0; }
.cs-copy {
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  background: var(--surface-2); border: 1px solid var(--line-2);
  border-radius: 6px; padding: 4px 8px; cursor: pointer; transition: all .15s;
}
.cs-copy:hover { color: var(--honey-bright); border-color: rgba(245, 179, 1, 0.4); }
.cs-copy.copied { color: var(--live); border-color: rgba(61, 220, 132, 0.4); }
.cs-idsub { font-family: var(--mono); font-size: 11.5px; color: var(--muted); margin-top: 3px; }
.cs-meta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.cs-seen { text-align: right; font-family: var(--mono); }
.cs-seen .k { display: block; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); }
.cs-seen .k small { font-size: 9px; color: var(--faint); text-transform: none; }
.cs-seen .v { display: block; font-size: 13px; color: var(--ink-soft); margin-top: 2px; }
.cs-verdict {
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono);
  font-size: 12.5px; font-weight: 600; border-radius: 10px; padding: 9px 15px;
}
.cs-verdict .dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.cs-verdict.bad { background: rgba(255, 92, 92, 0.12); border: 1px solid rgba(255, 92, 92, 0.5); color: var(--alert); }
.cs-verdict.bad .dot { background: var(--alert); animation: cs-pulse 1.6s infinite; }
.cs-verdict.ok { background: rgba(61, 220, 132, 0.1); border: 1px solid rgba(61, 220, 132, 0.45); color: var(--live); }
.cs-verdict.ok .dot { background: var(--live); }
@keyframes cs-pulse { 0%, 100% { opacity: .55; } 50% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .cs-verdict.bad .dot { animation: none; } }

/* row scaffolding */
.cs-row { display: grid; border-bottom: 1px solid var(--line); }
.cs-row:last-child, .cs-intel { border-bottom: none; }
.cs-cols-loc { grid-template-columns: 1.55fr 1fr; }
.cs-cols-2 { grid-template-columns: 1fr 1fr; }
.cs-cols-loc > * + *, .cs-cols-2 > * + * { border-left: 1px solid var(--line); }
.cs-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--honey); font-weight: 600;
}
.cs-note { font-family: var(--mono); font-size: 11px; color: var(--faint); }
.cs-empty { font-family: var(--mono); font-size: 13px; color: var(--muted); margin: 8px 0 0; }
.cs-empty a { color: var(--honey); }
.cs-empty a:hover { color: var(--honey-bright); }

/* map panel (iframe onto static/host-map.html) */
.cs-map { position: relative; min-height: 340px; }
.cs-map.sm { min-height: 300px; }
.cs-map > .cs-label { position: absolute; top: 14px; left: 16px; z-index: 3; }
.cs-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.cs-map-empty {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  color: var(--muted); font-family: var(--mono); font-size: 13px;
}
.cs-map-empty img { width: 42px; height: 42px; opacity: 0.5; }
.cs-chips {
  position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 3;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.cs-chip {
  font-family: var(--mono); font-size: 11px; color: var(--ink);
  background: rgba(14, 16, 20, 0.82); border: 1px solid var(--line-2);
  border-radius: 7px; padding: 5px 9px; backdrop-filter: blur(3px);
}
.cs-chip .k { color: var(--faint); }

/* threat + lookups column */
.cs-side { padding: 16px; display: flex; flex-direction: column; gap: 14px; }
.cs-side > div > .cs-label { display: block; margin-bottom: 9px; }
.cs-fold summary {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  list-style: none; cursor: pointer; border-radius: 10px; padding: 12px 15px;
  font-size: 15px; font-weight: 600; background: var(--surface-2);
  border: 1px solid var(--line-2); color: var(--ink); transition: border-color .15s;
}
.cs-fold summary::-webkit-details-marker { display: none; }
.cs-fold summary::after { content: "\25BC"; font-family: var(--mono); font-size: 11px; color: var(--muted); }
.cs-fold[open] summary::after { content: "\25B2"; }
.cs-fold summary:hover { border-color: var(--honey); }
.cs-fold summary .ico { font-size: 16px; }
.cs-fold.bad summary { background: rgba(255, 92, 92, 0.1); border-color: rgba(255, 92, 92, 0.45); color: var(--alert); }
.cs-fold.ok summary { background: rgba(61, 220, 132, 0.09); border-color: rgba(61, 220, 132, 0.4); color: var(--live); }
.cs-fold summary > :first-child { margin-right: auto; display: inline-flex; align-items: center; gap: 10px; }
.cs-list { margin-top: 9px; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; max-height: 260px; overflow-y: auto; }
.cs-list-row {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 9px 12px; border-bottom: 1px solid var(--line);
  font-family: var(--mono); font-size: 12px; color: var(--ink-soft);
}
.cs-list-row:last-child { border-bottom: none; }
.cs-list-row .listed { color: var(--alert); font-weight: 600; }
.cs-list-row .clear { color: var(--faint); }
a.cs-list-row { transition: background .15s; }
a.cs-list-row:hover { background: rgba(255, 255, 255, 0.04); }
a.cs-list-row .cs-lk { display: flex; flex-direction: column; }
a.cs-list-row .cs-lk .n { font-family: var(--sans); font-size: 13px; font-weight: 500; color: var(--ink); }
a.cs-list-row .cs-lk .d { font-size: 11px; color: var(--faint); }
a.cs-list-row .arrow { color: var(--faint); font-size: 14px; }

/* traffic panels: service bars + protocol stack */
.cs-panel { padding: 16px 18px; }
.cs-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cs-bars { display: flex; flex-direction: column; gap: 11px; }
.cs-bar .t { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 12px; color: var(--ink); margin-bottom: 5px; }
.cs-bar .t .c { color: var(--muted); }
.cs-bar .bar { height: 8px; background: rgba(255, 255, 255, 0.06); border-radius: 5px; overflow: hidden; }
.cs-bar .bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--honey-deep), var(--honey)); border-radius: 5px; }
.cs-stack { display: flex; height: 34px; border-radius: 8px; overflow: hidden; margin-bottom: 16px; }
.cs-stack > div {
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  font-family: var(--mono); font-size: 11px; font-weight: 600; color: var(--honey-ink);
  white-space: nowrap;
}
.cs-legend { display: flex; flex-direction: column; gap: 9px; }
.cs-legend-row { display: flex; align-items: center; justify-content: space-between; font-family: var(--mono); font-size: 12px; color: var(--ink-soft); }
.cs-legend-row .n { display: flex; align-items: center; gap: 8px; }
.cs-legend-row .sw { width: 10px; height: 10px; border-radius: 3px; flex: none; }
.cs-legend-row .c { color: var(--muted); }
.cs-foot { margin-top: 12px; padding-top: 11px; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 11px; color: var(--faint); line-height: 1.5; }

/* tabbed intel */
.cs-intel { background: var(--bg-2); }
.cs-intel .ptabs { padding: 0 16px; margin-bottom: 0; }
.cs-intel .ptab-pane { padding: 16px 18px; }
.cs-intel .ptab-pane.on { display: block; }
.cs-netinfo { display: grid; grid-template-columns: 1fr 1.1fr; gap: 18px; align-items: stretch; }
.cs-netinfo .cs-map { border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; }
.cs-whois { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.cs-whois .mono-pre { max-height: 320px; overflow: auto; flex: 1; }
.cs-shodan-link { text-align: right; font-family: var(--mono); font-size: 12.5px; margin-bottom: 10px; }
.cs-shodan-link a { color: var(--honey); }
.cs-shodan-link a:hover { color: var(--honey-bright); }

/* tabbed panels (host detail: net info / activity / history / shodan) */
.ptabs { display: flex; flex-wrap: wrap; gap: 6px; border-bottom: 1px solid var(--line); padding-bottom: 10px; margin-bottom: 16px; }
.ptabs button {
  font-family: var(--mono); font-size: 12.5px; color: var(--muted);
  background: none; border: 1px solid transparent; border-radius: var(--r-sm);
  padding: 7px 14px; cursor: pointer; transition: all .15s;
}
.ptabs button:hover { color: var(--ink-soft); }
.ptabs button.on { background: rgba(245, 179, 1, 0.12); color: var(--honey-bright); }
.ptab-pane { display: none; }
.ptab-pane.on { display: block; }
.mono-pre {
  font-family: var(--mono); font-size: 12.5px; color: var(--ink-soft);
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 14px 16px; overflow-x: auto; white-space: pre-wrap; word-break: break-word;
}

/* activity drill-down: service list → sessions → chat transcript */
.cs-activity { display: grid; grid-template-columns: 180px 240px minmax(0, 1fr); gap: 14px; align-items: start; min-height: 420px; }
.cs-act-head {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--faint); padding: 6px 8px 8px;
}
.cs-act-head .cs-note { text-transform: none; letter-spacing: 0; }
.cs-act-item {
  display: flex; flex-direction: column; gap: 3px; width: 100%; text-align: left;
  font-family: var(--mono); background: var(--surface); border: 1px solid var(--line);
  color: var(--ink-soft); border-radius: var(--r-sm); padding: 9px 11px;
  margin-bottom: 5px; cursor: pointer; transition: border-color .15s, background .15s;
}
.cs-act-item:hover { border-color: var(--line-2); background: var(--surface-2); }
.cs-act-item.on { background: rgba(245, 179, 1, 0.1); border-color: rgba(245, 179, 1, 0.4); color: var(--honey); }
.cs-act-item .n { font-size: 13px; font-weight: 600; }
.cs-act-item .t { display: flex; justify-content: space-between; gap: 8px; font-size: 11.5px; }
.cs-act-item .s { font-size: 10px; color: var(--faint); }
.cs-act-item.on .s { color: var(--honey-deep); }
#act-sessions { max-height: 480px; overflow-y: auto; }

/* chat transcript: CONNECT/RX = threat actor (right), TX/INFO = honeypot (left) */
.cs-chat { border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--bg); min-width: 0; }
.cs-chat-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  flex-wrap: wrap; padding: 11px 14px; border-bottom: 1px solid var(--line);
}
.cs-chat-title { font-family: var(--mono); font-size: 12px; color: var(--ink); }
.cs-chat-legend { display: flex; gap: 14px; font-family: var(--mono); font-size: 10.5px; color: var(--muted); }
.cs-chat-legend span { display: inline-flex; align-items: center; gap: 6px; }
.cs-chat-legend img { width: 16px; height: 16px; border-radius: 50%; background: #e9e6df; border: 1px solid var(--line-2); }
.cs-chat-body { padding: 14px 16px; max-height: 480px; overflow-y: auto; }
.cs-chat-msgs { display: flex; flex-direction: column; gap: 12px; }
.cs-msg { display: flex; gap: 9px; max-width: 86%; }
.cs-msg.actor { align-self: flex-end; flex-direction: row-reverse; }
.cs-msg.honey { align-self: flex-start; }
.cs-msg-avatar {
  width: 26px; height: 26px; border-radius: 50%; flex: none; margin-top: 2px;
  /* gray.png is a dark silhouette — give both avatars a light backing so
     they read on the dark console. */
  background: #e9e6df; border: 1px solid var(--line-2); object-fit: cover;
}
.cs-msg-body { min-width: 0; }
.cs-msg-bubble {
  font-family: var(--mono); font-size: 12px; padding: 8px 11px;
  border-radius: 11px 11px 11px 3px; background: var(--surface);
  border: 1px solid var(--line-2); color: var(--ink-soft);
}
.cs-msg.actor .cs-msg-bubble {
  border-radius: 11px 11px 3px 11px;
  background: rgba(255, 92, 92, 0.09); border-color: rgba(255, 92, 92, 0.35);
}
.cs-msg-bubble .ev { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; color: var(--muted); }
.cs-msg.actor .cs-msg-bubble .ev { color: var(--alert); }
.cs-msg-bubble pre {
  margin: 6px 0 0; font-family: var(--mono); font-size: 11.5px; line-height: 1.5;
  white-space: pre-wrap; word-break: break-word; max-height: 260px; overflow-y: auto;
  color: var(--ink-soft);
}
.cs-msg-sub { font-family: var(--mono); font-size: 9.5px; color: var(--faint); margin-top: 3px; }
.cs-msg.actor .cs-msg-sub { text-align: right; }

/* history tab: date · service · events rows */
.cs-history { font-family: var(--mono); font-size: 12.5px; }
.cs-history-row {
  display: grid; grid-template-columns: 130px minmax(0, 1fr) 110px; gap: 10px;
  align-items: center; padding: 10px 12px; border-bottom: 1px solid var(--line);
}
.cs-history-row.head {
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--faint); padding-bottom: 8px; border-bottom-color: var(--line-2);
}
.cs-history-row .d { color: var(--ink-soft); }
.cs-history-row .svc { display: flex; align-items: center; gap: 8px; color: var(--ink); min-width: 0; }
.cs-history-row .svc .sq { width: 7px; height: 7px; border-radius: 2px; background: var(--honey); flex: none; }
.cs-history-row .svc a { color: var(--ink); }
.cs-history-row .svc a:hover { color: var(--honey-bright); }
.cs-history-row .num { text-align: right; color: var(--honey); font-weight: 600; }

/* injected fragments (history tab) */
.frag { font-size: 14px; }
.frag table { width: 100%; border-collapse: collapse; font-family: var(--mono); font-size: 13px; }
.frag td, .frag th { padding: 8px 10px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); color: var(--ink-soft); }
.frag pre, .frag textarea {
  font-family: var(--mono); font-size: 12.5px; color: var(--ink-soft);
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 12px; width: 100%; overflow-x: auto;
}
.frag textarea { min-height: 120px; }
.frag img { max-width: 100%; }

@media (max-width: 900px) {
  .cs-activity, .cs-cols-loc, .cs-cols-2, .cs-netinfo { grid-template-columns: 1fr; }
  .cs-cols-loc > * + *, .cs-cols-2 > * + * { border-left: none; border-top: 1px solid var(--line); }
  .cs-head { flex-direction: column; align-items: flex-start; }
  .cs-map { min-height: 300px; }
}


.console .mono-note { font-family: var(--mono); font-size: 11.5px; color: var(--faint); font-weight: 400; }

/* ---- data-view switch (authenticated data pages, #127) ---- */
.cs-switch {
  display: inline-flex; margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 8px;
  overflow: hidden; font-family: "JetBrains Mono", ui-monospace, monospace;
}
.cs-switch button {
  background: #141720; color: #8b909b; border: 0; cursor: pointer;
  font: 600 11.5px/1 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: .05em; text-transform: uppercase; padding: 8px 14px;
  transition: color .15s ease, background .15s ease;
}
.cs-switch button + button { border-left: 1px solid rgba(255, 255, 255, 0.12); }
.cs-switch button:hover { color: #f4f2ec; }
.cs-switch button.on { background: #f5b301; color: #1a1404; cursor: default; }

/* ---- API key rows (threats page, #127) ---- */
.cs-keyrow {
  display: flex; align-items: center; gap: 10px; margin: 12px 0;
  flex-wrap: wrap;
}
.cs-keyrow label {
  flex: 0 0 130px; font: 600 11px/1.4 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: .06em; text-transform: uppercase; color: #8b909b;
}
.cs-keyrow input {
  flex: 1 1 320px; min-width: 0;
  font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 12.5px;
  color: #f4f2ec; background: #0e1014; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 8px 10px;
}
.cs-keyrow .cs-copy {
  background: #141720; color: #c3c6cd; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 8px 14px; cursor: pointer;
  font: 600 11.5px/1 "JetBrains Mono", ui-monospace, monospace;
  transition: color .15s ease, border-color .15s ease;
}
.cs-keyrow .cs-copy:hover { color: #f5b301; border-color: #f5b301; }
.cs-keygen { display: flex; align-items: center; gap: 14px; margin-top: 18px; }
.cs-keygen .cs-note { color: #8b909b; font-size: 12.5px; }

/* ---- ptabs external link (agents Documentation tab, #129) ---- */
.ptabs .ptab-link {
  font: 600 12.5px/1 "JetBrains Mono", ui-monospace, monospace;
  color: #8b909b; padding: 10px 14px; letter-spacing: .04em;
  transition: color .15s ease;
}
.ptabs .ptab-link:hover { color: #f4f2ec; }

/* ---- form controls (#129, monitors) ---- */
.cs-form label { display: block; font: 600 11px/1.4 "JetBrains Mono", ui-monospace, monospace; letter-spacing: .06em; text-transform: uppercase; color: #8b909b; margin: 14px 0 6px; }
.cs-form input[type="text"], .cs-form input[type="email"], .cs-form select, .cs-form textarea {
  width: 100%; font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 13px;
  color: #f4f2ec; background: #0e1014; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 9px 11px; transition: border-color .15s ease;
}
.cs-form input:focus, .cs-form select:focus, .cs-form textarea:focus { outline: none; border-color: #f5b301; }
.cs-form select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, #8b909b 50%), linear-gradient(135deg, #8b909b 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.cs-form .cs-inline { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.cs-form .cs-inline input[type="text"] { flex: 1 1 140px; width: auto; min-width: 0; }
.cs-form .cs-radio { display: inline-flex; align-items: center; gap: 6px; color: #c3c6cd; font-size: 13px; font-family: "JetBrains Mono", ui-monospace, monospace; }
.cs-form .cs-radio input { accent-color: #f5b301; }
.cs-form .cs-hint { color: #8b909b; font-size: 12px; margin-top: 10px; line-height: 1.5; }
.cs-form .cs-error { color: #ff5c5c; font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 12px; margin-top: 10px; display: none; }
.cs-form .cs-error.show { display: block; }
.cs-quota { font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 12px; color: #8b909b; margin: 4px 0; }
.cs-quota b { color: #f4f2ec; font-weight: 600; }

/* ---- slide-over drawer (#129, monitors create) ---- */
.cs-drawer-scrim { position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 1200; display: none; }
.cs-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 420px; max-width: 100vw; background: #141720; border-left: 1px solid rgba(255,255,255,0.12); z-index: 1201; padding: 22px 24px; overflow-y: auto; transform: translateX(100%); transition: transform .2s ease; }
.cs-drawer.open { transform: translateX(0); }
.cs-drawer-scrim.show { display: block; }
.cs-drawer h4 { margin: 0 0 14px; color: #f4f2ec; font-size: 17px; }
.cs-drawer .cs-close { position: absolute; top: 14px; right: 16px; background: none; border: 0; color: #8b909b; font-size: 22px; cursor: pointer; line-height: 1; }
.cs-drawer .cs-close:hover { color: #f4f2ec; }
@media (max-width: 560px) { .cs-drawer { width: 100vw; } }

/* ---- contact form polish (#146) ---- */
.cs-contact { max-width: 620px; margin: 0 auto; padding: 30px 34px 34px; }
.cs-contact-intro { color: #c3c6cd; line-height: 1.65; margin: 0 0 6px; }
.cs-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.cs-contact textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.cs-contact-turnstile { margin-top: 18px; }
.cs-contact-send { margin-top: 16px; width: 100%; justify-content: center; }
@media (max-width: 560px) {
  .cs-form-grid { grid-template-columns: 1fr; }
  .cs-contact { padding: 22px 20px 26px; }
}

/* thanks state spacing (#146 feedback) */
.cs-contact-thanks { padding: 28px 0 12px; text-align: center; }
.cs-contact-thanks p { color: #c3c6cd; line-height: 1.65; }
.cs-contact-thanks strong { color: #f4f2ec; font-size: 16px; }
