:root {
  --ignis-shell-navy: #041925;
  --ignis-shell-navy-soft: #0a3a55;
  --ignis-shell-orange: #ef5a35;
  --ignis-shell-line: rgba(255, 255, 255, .18);
}

.brand.document-logo,
.document-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 5px 0;
  background: transparent;
  text-decoration: none;
}

.document-logo img {
  display: block;
  width: clamp(190px, 22vw, 290px);
  height: auto;
  max-height: 66px;
  object-fit: contain;
  object-position: left center;
}

.document-header {
  position: relative;
  z-index: 30;
  padding: 0;
  color: #fff;
  background: rgba(4, 25, 37, .98);
  box-shadow: 0 10px 30px rgba(4, 25, 37, .18);
}

.document-header-inner {
  display: flex;
  width: min(1220px, calc(100% - 40px));
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: auto;
}

.document-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.document-header-actions a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--ignis-shell-line);
  border-radius: 10px;
  color: #fff;
  font-weight: 750;
  text-decoration: none;
}

.document-header-actions a:hover,
.document-header-actions a:focus-visible {
  border-color: var(--ignis-shell-orange);
  background: rgba(239, 90, 53, .12);
}

.document-page-hero {
  padding: 50px max(24px, 5vw) 42px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(239, 90, 53, .26), transparent 28%),
    linear-gradient(135deg, var(--ignis-shell-navy), var(--ignis-shell-navy-soft));
}

.document-page-hero > * {
  width: min(1220px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.document-page-hero h1 {
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.document-page-hero .meta {
  color: rgba(255, 255, 255, .72);
}

@media (max-width: 720px) {
  .document-header-inner {
    width: min(100% - 28px, 1220px);
    min-height: 76px;
  }

  .document-logo img {
    width: 180px;
    max-height: 55px;
  }

  .document-header-actions .document-secondary-action {
    display: none;
  }
}

@media print {
  .document-header {
    display: none !important;
  }
}
