/* === Agent Legend-Inspired Styles (No Web Fonts) === */

/* Brand Colors */
:root {
  --al-blue: #065681;
  --al-orange: #EF503E;
  --al-gray-dark: #333333;
  --al-gray-light: #f4f4f4;
  --al-font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* Base font */
body, .hs__content {
  font-family: var(--al-font);
  color: var(--al-gray-dark);
  background-color: #fff;
  line-height: 1.6;
}

/* Headings */
.hs__content h1,
.hs__content h2,
.hs__content h3 {
  color: var(--al-blue);
  font-family: var(--al-font);
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.hs__content h1 { font-size: 2em; }
.hs__content h2 { font-size: 1.75em; }
.hs__content h3 { font-size: 1.5em; }

/* Link styling */
.hs__content a {
  color: var(--al-orange);
  text-decoration: none;
}
.hs__content a:hover {
  text-decoration: underline;
}

/* Buttons / CTAs */
.hs__content .btn,
.hs__content button {
  display: inline-block;
  background-color: var(--al-orange);
  color: #fff;
  padding: 0.6em 1.2em;
  border: none;
  border-radius: 4px;
  font-size: 1em;
  cursor: pointer;
  font-family: var(--al-font);
  text-align: center;
}
.hs__content .btn:hover,
.hs__content button:hover {
  background-color: #d84632;
}

/* Code blocks */
.hs__content pre,
.hs__content code {
  background-color: var(--al-gray-light);
  padding: 0.5em;
  font-family: monospace;
  border-radius: 3px;
  overflow-x: auto;
}

/* Tables */
.hs__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
}
.hs__content table th {
  background-color: var(--al-blue);
  color: #fff;
  padding: 0.6em;
  text-align: left;
}
.hs__content table td {
  border: 1px solid #ccc;
  padding: 0.6em;
}

/* Blockquotes */
.hs__content blockquote {
  border-left: 4px solid var(--al-blue);
  padding-left: 1em;
  color: var(--al-gray-dark);
  margin: 1em 0;
  background-color: var(--al-gray-light);
}

/* Callouts */
.hs__content .callout {
  border-left: 4px solid var(--al-orange);
  background: #fff8f4;
  padding: 1em;
  margin: 1.5em 0;
}

/* Alerts / Notes */
.hs__content .note {
  background: var(--al-gray-light);
  border-left: 4px solid var(--al-gray-dark);
  padding: 0.8em;
  margin: 1em 0;
}
.hs__content .warning {
  background: #ffefea;
  border-left: 4px solid var(--al-orange);
  padding: 0.8em;
  margin: 1em 0;
}

/* Inline code */
.hs__content code {
  background: var(--al-gray-light);
  padding: 0.2em 0.4em;
  font-size: 0.95em;
  border-radius: 3px;
}

/* Horizontal rule */
.hs__content hr {
  border: none;
  height: 1px;
  background-color: #ddd;
  margin: 2em 0;
}
