/* Agentic Whitepaper — content styling (header/footer from agentic-trustline.css) */

.agentic-wp-paper {
  /* Slightly brighter than the generic Trustline card background */
  background: rgba(0, 0, 0, 0.32);
}

.agentic-wp-section {
  margin-bottom: calc(1.2rem * 1.5);
}

.agentic-wp-section:last-child {
  margin-bottom: 0;
}

.agentic-wp-h2 {
  font-family: var(--font-display, 'Anta', sans-serif);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #fff;
  font-size: calc(1.05rem * 1.5);
  margin: calc(0.9rem * 1.5) 0 calc(0.65rem * 1.5);
  line-height: 1.2;
}

.agentic-wp-p {
  font-family: var(--mono, 'Share Tech Mono', monospace);
  color: var(--muted, #3a5a80);
  font-size: calc(0.78rem * 1.5);
  line-height: 1.6;
  margin: 0 0 calc(0.75rem * 1.5);
}

.agentic-wp-strong {
  color: #fff;
  font-weight: 700;
}

.agentic-wp-list {
  font-family: var(--mono, 'Share Tech Mono', monospace);
  color: var(--muted, #3a5a80);
  font-size: calc(0.72rem * 1.5);
  line-height: 1.55;
  padding-left: 1.25rem;
  margin: 0 0 calc(0.75rem * 1.5);
}

.agentic-wp-list li {
  margin: calc(0.3rem * 1.5) 0;
}

.agentic-wp-sublist {
  padding-left: 1.25rem;
  margin-top: calc(0.25rem * 1.5);
}

.agentic-wp-code {
  font-family: var(--mono, 'Share Tech Mono', monospace);
  color: var(--accent2, #7dd3ff);
  word-break: break-all;
}

.agentic-wp-table-wrap {
  overflow-x: auto;
  margin: calc(1.05rem * 1.5) 0;
  border-radius: 10px;
}

.agentic-wp-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-family: var(--mono, 'Share Tech Mono', monospace);
  font-size: calc(0.72rem * 1.5);
  color: var(--text, #cde4ff);
}

.agentic-wp-table thead th {
  text-align: left;
  padding: calc(0.6rem * 1.5) calc(0.75rem * 1.5);
  border-bottom: 1px solid rgba(0, 194, 255, 0.35);
  background: rgba(0, 194, 255, 0.05);
  color: #fff;
  font-weight: 800;
}

.agentic-wp-table tbody td {
  padding: calc(0.55rem * 1.5) calc(0.75rem * 1.5);
  border-bottom: 1px solid rgba(0, 194, 255, 0.18);
  vertical-align: top;
}

.agentic-wp-table tbody tr:last-child td {
  border-bottom: none;
}

.agentic-wp-table-meta {
  margin-top: calc(0.35rem * 1.5);
  color: var(--muted, #3a5a80);
  font-size: 0.98em;
}

.agentic-wp-link {
  color: #7dd3ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.agentic-wp-links {
  display: flex;
  flex-wrap: wrap;
  gap: calc(0.65rem);
  margin-top: calc(0.6rem * 1.5);
}

.agentic-wp-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: calc(0.55rem * 1.5) calc(1.05rem * 1.5);
  border-radius: 10px;
  border: 1px solid rgba(0, 194, 255, 0.35);
  background: rgba(0, 30, 50, 0.4);
  color: #fff;
  font-family: var(--mono, 'Share Tech Mono', monospace);
  font-size: calc(0.72rem * 1.5);
  font-weight: 800;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s, filter 0.15s;
}

.agentic-wp-links a:hover {
  border-color: rgba(0, 194, 255, 0.7);
  background: rgba(0, 50, 70, 0.45);
  filter: brightness(1.05);
}

.agentic-wp-spacer {
  height: calc(0.7rem * 1.5);
}

