*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Newsreader", Georgia, serif;
  font-size: 110%;
  background: #fafaf7;
  color: #222;
  min-height: 100vh;
  padding: 3rem 1.5rem;
}

.container {
  max-width: 640px;
  margin: 0 auto;
}

header {
  margin-bottom: 3rem;
}

header h1 {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

header h1 a {
  color: inherit;
  text-decoration: none;
}

header h1 span {
  color: #666;
}

header p {
  color: #666;
  margin-top: 0.25rem;
  font-size: 0.95rem;
}

.entries {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.entry {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 1.5rem;
}

.entry:last-child {
  border-bottom: none;
}

.entry-header {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.entry-name {
  font-size: 1.1rem;
  font-weight: 500;
}

.entry-name a {
  color: #222;
  text-decoration: none;
}

.entry-name a:hover {
  color: #206393;
}

.badge {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15em 0.5em;
  border-radius: 3px;
}

.badge-private {
  background: #eee;
  color: #666;
}

.badge-public {
  background: #d4edda;
  color: #2d6a3f;
}

.entry-description {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.entry-meta {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.75rem;
  color: #999;
  display: flex;
  gap: 1rem;
}

.tech-tag {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.7rem;
  color: #206393;
  background: rgba(32, 99, 147, 0.08);
  padding: 0.1em 0.4em;
  border-radius: 3px;
}

.empty {
  color: #999;
  font-style: italic;
}
