hr::before {
  content: "❧";
  letter-spacing: 0.3em;
  font-size: 2.0rem;
  color: var(--color-accent-soft);
}

blockquote::before {
  content: "“";
  position: absolute;
  left: -1.0rem;
  top: -0.2rem;
  font-size: 3rem;
  line-height: 1;
}

blockquote p {
  margin: 1rem 0;
}

/* -----------------------------
   Article title block
----------------------------- */

#title-block-header {
  margin: 2.5rem 0 3rem;
}

/* Hide author */
#title-block-header .author {
  display: none;
}

/* Layout: title + date */
#title-block-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Title */
#title-block-header .title {
  font-family:
    "Baskerville",
    "Georgia",
    "Palatino Linotype",
    "Book Antiqua",
    serif;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}

/* Date */
#title-block-header .date {
  margin: 0;
  font-size: 1.2rem;
  color: var(--color-muted);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  opacity: 0.8;
}

@media (max-width: 700px) {
  #title-block-header {
    flex-direction: column;
    align-items: flex-start;
  }

  #title-block-header .date {
    margin-top: 0.3rem;
  }
}

/* -----------------------------
   Callout / concept summary
----------------------------- */

.callout {
  padding-left: 1.4rem;
  padding-right: 1.4rem;
  padding-bottom: 0.5rem;
  background: var(--color-bg-alt);
  border-left: 4px solid var(--color-accent-soft);
  font-style: italic;
  color: var(--color-text);
}

.callout p:last-child {
  margin-bottom: 0;
}

.callout p {
  padding-top: 0.5rem;
}
