/* ── /outages RU tracker («Даундетектор», variant B, 2026-07-17) ──────
   Live status of major Russian services. DESIGN.md tokens only. */

/* Dashboard needs width — the article-ish .seo-page container is too
   narrow for the table + sidebar layout of the approved render.
   Both the <main> itself and the inner .container are width-capped. */
.seo-page--ruo { max-width: none; }
.seo-page--ruo .container { max-width: 1240px; }
.wrap:has(> .seo-page--ruo) { max-width: 1240px; }

.ruo-head { margin-bottom: 10px; }
.ruo-head h1 {
  font-size: 2.2rem;
  letter-spacing: -.01em;
}
.ruo-live {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0 10px;
}
.ruo-live__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--green);
  background: var(--status-pass-bg);
  border: 1px solid var(--status-pass-border);
  border-radius: var(--radius-pill, 100px);
  padding: 3px 10px;
}
.ruo-live__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: ruoPulse 1.6s ease-in-out infinite;
}
@keyframes ruoPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}
@media (prefers-reduced-motion: reduce) {
  .ruo-live__dot { animation: none; }
}
.ruo-live__ts {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  color: var(--muted);
}

.ruo-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.ruo-stat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  font-size: var(--fs-sm);
  color: var(--muted2);
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-pill, 100px);
}
.ruo-stat strong { color: var(--text); font-variant-numeric: tabular-nums; }
.ruo-stat--up::before,
.ruo-stat--down::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.ruo-stat--down::before { background: var(--red); }
.ruo-stat--down.is-zero::before { background: var(--green); }
.ruo-stat--up strong { color: var(--green); }
.ruo-stat--down strong { color: var(--red); }
.ruo-stat--down.is-zero strong { color: var(--green); }

/* Problem cards */
.ruo-problems {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 20px 0 28px;
}
.ruo-pcard {
  background:
    radial-gradient(120% 100% at 100% 0%, var(--danger-10, rgba(244,114,114,.08)), transparent 60%),
    var(--surface);
  border: 1px solid var(--status-fail-border, rgba(244,114,114,.25));
  border-radius: var(--radius);
  padding: 16px 18px;
}
.ruo-pcard__head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
}
.ruo-pcard__names { flex: 1; min-width: 0; }
.ruo-pcard__name { font-weight: 700; color: var(--text); }
.ruo-pcard__cat { font-size: var(--fs-xs); color: var(--muted); }
.ruo-pill-down {
  font-family: var(--mono);
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--red);
  background: var(--status-fail-bg, rgba(244,114,114,.12));
  border: 1px solid var(--status-fail-border, rgba(244,114,114,.25));
  border-radius: var(--radius-pill, 100px);
  padding: 4px 10px;
  white-space: nowrap;
}
.ruo-chart {
  display: block;
  width: 100%;
  height: 56px;
  margin-bottom: 10px;
}
.ruo-chart__area { fill: var(--status-fail-bg, rgba(244,114,114,.12)); }
.ruo-chart__line {
  fill: none;
  stroke: var(--red);
  stroke-width: 2;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.ruo-pcard__meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--mono);
  font-size: var(--fs-xs);
  color: var(--muted);
}

/* All-clear panel */
.ruo-allclear {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 28px;
  padding: 16px 20px;
  font-size: var(--fs-base);
  color: var(--text);
  background:
    radial-gradient(120% 120% at 0% 0%, var(--status-pass-bg), transparent 55%),
    var(--surface);
  border: 1px solid var(--status-pass-border);
  border-radius: var(--radius);
}
.ruo-allclear__dot {
  flex: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--status-pass-border);
  animation: ruoPulse 2s ease-in-out infinite;
}

/* Two-column layout */
.ruo-cols {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
  margin-bottom: 40px;
}
.ruo-h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
}

