.inner-page {
  background: var(--background);
  color: var(--navy);
}

.inner-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(420px, 52vh, 560px);
  background: var(--navy);
  overflow: hidden;
  color: var(--white);
}

.inner-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, #08101c 0%, #142033 42%, #1c2a3d 100%);
}

.inner-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.inner-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(8, 14, 26, 0.92) 0%,
      rgba(8, 14, 26, 0.78) 28%,
      rgba(8, 14, 26, 0.38) 58%,
      rgba(8, 14, 26, 0.16) 78%,
      rgba(8, 14, 26, 0.08) 100%
    );
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(420px, 52vh, 560px);
  padding-block: calc(var(--header-offset) + 36px) 52px;
}

.inner-hero .eyebrow {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.inner-hero h1 {
  margin-top: 12px;
  max-width: 18ch;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.08;
  font-weight: 600;
  color: var(--white);
}

.inner-hero-lead {
  margin-top: 18px;
  max-width: 40rem;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.inner-hero-meta {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.crumbs {
  margin: 0;
}

.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.crumbs li {
  display: flex;
  align-items: center;
}

.crumbs a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.crumbs a:hover {
  color: var(--white);
  text-decoration: underline;
}

.crumbs [aria-current="page"] {
  color: var(--white);
  font-weight: 500;
}

.crumbs li:not(:last-child)::after {
  content: "/";
  margin-inline-start: 8px;
  color: rgba(255, 255, 255, 0.38);
}

.inner-shell {
  max-width: 48rem;
  padding-block: 56px 88px;
}

.inner-body {
  display: grid;
  gap: 16px;
  font-size: 16px;
  line-height: 1.7;
}

.inner-updated {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted-foreground);
}

.inner-related {
  margin-top: 40px;
}

.inner-related ul,
.sitemap-list,
.search-page-results {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.inner-related a,
.sitemap-list a,
.search-page-results a {
  font-weight: 600;
}

.inner-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.search-page-form {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  margin-block: 0 24px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.lang a {
  color: inherit;
  text-decoration: none;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .inner-hero,
  .inner-hero-content {
    min-height: 380px;
  }

  .inner-hero h1 {
    max-width: none;
  }
}

html[dir="rtl"] .inner-hero-media img {
  object-position: center left;
}
