.no-posts {
  padding: 80px 20px;
  text-align: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-family: "Noto Sans JP", sans-serif;
}
.no-posts__container {
  max-width: 600px;
  margin: 0 auto;
}
.no-posts__icon {
  margin-bottom: 24px;
  color: #999;
}
.no-posts__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #333;
}
.no-posts__message {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
  color: #666;
}
.no-posts__actions {
  margin-top: 24px;
}
.no-posts__button {
  background: #333;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.no-posts__button:hover {
  background: #555;
}
.no-posts__button:focus {
  outline: 2px solid #333;
  outline-offset: 2px;
}

@media (max-width: 960px) {
  .no-posts {
    min-height: fit-content;
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
  }
}
