.repos {
  margin-top: 28px;
}

.repos-header h2 {
  margin: 0;
  font-size: 24px;
}

.repos-header p {
  margin-top: 6px;
  opacity: 0.75;
  font-size: 14px;
}

.repo-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}

.repo-card {
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

.repo-card:hover {
  border-color: rgba(96, 165, 250, 0.55);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
}

.repo-title {
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.repo-desc {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.82;
  line-height: 1.6;
}

.repo-meta {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12px;
  opacity: 0.75;
}

.repo-pill {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.03);
}

.repo-error {
  margin-top: 12px;
  font-size: 13px;
  opacity: 0.75;
}