@charset "utf-8";
/* CSS Document */
@import url('https://googleapis.com');

.arizonia-regular {
  font-family: "Arizonia", cursive;
  font-weight: 400;
  font-style: normal;
}

.hover-blue:hover {
    color: #0d6efd; /* This is Bootstrap's default primary blue */
}

/* Render published post text like the Quill editor: paragraphs have no margin,
   so a double-return (an empty paragraph) shows as exactly one blank line — not double. */
.post-description p {
  margin: 0;
}
/* Make the blank line from a double-return ~30% shorter (empty paragraphs only). */
.post-description p:has(> br:only-child) {
  line-height: 1.05;
}

/* Home page hero with a centered background graphic */
.home-hero {
  min-height: 60vh;
  background-image: url('/images/bg-brain.gif');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
