html {
  font-family: "Fira Sans", "Symbols Nerd Font", "Courier New", monospace !important;
}

/*
<article>
    <div class=>
        <h1 style="margin: 0; color: var(--accent-primary);">{{ title }}</h1>
        <span style="background: var(--ui-border); padding: 2px 8px; font-size: 0.8rem; font-family: var(--font-stack-mono);">{{ type }}</span>
    </div>

    <div style="display: grid; grid-template-columns: {{ '3fr 1fr' if stats else '1fr' }}; gap: 3rem;">
        
        <div class="lore-text" style="line-height: 1.8;">
            {{ content|safe }}
        </div>

        {% if stats %}
        <aside style="background: var(--bg-surface); padding: 1.5rem; height: fit-content; border-radius: 4px;">
            <h3 style="margin-top: 0; font-size: 1rem; border-bottom: 1px solid var(--ui-border); padding-bottom: 0.5rem;">Dados</h3>
            {% for key, value in stats.items() %}
            <div style="margin-bottom: 0.8rem; font-size: 0.9rem;">
                <strong style="display: block; color: var(--text-muted); font-size: 0.8em; text-transform: uppercase;">{{ key }}</strong>
                <span>{{ value }}</span>
            </div>
            {% endfor %}
        </aside>
        {% endif %}
    </div>
</article>

<div style="margin-top: 4rem;">
    <a href="/aiterus">← Voltar ao Portal</a>
</div>
*/

/* Layout do Artigo */

article {
  max-width: 75ch;
  width: 100%;
  margin: 5rem auto 0;
  box-sizing: border-box;
}

.aiterus-articles-header {
  margin-bottom: 3rem;
  text-align: center;
  border-bottom: 1px dashed var(--ui-border);
  padding-bottom: 2rem;
}

.aiterus-articles-header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--accent-primary);
}

.aiterus-articles-header span {
  background: var(--ui-border);
  padding: 2px 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.lore-text {
  line-height: 1.8;
  font-size: 1.1rem;
}

.lore-text h2 {
  margin-top: 2.5rem;
}
.lore-text p {
  margin-bottom: 1.5rem;
}
.lore-text blockquote {
  border-left: 3px solid var(--accent-action);
  padding-left: 1rem;
  color: var(--text-muted);
  font-style: italic;
}
