body {
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  padding: 15px;
  color: #333;
}
header {
  text-align: left;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.article-list {
  display: flex;
  flex-direction: column;
  gap: 30px
}

.article {
  padding: 20px;
  border-radius: 8px;
  background-color: #f8f9fa;
  transition: transform 0.13s;
}

.article:hover{
  transform: translateY(-2px);
}

.article h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

.article-meta {
  font-size: 0.9em;
  color: #778;
}

.article-summary{
  margin-bottom: 15px;
}

.article-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.read-more {
  display: inline-block;
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.read-more:hover {
  text-decoration: underline;
}
