body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", sans-serif;
  margin: 0;
  color: #333;
  background-color: #f9f9f9;
  line-height: 1.6;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.header h1 {
  margin: 0;
  font-size: 1.5rem;
}

/* Hero */
.hero {
  background: #fff;
  padding: 40px;
  margin-top: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* News List */
.news-section {
  margin-top: 40px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.news-list {
  list-style: none;
  padding: 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.news-item {
  border-bottom: 1px solid #eee;
}

.news-item:last-child {
  border-bottom: none;
}

.news-link {
  display: block;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}

.news-link:hover {
  background-color: #f5f5f5;
}

.news-meta {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 5px;
  display: flex;
  gap: 10px;
}

.category {
  background: #eee;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
}

.news-title {
  margin: 0;
  font-weight: bold;
  color: #0051c3;
}

.loading {
  padding: 20px;
  text-align: center;
  color: #888;
}