@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;600&family=Inter:wght@400;600&display=swap');

:root {
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
  --font-family-mono: 'Fira Code', monospace;
  --pal-bg: #0d1117;
  --pal-surface: #161b22;
  --pal-border: #30363d;
  --pal-text: #c9d1d9;
  --pal-muted: #8b949e;
  --pal-purple: #bc8cff;
  --pal-link: #58a6ff;
}

body {
  font-family: var(--font-family);
  background: var(--pal-bg);
  color: var(--pal-text);
  line-height: 1.6;
}

a {
  color: var(--pal-link);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  color: #f0f6fc;
  font-weight: 600;
  margin-top: 1.5rem;
}

/* Hero Minimalista */
.hero {
  border-bottom: 1px solid var(--pal-border);
  background: transparent;
  padding: 2rem 0;
  margin-bottom: 2rem;
  border-radius: 0;
  box-shadow: none;
}

.hero::after { display: none; }

.hero article {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero .profile-avatar {
  width: 64px; /* Bem menor e mais discreto */
  height: 64px;
  border-radius: 50%; /* Circular para um look mais limpo */
  border: 1px solid var(--pal-border);
}

.hero h5 {
  font-size: 1.5rem;
  background: none;
  -webkit-text-fill-color: initial;
  margin: 0;
  color: #f0f6fc;
}

.hero p {
  font-size: 0.95rem;
  margin: 0.5rem 0 0;
}

/* Lista de Artigos */
.content-list-item {
  border: 0;
  border-bottom: 1px solid var(--pal-border);
  background: transparent;
  padding: 1.5rem 0;
  border-radius: 0;
  transition: none;
}

.content-list-item:hover {
  transform: none;
  background: transparent;
}

.content-list-item::before { display: none; }

.tag, .content-tags a {
  background: #21262d !important;
  border: 1px solid var(--pal-border) !important;
  color: var(--pal-muted) !important;
  font-size: 0.7rem;
  border-radius: 4px;
}

/* Código */
pre {
  background: #010409 !important;
  border: 1px solid var(--pal-border);
  border-radius: 6px;
  padding: 1rem !important;
}

code {
  font-family: var(--font-family-mono);
  background: #21262d;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
}
