/* wa-bridge.css — стилевой мост под оформление сайта (deepseek/deepseek-v4-pro). Не редактировать руками. */
:root {
  --bg-dark: #F4F6F9;
  --bg-dark-2: #EBEFF3;
  --bg-card: #FFFFFF;
  --text-white: #333333;
  --text-muted: #666666;
  --border: #E0E0E0;
  --accent: #1976D2;
}

.wa-embed,
.wa-embed *,
.wa-embed *::before,
.wa-embed *::after {
  box-sizing: border-box;
}

.wa-embed {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-white);
  background-color: transparent;
  max-width: 1110px;
  margin: 0 auto;
  padding: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.wa-embed * {
  max-width: 100%;
}

.wa-embed img,
.wa-embed svg,
.wa-embed canvas,
.wa-embed video {
  height: auto;
}

.wa-embed h1,
.wa-embed h2,
.wa-embed h3,
.wa-embed h4,
.wa-embed h5,
.wa-embed h6 {
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 0.5em;
  color: var(--text-white);
}

.wa-embed h1 {
  font-size: 1.75rem;
  margin-top: 0;
}

.wa-embed h2 {
  font-size: 1.375rem;
}

.wa-embed h3 {
  font-size: 1.125rem;
}

.wa-embed p {
  margin: 0 0 1em;
}

.wa-embed .hero {
  padding: 12px 0;
  margin: 0;
}

.wa-embed .hero h1 {
  font-size: 1.625rem;
  line-height: 1.2;
  margin: 0 0 6px;
}

.wa-embed .hero p {
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 0 0 6px;
  color: var(--text-muted);
}

.wa-embed a {
  color: var(--accent);
  text-decoration: none;
}

.wa-embed a:hover,
.wa-embed a:focus {
  color: #1565C0;
  text-decoration: underline;
}

.wa-embed .card,
.wa-embed .panel,
.wa-embed .operator-card,
.wa-embed .stat-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 16px;
  margin-bottom: 16px;
}

.wa-embed .card .cta,
.wa-embed .card .action-link,
.wa-embed .card a.button,
.wa-embed .card button,
.wa-embed .cta,
.wa-embed .btn,
.wa-embed a.button,
.wa-embed button:not([class]) {
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.wa-embed .card .cta:hover,
.wa-embed .card .cta:focus,
.wa-embed .card .action-link:hover,
.wa-embed .card a.button:hover,
.wa-embed .card button:hover,
.wa-embed .cta:hover,
.wa-embed .btn:hover,
.wa-embed a.button:hover,
.wa-embed button:not([class]):hover {
  background: #1565C0;
  text-decoration: none;
  color: #ffffff;
}

.wa-embed table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  margin: 1em 0;
  background: var(--bg-card);
}

.wa-embed th,
.wa-embed td {
  border: 1px solid var(--border);
  padding: 8px 12px;
  text-align: left;
  vertical-align: top;
}

.wa-embed th {
  background: #F0F2F5;
  font-weight: 600;
  color: var(--text-white);
}

.wa-embed .legal,
.wa-embed .footer-legal {
  color: var(--text-muted);
  font-size: 0.8125rem;
  line-height: 1.5;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.wa-embed .legal a,
.wa-embed .footer-legal a {
  color: var(--text-muted);
  text-decoration: underline;
}

.wa-embed .legal a:hover,
.wa-embed .footer-legal a:hover {
  color: var(--accent);
}

.wa-embed hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 1.5em 0;
}

.wa-embed [role="separator"],
.wa-embed .divider {
  border-top: 1px solid var(--border);
  margin: 1.5em 0;
}

.wa-embed .operator-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.wa-embed .operator-list .card {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 440px) {
  .wa-embed .hero h1 {
    font-size: 1.75rem;
  }
}

@media (min-width: 600px) {
  .wa-embed .operator-list .card {
    flex: 1 1 calc(50% - 16px);
  }
}

@media (min-width: 900px) {
  .wa-embed .operator-list .card {
    flex: 1 1 calc(33.333% - 16px);
  }
}
