* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #f9fafb;
  color: #1f2937;
  line-height: 1.5;
}

.page-header {
  background: white;
  border-bottom: 1px solid #e5e7eb;
  padding: 32px 24px 24px;
  text-align: center;
}

.page-header h1 {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.5px;
}

.lede {
  margin: 0;
  color: #6b7280;
  font-size: 16px;
}

.board {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding: 24px;
  max-width: 1600px;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .board { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .board { grid-template-columns: 1fr; padding: 16px; }
  .page-header { padding: 24px 16px 16px; }
  .page-header h1 { font-size: 26px; }
}

.column {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
  min-height: 120px;
}

.column-heading {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #6b7280;
  padding-bottom: 10px;
  border-bottom: 1px solid #f3f4f6;
}

.cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card {
  background: #fafbfc;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #9ca3af;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 14px;
}

.card.type-article { border-left-color: #3b82f6; }
.card.type-bug { border-left-color: #ef4444; }
.card.type-feature { border-left-color: #10b981; }

.ticket {
  display: inline-block;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 3px;
  color: white;
  background: #6b7280;
  margin-right: 6px;
  vertical-align: middle;
}

.card.type-article .ticket { background: #3b82f6; }
.card.type-bug .ticket { background: #ef4444; }
.card.type-feature .ticket { background: #10b981; }

.type-label {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6b7280;
  vertical-align: middle;
}

.content {
  margin: 8px 0 0;
  color: #1f2937;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.status {
  margin: 8px 0 0;
  padding: 6px 8px;
  background: #fff7ed;
  border-left: 3px solid #f59e0b;
  border-radius: 3px;
  font-size: 13px;
  font-style: italic;
  color: #78350f;
  white-space: pre-wrap;
}

.status-label {
  font-style: normal;
  font-weight: 600;
  color: #92400e;
}

.empty {
  color: #9ca3af;
  font-size: 13px;
  font-style: italic;
  margin: 0;
}
