/* Crude Pattern – page-specific overrides */

.page-home .content-section {
  animation: fade-up 0.5s ease both;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-post main.container {
  max-width: 1200px;
}

.post-content a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.post-content a:hover {
  color: var(--orange);
}

.page-archive .archive-item:first-child {
  border-top: 1px solid var(--border);
}

.page-about .about-section:nth-child(even) {
  padding: 24px;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--teal);
}

.market-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.market-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(94, 234, 212, 0.15);
  font-size: 13px;
  color: rgba(226, 232, 240, 0.85);
}

.market-chip strong {
  color: var(--teal-light);
  font-weight: 700;
}

.market-chip.ng strong {
  color: var(--orange-light);
}
