:root {
  --primary: #0b4f8a;
  --primary-strong: #073d6d;
  --primary-soft: #eaf3fa;
  --secondary: #1f6fb2;
  --accent: #f2b31a;
  --danger: #c62828;
  --success: #27864f;
  --ink: #172230;
  --muted: #667085;
  --line: #e7ebef;
  --surface: #ffffff;
  --surface-alt: #f7f9fb;
  --page: #edf2f6;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 28px 70px rgba(20, 39, 60, .13);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--page); }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 8%, rgba(31, 111, 178, .10), transparent 28rem),
    linear-gradient(135deg, #f6f9fb 0%, #e8eef3 100%);
  -webkit-font-smoothing: antialiased;
}
button, input, textarea { font: inherit; }
button { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }

.assistant-app { min-height: 100vh; }
.topbar {
  height: 84px;
  padding: 0 clamp(22px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(210,219,227,.8);
  backdrop-filter: blur(16px);
  position: relative;
  z-index: 20;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; min-width: 0; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center;
  color: #fff; background: var(--primary);
  font-size: 13px; font-weight: 900; letter-spacing: .04em;
  box-shadow: 0 10px 25px rgba(11,79,138,.22);
}
.brand-logo { max-width: 150px; max-height: 46px; object-fit: contain; }
.brand-copy { display: grid; gap: 2px; min-width: 0; }
.brand-copy strong { font-size: 16px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brand-copy span { color: var(--muted); font-size: 12px; }
.phone-link {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  color: var(--ink); padding: 8px 12px; border-radius: 13px;
  transition: .2s ease;
}
.phone-link:hover { background: var(--surface-alt); }
.phone-link .phone-icon { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--primary-soft); color: var(--primary); }
.phone-link span:last-child { display: grid; }
.phone-link small { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .06em; }
.phone-link strong { font-size: 14px; }

.assistant-shell {
  width: min(1440px, calc(100% - 40px));
  min-height: calc(100vh - 124px);
  margin: 20px auto;
  display: grid;
  grid-template-columns: minmax(380px, .92fr) minmax(520px, 1.08fr);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
  border: 1px solid rgba(214,222,230,.85);
}

.assistant-persona {
  min-height: 720px;
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 4vw, 58px);
  background:
    linear-gradient(160deg, var(--primary) 0%, color-mix(in srgb, var(--primary) 62%, var(--secondary) 38%) 55%, var(--secondary) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
}
.assistant-persona::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  pointer-events: none;
}
.persona-glow {
  position: absolute; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--secondary) 32%, transparent), transparent 68%);
  right: -230px; top: 160px; pointer-events: none;
}
.status-badge {
  position: relative; z-index: 2; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px; padding: 8px 12px; font-size: 11px; font-weight: 700;
  backdrop-filter: blur(12px);
}
.status-badge span { width: 8px; height: 8px; border-radius: 50%; background: #4fd585; box-shadow: 0 0 0 5px rgba(79,213,133,.12); }
.persona-copy { position: relative; z-index: 3; margin-top: 42px; max-width: 540px; }
.eyebrow { margin: 0 0 10px; color: #96c9ed; text-transform: uppercase; letter-spacing: .14em; font-size: 11px; font-weight: 800; }
.persona-copy h1 { margin: 0; font-size: clamp(42px, 5vw, 68px); line-height: .95; letter-spacing: -.045em; }
.persona-copy h1 em { display: inline-block; margin-top: 13px; font-style: normal; font-size: .40em; line-height: 1.2; letter-spacing: -.01em; color: #c8e2f6; font-weight: 550; }
.persona-copy > p:last-child { max-width: 430px; margin: 24px 0 0; color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.7; }
.persona-image-wrap { position: absolute; z-index: 2; left: 1%; right: -4%; bottom: -36px; height: 67%; display: flex; align-items: flex-end; justify-content: center; pointer-events: none; }
.persona-image { max-width: 100%; max-height: 100%; object-fit: contain; object-position: bottom center; filter: drop-shadow(0 22px 28px rgba(0,0,0,.22)); }
.trust-row {
  position: relative; z-index: 5; margin-top: auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px; overflow: hidden; backdrop-filter: blur(14px);
}
.trust-row div { min-height: 72px; padding: 13px 14px; display: grid; align-content: center; gap: 3px; background: rgba(4,37,67,.65); }
.trust-row strong { font-size: 12px; }
.trust-row span { font-size: 10px; color: rgba(255,255,255,.62); line-height: 1.25; }

.assistant-panel { min-width: 0; display: flex; flex-direction: column; background: var(--surface); }
.panel-head { min-height: 88px; padding: 20px clamp(24px, 4vw, 48px); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.assistant-mini { display: flex; align-items: center; gap: 12px; }
.assistant-mini img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; object-position: 50% 18%; background: var(--primary-soft); border: 2px solid #fff; box-shadow: 0 0 0 1px var(--line); }
.assistant-mini div { display: grid; gap: 2px; }
.assistant-mini strong { font-size: 14px; }
.assistant-mini span { color: var(--muted); font-size: 11px; }
.assistant-mini i { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--success); margin-right: 5px; }
.restart-button { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--muted); cursor: pointer; font-size: 20px; transition: .2s; }
.restart-button:hover { color: var(--primary); border-color: #b9d4e8; background: var(--primary-soft); }

.progress-shell { padding: 18px clamp(24px, 4vw, 48px) 0; }
.progress-meta { display: flex; justify-content: space-between; color: var(--muted); font-size: 11px; margin-bottom: 8px; }
.progress-track { height: 5px; border-radius: 999px; background: #edf1f4; overflow: hidden; }
.progress-bar { width: 0%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--primary), var(--secondary)); transition: width .35s ease; }

.conversation-stage { flex: 1; padding: clamp(28px, 4vw, 50px); overflow: auto; }
.intro-card { display: flex; gap: 17px; align-items: flex-start; margin-bottom: 28px; }
.intro-icon { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 15px; display: grid; place-items: center; background: var(--primary-soft); font-size: 22px; }
.intro-kicker { display: block; margin-bottom: 4px; color: var(--primary); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.intro-card h2 { margin: 0 0 8px; font-size: clamp(24px, 3vw, 34px); letter-spacing: -.035em; }
.intro-card p { margin: 0; max-width: 590px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.assistant-content { min-height: 260px; }

.service-grid, .assistant-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.service-card, .assistant-option {
  width: 100%; min-height: 94px; border: 1px solid var(--line); border-radius: 16px;
  background: #fff; color: var(--ink); padding: 17px; text-align: left;
  display: flex; align-items: center; gap: 13px; cursor: pointer;
  box-shadow: 0 4px 14px rgba(29,52,73,.025); transition: .2s ease;
}
.service-card:hover:not(:disabled), .assistant-option:hover { transform: translateY(-2px); border-color: #b9d4e8; box-shadow: 0 12px 25px rgba(29,52,73,.08); }
.service-card-featured { border-color: #b8d6eb; background: linear-gradient(135deg, #fff 0%, #f4f9fd 100%); }
.service-card:disabled { cursor: default; opacity: .55; background: #fafbfc; }
.service-icon { flex: 0 0 44px; width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; background: var(--primary-soft); font-size: 20px; }
.service-copy { display: grid; gap: 4px; min-width: 0; }
.service-copy strong { font-size: 13px; }
.service-copy small { color: var(--muted); font-size: 10px; line-height: 1.35; }
.service-arrow { margin-left: auto; color: var(--primary); font-size: 21px; }
.coming-soon { margin-left: auto; color: #98a2b3; font-size: 9px; text-transform: uppercase; letter-spacing: .07em; }

.assistant-question { animation: questionIn .28s ease both; }
@keyframes questionIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.assistant-title { margin: 0 0 8px; font-size: 12px; color: var(--primary); text-transform: uppercase; letter-spacing: .07em; }
.assistant-question-text { margin: 0 0 24px; max-width: 650px; font-size: clamp(22px, 2.6vw, 31px); font-weight: 750; line-height: 1.16; letter-spacing: -.03em; }
.assistant-option { min-height: 70px; font-size: 13px; font-weight: 650; }
.assistant-option.selected { border-color: var(--primary); background: var(--primary-soft); color: var(--primary-strong); box-shadow: inset 0 0 0 1px var(--primary); }

.assistant-input, .assistant-textarea {
  width: 100%; border: 1px solid #d8e0e7; border-radius: 14px; background: #fff;
  color: var(--ink); outline: none; padding: 16px 17px; font-size: 14px; transition: .2s ease;
}
.assistant-input:focus, .assistant-textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(11,79,138,.09); }
.assistant-textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.assistant-address { display: grid; grid-template-columns: 1fr 130px; gap: 13px; }
.assistant-field { display: grid; gap: 7px; }
.assistant-field:nth-child(3), .assistant-field:nth-child(4) { margin-top: 2px; }
.assistant-field label { color: var(--muted); font-size: 11px; font-weight: 650; }

.assistant-button { min-height: 48px; margin-top: 18px; padding: 0 20px; border-radius: 13px; border: 0; cursor: pointer; font-weight: 750; font-size: 13px; transition: .2s ease; }
.assistant-button-primary { background: var(--primary); color: #fff; box-shadow: 0 10px 24px rgba(11,79,138,.20); }
.assistant-button-primary:hover { background: var(--primary-strong); transform: translateY(-1px); }
.assistant-button-secondary { margin-left: 9px; background: #f3f6f8; color: var(--muted); }
.assistant-button-secondary:hover { color: var(--ink); background: #e9eef2; }
.assistant-back { display: block; margin-left: 0; margin-top: 22px; background: transparent; padding-left: 0; }

.assistant-validation-error { margin-top: 12px; padding: 11px 13px; border-radius: 10px; background: #fff1f1; color: #a61b1b; font-size: 12px; }
.assistant-helper { color: var(--muted); font-size: 12px; line-height: 1.55; }
.assistant-file-input { width: 100%; padding: 22px; border: 1px dashed #b8c7d4; border-radius: 15px; background: var(--surface-alt); }
.assistant-summary { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.summary-row { padding: 13px 16px; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); font-size: 12px; }
.summary-row:last-child { border-bottom: 0; }
.summary-row span { color: var(--muted); }
.summary-row strong { text-align: right; max-width: 65%; }
.assistant-consent { display: flex; gap: 11px; align-items: flex-start; padding: 15px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface-alt); }
.assistant-consent input { width: 18px; height: 18px; accent-color: var(--primary); }
.assistant-consent label { color: var(--muted); font-size: 11px; line-height: 1.5; }
.assistant-consent + a { display: inline-block; margin-top: 10px; color: var(--primary); font-size: 11px; }
.assistant-emergency { padding: 20px; border-radius: 15px; border: 1px solid #f3c4c4; background: #fff6f6; }
.assistant-emergency h3 { margin: 0 0 8px; color: var(--danger); }
.assistant-emergency p { margin: 0; color: #754545; line-height: 1.55; font-size: 13px; }
.assistant-loading { min-height: 240px; display: grid; place-items: center; align-content: center; gap: 15px; color: var(--muted); }
.assistant-spinner { width: 35px; height: 35px; border: 3px solid #dce5ec; border-top-color: var(--primary); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.assistant-error { padding: 22px; border-radius: 15px; background: #fff4f4; color: #8e2222; }

.panel-footer { min-height: 70px; padding: 15px clamp(24px, 4vw, 48px); border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #8993a0; font-size: 10px; }
.privacy-note { display: flex; align-items: center; gap: 6px; }
.panel-footer nav { display: flex; gap: 5px; white-space: nowrap; }
.panel-footer a { text-decoration: none; }
.panel-footer a:hover { color: var(--primary); }

@media (max-width: 1040px) {
  .assistant-shell { grid-template-columns: 340px 1fr; }
  .assistant-persona { padding: 34px 30px; }
  .persona-copy h1 { font-size: 48px; }
  .persona-image-wrap { height: 57%; left: -10%; right: -12%; }
  .trust-row { grid-template-columns: 1fr; }
  .trust-row div:not(:first-child) { display: none; }
}

@media (max-width: 800px) {
  body { background: #fff; }
  .topbar { height: 68px; padding: 0 17px; }
  .brand-copy span, .phone-link small { display: none; }
  .phone-link { padding: 6px; }
  .phone-link strong { display: none; }
  .assistant-shell { width: 100%; margin: 0; min-height: calc(100vh - 68px); grid-template-columns: 1fr; border: 0; border-radius: 0; box-shadow: none; }
  .assistant-persona { min-height: 220px; padding: 27px 24px 0; display: block; }
  .status-badge { font-size: 9px; padding: 6px 9px; }
  .persona-copy { margin-top: 22px; width: 56%; }
  .persona-copy .eyebrow { display: none; }
  .persona-copy h1 { font-size: 38px; }
  .persona-copy h1 em { font-size: .38em; margin-top: 8px; }
  .persona-copy > p:last-child { font-size: 11px; line-height: 1.45; margin-top: 12px; }
  .persona-image-wrap { height: 96%; width: 54%; left: auto; right: -2%; bottom: -10px; }
  .persona-glow { width: 300px; height: 300px; right: -100px; top: 10px; }
  .trust-row { display: none; }
  .panel-head { min-height: 68px; padding: 12px 20px; }
  .assistant-mini img { width: 42px; height: 42px; }
  .progress-shell { padding: 13px 20px 0; }
  .conversation-stage { padding: 28px 20px 34px; overflow: visible; }
  .intro-card { gap: 12px; margin-bottom: 22px; }
  .intro-icon { width: 40px; height: 40px; border-radius: 12px; }
  .intro-card h2 { font-size: 26px; }
  .service-grid, .assistant-options { grid-template-columns: 1fr; }
  .service-card { min-height: 78px; }
  .assistant-question-text { font-size: 25px; }
  .assistant-address { grid-template-columns: 1fr 100px; }
  .panel-footer { flex-direction: column; align-items: flex-start; gap: 8px; padding: 15px 20px; }
}

@media (max-width: 480px) {
  .persona-copy { width: 59%; }
  .persona-copy h1 { font-size: 34px; }
  .persona-copy > p:last-child { display: none; }
  .persona-image-wrap { width: 58%; right: -5%; }
  .assistant-address { grid-template-columns: 1fr; }
  .assistant-field:nth-child(3), .assistant-field:nth-child(4) { margin-top: 0; }
  .assistant-button { width: 100%; }
  .assistant-button-secondary { margin-left: 0; margin-top: 9px; }
  .summary-row { display: grid; gap: 4px; }
  .summary-row strong { text-align: left; max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* Integrated flow additions */
#assistant-intro[hidden] { display: none !important; }
.success-mark { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 50%; background: #e9f7ef; color: var(--success); font-size: 30px; font-weight: 900; margin-bottom: 18px; }
.success-title { margin: 0 0 10px; font-size: clamp(25px, 3vw, 34px); letter-spacing: -.03em; }
.success-text { color: var(--muted); line-height: 1.65; max-width: 620px; }

/* V19.1 shared tenant branding hooks */
:root{
  --accent:#E9F3FA;
}
.intro-icon,
.service-icon,
.status-badge{
  background:var(--accent, #E9F3FA);
}
body{
  background:var(--page, #F7F9FB);
}

/* V19.2 status + logo fixes */
#company-logo[hidden],
#company-logo-fallback[hidden]{
  display:none !important;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand-logo{
  width:auto;
  max-width:72px;
  max-height:44px;
  object-fit:contain;
  flex:0 0 auto;
}

.brand-mark{
  flex:0 0 auto;
}

.assistant-persona .status-badge{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:7px;
  min-height:30px;
  padding:6px 11px;
  border-radius:999px;
  line-height:1.15;
  width:max-content;
  max-width:calc(100% - 40px);
  z-index:4;
}

.assistant-persona .status-badge > span:first-child{
  position:static !important;
  width:7px !important;
  height:7px !important;
  min-width:7px;
  border-radius:50%;
  flex:0 0 7px;
  margin:0 !important;
  transform:none !important;
}

.assistant-persona .status-badge > span:last-child{
  position:static !important;
  display:inline-block;
  line-height:1.15;
}

.assistant-persona .persona-copy{
  position:relative;
  z-index:3;
}

@media (max-width:900px){
  .assistant-persona .status-badge{
    max-width:100%;
  }
}

/* V19.3 final persona status badge spacing */
.assistant-persona .status-badge{
  display:grid !important;
  grid-template-columns:8px minmax(0,auto);
  align-items:center !important;
  column-gap:8px !important;
  min-height:32px !important;
  padding:7px 12px !important;
  line-height:1 !important;
  white-space:nowrap;
  overflow:visible;
}

.assistant-persona .status-badge > span:first-child{
  display:block !important;
  position:static !important;
  width:8px !important;
  height:8px !important;
  min-width:8px !important;
  min-height:8px !important;
  margin:0 !important;
  padding:0 !important;
  border-radius:50% !important;
  align-self:center !important;
  justify-self:center !important;
  transform:none !important;
  line-height:0 !important;
}

.assistant-persona .status-badge > span:last-child{
  display:block !important;
  position:static !important;
  margin:0 !important;
  padding:0 !important;
  line-height:1.2 !important;
  white-space:nowrap;
  transform:none !important;
}

/* Falls ältere Regeln den Punkt mit Pseudo-Elementen zeichnen */
.assistant-persona .status-badge > span:first-child::before,
.assistant-persona .status-badge > span:first-child::after{
  display:none !important;
  content:none !important;
}

/* V19.4 – Status-Badge wie Referenz 2 */
.assistant-persona .status-badge{
  position:relative !important; z-index:6 !important; align-self:flex-start !important;
  display:inline-flex !important; flex-direction:row !important; align-items:center !important;
  justify-content:flex-start !important; gap:8px !important; width:max-content !important;
  max-width:100% !important; min-height:32px !important; box-sizing:border-box !important;
  margin:0 !important; padding:7px 12px !important;
  border:1px solid rgba(94,194,255,.78) !important; border-radius:11px !important;
  background:rgba(4,35,62,.34) !important; backdrop-filter:blur(8px) !important;
  box-shadow:none !important; color:#fff !important; font-size:11px !important;
  font-weight:700 !important; line-height:1.2 !important; white-space:nowrap !important;
  overflow:visible !important;
}
.assistant-persona .status-badge > span:first-child{
  position:static !important; display:block !important; flex:0 0 8px !important;
  width:8px !important; height:8px !important; min-width:8px !important; min-height:8px !important;
  max-width:8px !important; max-height:8px !important; margin:0 !important; padding:0 !important;
  transform:none !important; border:0 !important; border-radius:50% !important;
  background:#35d06f !important; box-shadow:0 0 0 4px rgba(53,208,111,.10) !important;
}
/* Alte globale .status-badge span-Regel für den Text vollständig neutralisieren */
.assistant-persona .status-badge > span:last-child{
  position:static !important; display:inline !important; flex:0 1 auto !important;
  width:auto !important; height:auto !important; min-width:0 !important; min-height:0 !important;
  max-width:none !important; max-height:none !important; margin:0 !important; padding:0 !important;
  transform:none !important; border:0 !important; border-radius:0 !important;
  background:transparent !important; box-shadow:none !important; color:#fff !important;
  font-size:inherit !important; font-weight:inherit !important; line-height:1.2 !important;
  white-space:nowrap !important; overflow:visible !important;
}
.assistant-persona .status-badge::before,
.assistant-persona .status-badge::after,
.assistant-persona .status-badge > span::before,
.assistant-persona .status-badge > span::after{content:none !important;display:none !important;}
@media (max-width:520px){
  .assistant-persona .status-badge{width:fit-content !important;max-width:100% !important;padding:7px 10px !important;font-size:10px !important;}
}


/* V20.2 – echter widget.js Einbettungsmodus */
html.widget-embed,
html.widget-embed body,
body.widget-embed{
  width:100%;
  height:100%;
  min-height:100%;
  background:#fff !important;
}
body.widget-embed{
  overflow:hidden;
}
.widget-embed .topbar{
  display:none !important;
}
.widget-embed .assistant-app{
  height:100dvh;
  min-height:100dvh;
}
.widget-embed .assistant-shell{
  width:100%;
  height:100dvh;
  min-height:100dvh;
  margin:0;
  border:0;
  border-radius:0;
  box-shadow:none;
}
.widget-embed .assistant-persona{
  min-height:100dvh;
}
.widget-embed .assistant-panel{
  min-height:0;
  height:100dvh;
}
.widget-embed .conversation-stage{
  min-height:0;
}
@media(max-width:900px){
  .widget-embed .assistant-shell{
    height:auto;
    min-height:100dvh;
    overflow:visible;
  }
  .widget-embed .assistant-persona{
    min-height:420px;
  }
  .widget-embed .assistant-panel{
    height:auto;
    min-height:620px;
  }
  body.widget-embed{
    overflow:auto;
  }
}

/* V20.13 Multi-Trade */
.trade-service-group{display:grid;gap:12px;margin-bottom:22px}
.trade-service-title{display:flex;align-items:center;gap:10px;padding:4px 2px}
.trade-service-title>span{font-size:21px}
.trade-service-title div{display:grid;gap:2px}
.trade-service-title strong{font-size:13px;color:var(--ink)}
.trade-service-title small{font-size:10px;color:var(--muted)}
