/* V16d — minimal desktop clarification requested by the client. */
@media (min-width: 861px) {
  /* The centre notice looked like a third control and is therefore removed. */
  body:not([data-world]) .hero-cues-label {
    display: none !important;
  }

  /* Keep the established header and only enlarge its existing choice pills. */
  body:not([data-world]) nav.top .nav-half-cta {
    min-height: 38px;
    gap: 10px;
    margin-inline: 16px;
    padding: 10px 17px;
    border-width: 1.5px;
    border-style: solid;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--ink);
    transition: background-color .24s ease, border-color .24s ease, color .24s ease, transform .24s ease;
  }

  body:not([data-world]) nav.top .nav-half[data-side="a"] .nav-half-cta {
    margin-left: 30px;
    margin-right: 0;
    border-color: var(--a-accent);
    background: color-mix(in srgb, var(--a-accent) 4%, #fff);
  }

  body:not([data-world]) nav.top .nav-half[data-side="b"] .nav-half-cta {
    margin-left: 0;
    margin-right: 30px;
    border-color: var(--b-cta);
    background: color-mix(in srgb, var(--b-cta) 4%, #fff);
  }

  body:not([data-world]) nav.top .nav-half-cta svg {
    width: 14px;
    height: 14px;
    color: var(--half-fill);
    transition: color .24s ease, transform .3s cubic-bezier(.16,.84,.32,1);
  }

  body:not([data-world]) nav.top .nav-half:hover .nav-half-cta,
  body:not([data-world]) nav.top .nav-half:focus-visible .nav-half-cta {
    border-color: var(--half-fill);
    background: var(--half-fill);
    color: #fff;
  }

  body:not([data-world]) nav.top .nav-half:hover .nav-half-cta svg,
  body:not([data-world]) nav.top .nav-half:focus-visible .nav-half-cta svg {
    color: currentColor;
  }
}
