/* Fixes wenn Banner aktiuv */

  .gh-banner {
     display: block;
     height: 90px;
     padding: 0 var(--gap);
     line-height: 1.3;
     background-color: #eeeff1; /* Banner background color */
     background-repeat: no-repeat;
     background-position: center;
  }
 
  .gh-banner-inner {
     display: flex;
     flex-direction: row;
     gap: 0.5em;
     align-items: center;
     justify-content: center;
     max-width: 1200px;
     height: 100%;
     margin: 0 auto;
     color: #fff;
     font-size: 120%;
     text-shadow: #404 5px 0 10px;
  }
						  
  .gh-banner-right {
     flex-shrink: 0;
  }
													  
  .gh-banner-headline {
     font-size: 138%;
     font-weight: 700;
     color: #fff;
     text-shadow: #304 6px 0 10px;
  }
													  
  .gh-banner-button {
     padding: 0.35em 0.65em;
     font-weight: 700;
     color: #fff;
     text-align: center;
     background-color: #000;
     border-radius: 3px;
     transition: background-color 0.3s;
  }
 
  .gh-banner:hover .gh-banner-button {
    background-color: var(--ghost-accent-color);
  }
												  
@media (max-width: 500px) {
    .gh-banner {
       font-size: 1.4rem;
    }
													  
    .gh-banner-inner {
      flex-direction: column;
      justify-content: center;
    }
}
       
@media (max-width: 768px) {
   .gh-banner {
     position: relative;
     color: #fff;
   }

   .gh-banner::after {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      content: "";
      background: rgba(0 0 0 / 50%);
  }

  .gh-banner-inner {
     position: relative;
     z-index: 1;
  }
}

/* Override Headline theme defaults */
.gh-banner:hover {
   opacity: 1 !important;
}
 
.gh-head-menu::before {
   top: 170px;
}
 
.gh-head-menu::after {
  top: 226px;
}
