/* K-Kuriren */

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

body {
  font-family: system-ui, -apple-system, sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
}

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

img { max-width: 100%; height: auto; }

.wrap { max-width: 700px; margin: 0 auto; padding: 0 1rem; }

/* Header */
.site-header {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}

.site-header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.site-name {
  font-size: 1.5rem;
  font-weight: 700;
}

.site-nav a {
  margin-left: 1.5rem;
  font-size: 0.9rem;
  color: #666;
}

.site-nav a:hover { color: #000; }

/* Footer */
.site-footer {
  border-top: 1px solid #ddd;
  padding: 2rem 0;
  margin-top: 3rem;
  text-align: center;
  color: #999;
  font-size: 0.85rem;
}

/* Article list */
.article-feed { padding: 1rem 0; }

.feed-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid #eee;
}

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

.feed-item .label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #999;
  margin-bottom: 0.25rem;
}

.feed-item h2 {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.3rem;
}

.feed-item h2 a:hover { text-decoration: underline; }

.feed-item .summary {
  color: #666;
  font-size: 0.95rem;
}

/* Top story gets bigger */
.feed-item:first-child h2 { font-size: 1.75rem; }
.feed-item:first-child .summary { font-size: 1.05rem; }

/* Single article */
.article-single { padding: 2rem 0; }

.article-single .label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #999;
  margin-bottom: 0.5rem;
}

.article-single h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.article-single .byline {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.article-single .bullets {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}

.article-single .bullets li {
  font-weight: 600;
  margin-bottom: 0.3rem;
  line-height: 1.5;
}

.article-single .body p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.article-single .back {
  display: inline-block;
  margin-top: 2rem;
  color: #999;
  font-size: 0.9rem;
}

.article-single .back:hover { color: #000; }

/* Page heading */
.page-heading {
  font-size: 1.5rem;
  font-weight: 700;
  padding: 1.5rem 0 0;
}

@media (max-width: 500px) {
  .site-header .wrap { flex-direction: column; gap: 0.5rem; }
  .site-nav a { margin-left: 0; margin-right: 1rem; }
  .article-single h1 { font-size: 1.5rem; }
  .feed-item:first-child h2 { font-size: 1.3rem; }
}
