body {
  margin: 0;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  box-sizing: border-box;
}
.blog-page {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.quote {
  display: flex;
  flex-direction: column;
}
h1 {
  margin-bottom: 2rem;
}
hr {
  border: none;
  background-color: pink;
  height: 2px;
  width: 50%;
  margin: 1rem 0;
}
blockquote {
  font-family: Georgia, 'Times New Roman', serif; /* or a system sans-serif stack */
  font-size: 1rem;          /* 16px base — don't go below */
  line-height: 1.6;         /* breathing room between lines */
  max-width: 65ch;          /* optimal line length (~65 characters) */
  color: #1a1a1a;           /* soft black — easier than pure #000 */
  letter-spacing: 0.01em;   /* subtle, helps at small sizes */
  word-spacing: 0.05em;
  margin-bottom: 1.25em;    /* space between paragraphs */
  text-wrap: pretty;
}
blockquote cite::before {
  content: "— ";
}
.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;       /* pill shape */
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #f0f0f0;
  color: #555;
  text-decoration: none;
  width: fit-content;
}

.tag:hover {
  background: #e0e0e0;
}