/* Keep banner text readable on any image */
.quarto-title-block .quarto-title .title,
.quarto-title-block .quarto-title .subtitle {
  text-shadow: 0 2px 6px rgba(0,0,0,.35);
  color: white;
}

/* Tighter spacing so it doesn't feel like a huge header */
.quarto-title-block .quarto-title {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

/* Ensure the image crops nicely instead of stretching */
.quarto-title-block .quarto-title-banner {
  background-position: center center;
  background-size: cover;
}

/* Respect a fixed height if provided */
.quarto-title-block .quarto-title-banner {
  min-height: var(--title-block-banner-height, 260px);
}

/* Dark-mode tweak: slightly stronger overlay is often nicer */
:root[data-bs-theme="dark"] .quarto-title-block .quarto-title {
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}


