:root {
  --announcement-offset: 48px;
}

.site-announcement-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: linear-gradient(90deg, #ff7a18, #af002d 70%, #3a0ca3);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 14px;
}

body {
  padding-top: var(--announcement-offset);
}

.header.header-fixed,
.header.header-fixed-on-mobile {
  top: var(--announcement-offset) !important;
}

.mobile .header-fixed-on-mobile .header-inner {
  top: var(--announcement-offset) !important;
}

.site-announcement-banner a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin: 0 4px;
}

.site-announcement-banner a:hover,
.site-announcement-banner a:focus {
  opacity: 0.85;
}

@media (max-width: 768px) {
  :root {
    --announcement-offset: 44px;
  }

  .site-announcement-banner {
    font-size: 12px;
    padding: 8px 12px;
  }

  .hero-5.window-height {
    min-height: calc(100vh + 100px) !important;
    height: auto !important;
  }

  .hero-5.window-height .media-column {
    height: calc(100vh + 100px) !important;
    min-height: calc(100vh + 100px) !important;
  }
}
