.no-posts {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 2rem;
  background-color: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-family-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  border-radius: var(--radius-lg);
  max-width: 800px;
  margin: 10rem auto;
  gap: 1rem;
  .no-posts-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  .no-posts-message {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .no-posts-suggestion {
    font-size: 1rem;
    color: var(--color-secondary);
  }
  a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    &:hover {
      text-decoration: underline;
    }
  }
}
