﻿.intro {
  color: var(--text-muted);
  max-width: 72ch;
}

.section-muted {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.two-col-list {
  display: grid;
  gap: 1rem;
}

.term-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.term-list li {
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.55rem;
}

.term-list small {
  color: var(--text-muted);
}

.example-chat {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 1rem;
  margin-bottom: 0.8rem;
}

.example-chat p {
  margin-bottom: 0.35rem;
}

.trust-strip {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .two-col-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
