.site-crossnav {
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px max(20px, calc((100% - 1180px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: #101a3e;
  color: #eef3ff;
  font: 700 13px/1.35 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-crossnav__group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.site-crossnav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  color: inherit;
  text-decoration: none;
}

.site-crossnav a:hover {
  background: rgba(255, 255, 255, .12);
}

.site-crossnav a:focus-visible {
  outline: 3px solid #9eb5ff;
  outline-offset: 2px;
}

.site-crossnav__home {
  background: rgba(255, 255, 255, .10);
}

.site-crossnav__next {
  background: #3157d5;
}

.site-review-note {
  position: relative;
  z-index: 99;
  padding: 9px max(20px, calc((100% - 1180px) / 2));
  border-bottom: 1px solid #efd47f;
  background: #fff4cf;
  color: #70500c;
  font: 750 12px/1.45 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (max-width: 680px) {
  .site-crossnav {
    padding: 9px 12px;
  }

  .site-review-note {
    padding: 8px 12px;
  }

  .site-crossnav__label {
    display: none;
  }
}

@media print {
  .site-crossnav,
  .site-review-note {
    display: none;
  }
}
