/* AIA SYSTEMS — Blog (retro platformer, readable long-form) */

/* Post grid on the listing page */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.post-card {
  background: #000;
  border: 4px solid var(--coin);
  box-shadow: 6px 6px 0 var(--brick-dark);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}
.post-card:hover { transform: translateY(-3px); box-shadow: 8px 10px 0 var(--brick-dark); }
.post-card__tag {
  font-size: 8px;
  color: var(--question);
  letter-spacing: 2px;
}
.post-card__title {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
  text-shadow: 2px 2px 0 #000;
}
.post-card__excerpt {
  font-family: 'VT323', monospace;
  font-size: 19px;
  line-height: 1.35;
  color: #d8d8d8;
}
.post-card__go {
  margin-top: auto;
  font-size: 9px;
  color: var(--coin);
  letter-spacing: 1px;
}

/* Article page */
.article {
  position: relative;
  z-index: 4;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 200px;
}
.article__crumb {
  font-size: 9px;
  color: var(--coin);
  letter-spacing: 1px;
  margin-bottom: 22px;
}
.article__crumb a { color: var(--coin); text-decoration: none; }
.article__crumb a:hover { text-decoration: underline; }
.article__tag {
  display: inline-block;
  font-size: 8px;
  color: var(--text-dark);
  background: var(--coin);
  padding: 6px 10px;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.article h1 {
  font-size: clamp(18px, 3.4vw, 28px);
  line-height: 1.5;
  color: var(--text);
  text-shadow: 3px 3px 0 #000, 6px 6px 0 var(--brick-dark);
  margin-bottom: 26px;
}
.article__body {
  font-family: 'VT323', monospace;
  font-size: 22px;
  line-height: 1.5;
  color: #f0f0f0;
  background: rgba(0,0,0,0.55);
  border: 3px solid #000;
  padding: 26px 28px;
}
.article__body h2 {
  font-family: 'Press Start 2P', monospace;
  font-size: 13px;
  line-height: 1.6;
  color: var(--coin);
  text-shadow: 2px 2px 0 #000;
  margin: 30px 0 14px;
}
.article__body p { margin-bottom: 16px; }
.article__body ul { margin: 0 0 16px 22px; }
.article__body li { margin-bottom: 8px; }
.article__body strong { color: var(--coin); }
.article__body .confirm {
  color: var(--brick);
  background: rgba(255,255,255,0.06);
  padding: 1px 6px;
}
.article__cta {
  background: #000;
  border: 4px solid var(--pipe);
  box-shadow: 6px 6px 0 var(--pipe-dark);
  padding: 24px 28px;
  margin-top: 36px;
  text-align: center;
}
.article__cta p { font-size: 11px; line-height: 1.7; margin-bottom: 16px; }
.article__cta a {
  display: inline-block;
  font-size: 11px;
  color: var(--text-dark);
  background: var(--coin);
  border: 3px solid #000;
  padding: 12px 18px;
  text-decoration: none;
  letter-spacing: 1px;
}
.article__cta a:hover { background: var(--question); }
