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

body {
  min-height: 100vh;
  background-color: #000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #fff;
}

.site-header {
  border-bottom: 1px solid #111;
  padding: 28px 0;
}

.site-header .inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}

.site-header h1 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #CADCFA;
}

.content {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 32px 96px;
}

.post-list {
  display: flex;
  flex-direction: column;
}

.post-item {
  display: block;
  padding: 36px 0;
  border-bottom: 1px solid #111;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.15s;
}

.post-item:first-child {
  padding-top: 0;
}

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

.post-item:hover .post-title {
  color: #CADCFA;
}

.post-title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color 0.15s;
}

.post-excerpt {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.75rem;
  color: #333;
  letter-spacing: 0.03em;
}


.empty {
  padding: 80px 0;
  text-align: center;
  color: #2a2a2a;
  font-size: 0.9rem;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid #111;
  margin-top: 8px;
}

.btn-page {
  background: transparent;
  border: 1px solid #222;
  border-radius: 8px;
  color: #555;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 9px 16px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  font-family: inherit;
}

.btn-page:hover:not(:disabled) {
  color: #ccc;
  border-color: #444;
}

.btn-page:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.page-info {
  font-size: 0.75rem;
  color: #333;
  letter-spacing: 0.04em;
}
