/* Ensure the title block banner is not cropped */
#title-block-header .title-block-banner {
  object-fit: contain; /* Ensures the entire image fits without cropping */
  width: 100%;         /* Makes the banner span the full width of the container */
  height: auto;        /* Maintains the aspect ratio of the image */
  max-height: none;    /* Removes any height restrictions */
}

/* Optional: Adjust padding/margins around the banner if needed */
#title-block-header {
  margin-top: 0;
  margin-bottom: 0;
}

.title {
  color: black !important;
}