/* Services table */
.ruo-table-wrap { overflow-x: auto; }
.ruo-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: var(--fs-sm);
}
.ruo-table th {
  text-align: left;
  padding: 10px 14px;
  font-size: var(--fs-2xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  border-bottom: 1px solid var(--border2);
  background: var(--surface2);
}
.ruo-table td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text2, var(--muted2));
  vertical-align: middle;
}
.ruo-table tbody tr:last-child td { border-bottom: none; }
.ruo-table tbody tr:hover td { background: var(--surface2); }
.ruo-td-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.ruo-avatar {
  flex: none;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-glow-12);
  border: 1px solid var(--accent-glow-15);
}
.ruo-avatar--down {
  color: var(--red);
  background: var(--status-fail-bg, rgba(244,114,114,.12));
  border-color: var(--status-fail-border, rgba(244,114,114,.25));
}
.ruo-cat {
  font-size: var(--fs-2xs);
  color: var(--muted2);
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-pill, 100px);
  padding: 2px 9px;
  white-space: nowrap;
}
.ruo-td-uptime { min-width: 130px; }
.ruo-uptime-num {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  color: var(--text);
  display: inline-block;
  min-width: 52px;
}
.ruo-uptime-bar {
  display: inline-block;
  vertical-align: middle;
  width: 56px;
  height: 5px;
  border-radius: 3px;
  background: var(--surface3);
  overflow: hidden;
}
.ruo-uptime-fill {
  display: block;
  height: 100%;
  border-radius: 3px;
  background: var(--green);
}
.ruo-uptime-fill.is-warn { background: var(--yellow); }
.ruo-td-status { white-space: nowrap; }
.ruo-dot {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--surface3);
  margin-right: 7px;
}
.ruo-dot--up { background: var(--green); }
.ruo-dot--down {
  background: var(--red);
  box-shadow: 0 0 8px var(--status-fail-border, rgba(244,114,114,.4));
  animation: ruoPulse 1.4s ease-in-out infinite;
}
.ruo-ms {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  color: var(--muted2);
}
/* Dual-region "blocked in RU / works abroad" status on the hub table */
.ruo-dot--warn { background: var(--yellow, #fbbf24); box-shadow: 0 0 8px rgba(251, 191, 36, .45); }
.ruo-intl { font-size: var(--fs-xs); color: var(--yellow, #fbbf24); white-space: nowrap; }

/* Sidebar timeline */
.ruo-side { position: sticky; top: 84px; }
.ruo-timeline {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 16px;
}
.ruo-tl-item {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: var(--fs-sm);
  color: var(--muted2);
}
.ruo-tl-item:last-child { border-bottom: none; }
.ruo-tl-item .ruo-dot { margin-top: 5px; }
.ruo-tl-body strong { color: var(--text); }
.ruo-tl-time {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  color: var(--muted);
  margin-right: 6px;
}
.ruo-tl-empty {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--muted2);
}
.ruo-archive-head { margin-top: 8px; }
.ruo-archive-head h2 { font-size: 1.35rem; }

@media (max-width: 900px) {
  .ruo-cols { grid-template-columns: 1fr; }
  .ruo-side { position: static; }
}
@media (max-width: 600px) {
  .ruo-table th:nth-child(2), .ruo-table td:nth-child(2) { display: none; }
  .ruo-td-uptime { min-width: 90px; }
  .ruo-uptime-bar { display: none; }
}

/* ── /outages/<service> detail pages — design variant B «Editorial Answer» ── */
.ruo-svc-tools,
.ruo-svc-related { margin: 34px 0; }

/* Oversized editorial headline */
.svcb-hero { margin: 10px 0 18px; }
.svcb-hero__title {
  font-size: clamp(34px, 6.5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
}

/* Full-width answer banner — THE direct answer */
.svcb-answer {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 26px;
  border-radius: var(--radius, 12px);
  border: 1px solid var(--border2);
  border-left: 4px solid var(--muted);
  background: var(--surface);
  margin: 0 0 26px;
}
.svcb-answer--up {
  border-left-color: var(--green, #34d399);
  background: linear-gradient(135deg, rgba(52, 211, 153, .10) 0%, rgba(52, 211, 153, .03) 55%, transparent 100%);
  box-shadow: 0 0 34px -14px rgba(52, 211, 153, .35);
}
.svcb-answer--down {
  border-left-color: var(--red, #f87171);
  background: linear-gradient(135deg, rgba(248, 113, 113, .12) 0%, rgba(248, 113, 113, .04) 55%, transparent 100%);
  box-shadow: 0 0 34px -14px rgba(248, 113, 113, .4);
}
/* Dual-region: blocked in RU but alive abroad — amber, not red (not an outage) */
.svcb-answer--blocked {
  border-left-color: var(--yellow, #fbbf24);
  background: linear-gradient(135deg, rgba(251, 191, 36, .12) 0%, rgba(251, 191, 36, .04) 55%, transparent 100%);
  box-shadow: 0 0 34px -14px rgba(251, 191, 36, .4);
}
.svcb-answer--blocked .svcb-answer__icon { background: var(--yellow, #fbbf24); box-shadow: 0 0 18px rgba(251, 191, 36, .5); }
.svcb-answer--blocked .svcb-answer__lead strong { color: var(--yellow, #fbbf24); }
.svcb-answer__regions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--muted2);
}
.svcb-region { display: inline-flex; align-items: center; gap: 7px; }
.svcb-region strong { color: var(--text); font-weight: 600; }
.svcb-answer__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--white, #fff);
  background: var(--muted);
}
.svcb-answer__icon svg { width: 28px; height: 28px; }
.svcb-answer--up   .svcb-answer__icon { background: var(--green, #34d399); box-shadow: 0 0 18px rgba(52, 211, 153, .45); }
.svcb-answer--down .svcb-answer__icon { background: var(--red, #f87171);   box-shadow: 0 0 18px rgba(248, 113, 113, .5); }
.svcb-answer__lead { font-size: 20px; line-height: 1.4; margin: 4px 0 6px; }
.svcb-answer__lead strong { font-weight: 700; }
.svcb-answer--up   .svcb-answer__lead strong { color: var(--green, #34d399); }
.svcb-answer--down .svcb-answer__lead strong { color: var(--red, #f87171); }
.svcb-answer__sub { color: var(--muted2); font-size: 15px; margin: 0; }

/* 24h response-time chart (server-rendered SVG) */
.svcb-chart {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius, 12px);
  padding: 18px 18px 10px;
  margin: 0 0 18px;
}
.svcb-chart__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}
.svcb-chart__head h2 { font-size: 16px; font-weight: 600; margin: 0; }
.svcb-chart__avg { font-size: 13px; color: var(--muted2); display: inline-flex; align-items: center; gap: 7px; }
.svcb-chart__avg strong { color: var(--accent); font-family: var(--mono); }
.svcb-chart__avgdot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.svcb-chart__svg { width: 100%; height: auto; display: block; }
.svcb-chart__grid { stroke: rgba(255, 255, 255, .07); stroke-width: 1; stroke-dasharray: 4 5; }
.svcb-chart__yl, .svcb-chart__xl {
  fill: var(--muted);
  font-size: 11px;
  font-family: var(--mono);
}
.svcb-chart__yl { text-anchor: end; }
.svcb-chart__xl { text-anchor: middle; }
.svcb-chart__down { stroke: var(--red, #f87171); stroke-width: 1.5; opacity: .8; }
/* Red spike zone on failed buckets (mock B) */
.svcb-chart__spike { fill: rgba(248, 113, 113, .28); }
/* White dot with a red ring on the last spike's top (mock B) */
.svcb-chart__downdot { fill: var(--white, #fff); stroke: var(--red, #f87171); stroke-width: 2.5; }
.svcb-chart__bubble rect { fill: var(--red, #f87171); }
.svcb-chart__bubble text {
  fill: var(--white, #fff);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--sans);
  text-anchor: middle;
}
/* Dashed response-time series (right axis) */
.svcb-chart__ms { stroke-dasharray: 7 6; opacity: .85; }
/* Axis titles above the scales */
.svcb-chart__axis-title {
  fill: var(--muted2);
  font-size: 12px;
  font-family: var(--sans);
}
.svcb-chart__axis-title--right { text-anchor: end; }
.svcb-chart__yl--right { text-anchor: start; }
/* Legend series keys: solid / dashed strokes */
.svcb-chart__key { width: 18px; height: 0; border-top: 3px solid var(--accent); border-radius: 2px; }
.svcb-chart__key--dashed { border-top-style: dashed; }
/* JS hover layer: crosshair, series dots, HTML tooltip */
.svcb-chart { position: relative; }
.svcb-chart__cross { stroke: rgba(255, 255, 255, .25); stroke-width: 1; }
.svcb-chart__hoverdot--fails { fill: var(--accent); stroke: var(--white, #fff); stroke-width: 1.5; }
.svcb-chart__hoverdot--ms { fill: var(--surface); stroke: var(--accent); stroke-width: 2; }
.svcb-tip {
  position: absolute;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 9px 12px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 8px;
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, .6);
  font-size: 12px;
  color: var(--muted2);
  pointer-events: none;
  opacity: 0;
  transition: opacity .12s ease;
  white-space: nowrap;
}
.svcb-tip.is-visible { opacity: 1; }
.svcb-tip strong { color: var(--text); font-family: var(--mono); font-size: 12px; }
@media (prefers-reduced-motion: reduce) {
  .svcb-tip { transition: none; }
}
/* Period switcher (server-side links; `period` is page-cache-whitelisted) */
.svcb-chart__periods { display: inline-flex; gap: 4px; background: var(--surface2); border: 1px solid var(--border); border-radius: 8px; padding: 3px; }
.svcb-chart__period {
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--muted2);
  text-decoration: none;
  transition: color .15s ease, background .15s ease;
}
.svcb-chart__period:hover { color: var(--text); }
.svcb-chart__period.is-active { background: var(--surface-3, var(--surface2)); color: var(--text); font-weight: 600; box-shadow: 0 1px 2px rgba(0,0,0,.35); }
.svcb-chart__legend { display: flex; gap: 18px; flex-wrap: wrap; margin: 2px 0 8px; }
.svcb-chart__downkey { width: 12px; height: 3px; border-radius: 2px; background: var(--red, #f87171); }
.svcb-chart__since { font-size: 12px; color: var(--muted); margin-left: auto; font-family: var(--mono); }

/* Inline mono metrics line */
.svcb-metrics {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted2);
  margin: 0 0 30px;
}
.svcb-metrics strong { color: var(--green, #34d399); font-weight: 600; }
.svcb-metrics span { margin: 0 6px; color: var(--muted); }

/* Vertical incident timeline */
.svcb-timeline { margin: 34px 0; }
.svcb-timeline h2 { margin-bottom: 18px; }
.svcb-timeline__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.svcb-timeline__list::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border2);
}
.svcb-timeline__item {
  position: relative;
  padding: 0 0 14px 44px;
}
.svcb-timeline__dot {
  position: absolute;
  left: 0;
  top: 14px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--surface2);
  border: 2px solid var(--border3, var(--border2));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white, #fff);
}
.svcb-timeline__dot svg { width: 13px; height: 13px; }
.svcb-timeline__dot.is-latest { background: var(--green, #34d399); border-color: var(--green, #34d399); box-shadow: 0 0 14px rgba(52, 211, 153, .5); }
.svcb-timeline__dot.is-down   { background: var(--red, #f87171);   border-color: var(--red, #f87171);   box-shadow: 0 0 14px rgba(248, 113, 113, .55); }
.svcb-timeline__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius, 12px);
  padding: 14px 18px;
  transition: border-color .15s ease;
}
.svcb-timeline__item:hover .svcb-timeline__card { border-color: var(--border3, var(--border2)); }
.svcb-timeline__row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.svcb-timeline__date { font-family: var(--mono); font-size: 13px; color: var(--muted2); }
.svcb-timeline__dur  { font-size: 13px; color: var(--muted2); margin-left: auto; display: inline-flex; align-items: center; gap: 6px; }
.svcb-timeline__clock { width: 14px; height: 14px; opacity: .8; }
.svcb-timeline__badge {
  font-size: 12px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 7px;
  color: var(--green, #34d399);
  background: rgba(52, 211, 153, .10);
  border: 1px solid rgba(52, 211, 153, .45);
}
.svcb-timeline__badge.is-down { color: var(--red, #f87171); background: rgba(248, 113, 113, .10); border-color: rgba(248, 113, 113, .45); }
.svcb-timeline__title { font-size: 15px; font-weight: 600; margin: 8px 0 0; }
.svcb-timeline__desc  { font-size: 13px; color: var(--muted2); margin: 4px 0 0; }

/* CTA band */
.svcb-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius, 12px);
  padding: 24px 26px;
  margin: 36px 0 10px;
}
.svcb-cta__text h2 { font-size: 20px; margin: 0 0 6px; }
.svcb-cta__text p  { color: var(--muted2); font-size: 14px; margin: 0; max-width: 560px; }
.svcb-cta__btn { flex: 0 0 auto; }
/* Decorative equalizer bars between CTA text and button (mock B) */
.svcb-cta__eq {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 34px;
  flex: 0 0 auto;
  margin: 0 6px;
}
.svcb-cta__eq i {
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent2, var(--accent)));
  opacity: .75;
}
.svcb-cta__eq i:nth-child(12n+1)  { height: 30%; }
.svcb-cta__eq i:nth-child(12n+2)  { height: 55%; }
.svcb-cta__eq i:nth-child(12n+3)  { height: 80%; }
.svcb-cta__eq i:nth-child(12n+4)  { height: 45%; }
.svcb-cta__eq i:nth-child(12n+5)  { height: 100%; }
.svcb-cta__eq i:nth-child(12n+6)  { height: 60%; }
.svcb-cta__eq i:nth-child(12n+7)  { height: 85%; }
.svcb-cta__eq i:nth-child(12n+8)  { height: 40%; }
.svcb-cta__eq i:nth-child(12n+9)  { height: 70%; }
.svcb-cta__eq i:nth-child(12n+10) { height: 50%; }
.svcb-cta__eq i:nth-child(12n+11) { height: 90%; }
.svcb-cta__eq i:nth-child(12n)    { height: 35%; }

/* FAQ — mock B: compact left-aligned rows, icon left, chevron right.
   Self-contained (no .faq-item inheritance — that variant centers text). */
.svcb-faq .faq-list { display: flex; flex-direction: column; gap: 10px; }
.svcb-faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius, 12px);
  transition: border-color .15s ease;
}
.svcb-faq__item:hover { border-color: var(--border2); }
.svcb-faq__item[open] { border-color: var(--border3, var(--border2)); }
.svcb-faq__item summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  cursor: pointer;
  list-style: none;
  text-align: left;
}
.svcb-faq__item summary::-webkit-details-marker { display: none; }
.svcb-faq__q {
  flex: 1 1 auto;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}
.svcb-faq__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  color: var(--muted2);
}
.svcb-faq__icon svg { width: 15px; height: 15px; }
.svcb-faq__chev {
  flex: 0 0 auto;
  color: var(--muted);
  transition: transform .18s ease;
  display: inline-flex;
}
.svcb-faq__chev svg { width: 16px; height: 16px; }
.svcb-faq__item[open] .svcb-faq__chev { transform: rotate(180deg); }
.svcb-faq__a {
  margin: 0;
  padding: 0 18px 16px 64px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text2, var(--muted2));
}

@media (max-width: 640px) {
  .svcb-answer { flex-direction: row; padding: 18px; gap: 14px; }
  .svcb-answer__icon { width: 42px; height: 42px; }
  .svcb-answer__icon svg { width: 21px; height: 21px; }
  .svcb-answer__lead { font-size: 17px; }
  .svcb-chart__head { flex-direction: column; align-items: flex-start; }
  .svcb-timeline__dur { margin-left: 0; }
  .svcb-cta { padding: 20px; }
  .svcb-cta__eq { display: none; }
  .svcb-cta__btn { width: 100%; text-align: center; }
}
.ruo-svc-noinc { color: var(--muted2); }
.ruo-svc-toollinks { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.ruo-svc-sibs {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px 16px;
}
.ruo-svc-sibs a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 0;
}
.ruo-svc-sibs a:hover { color: var(--accent); }
.ruo-svc-alllink { margin-top: 14px; }
.ruo-td-namelink { color: var(--text); text-decoration: none; }
.ruo-td-namelink:hover { color: var(--accent); text-decoration: underline; }
