.publish-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px;
  min-height: 85vh;
}

.publish-list-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.book-card {
  display: block;
  padding: 24px;
  background: #fff;
  border: 1px solid rgb(28 28 28 / 0.1);
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.book-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.book-card:focus {
  outline: 2px solid #4a9eff;
  outline-offset: 2px;
}

.book-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  font-family: 'Noto Serif JP', serif;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-all;
}

.book-card-description {
  font-size: 0.875rem;
  color: rgb(28 28 28 / 0.6);
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.book-card-meta {
  font-size: 0.75rem;
  color: rgb(28 28 28 / 0.4);
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  color: #888;
  text-align: center;
}

.empty-state p {
  font-size: 16px;
  margin-bottom: 24px;
}
