Horizon 테마에서 중간 크기 뷰포트에서 헤더가 깨집니다

저도 이 문제를 재현할 수 있습니다. 문제는 접이식 스마트폰/소형 태블릿 뷰포트 크기 @media (min-width 640px) (max-width: 767px)에서 헤더 안의 contents 클래스가 grid로 표시되는 것 같습니다:

해당 너비 범위에서 properties를 contents로 변경하면 패치할 수 있습니다:

@media (min-width: 640px) and (max-width: 767.98px) {
  .d-header>.wrap .contents {
    display: contents!important;
  }
}