/* Hide the existing portal banner */
html[data-vp-page-template="portal"] [data-vp-id="portal-banner"] {
   display: none !important;
}

/* Create a new banner with text */
html[data-vp-page-template="portal"] .portal::before {
   content: "Checkit Help Center";
   display: block;
   max-width: 1068px;
   margin: 0 auto;
   padding: 2rem 0px;
   box-sizing: border-box;
   text-align: left;
   font-size: 2.5rem;
   font-weight: bold;
   background-color: #ffffff;
   color: #333;
}

/* Responsive adjustments */
@media (max-width: 1068px) {
   html[data-vp-page-template="portal"] .portal::before {
      padding: 1rem 10px;
      font-size: 2rem;
   }
}

/* enlarge home image tiles */
.tile.tile--spaces img {
  width: auto;
  height: auto;
  max-width: 200px;
  max-height: 200px;
  display: block;
  margin: 0 auto;
}