.Header {
  position: sticky;
  z-index: 101;
  top: 0;
  width: 100vw;
  padding: 24px 0;
  background-color: #ffffff;
  box-shadow: 0 20px 55px -9px rgba(0, 0, 0, 0.08);
}

.Header > .u-contentWidth {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

@media screen and (min-width: 1367px) {

.Header > .u-contentWidth {
      justify-content: flex-start;
  }
    }

.Header-logoLink {
  display: flex;
  flex-shrink: 0;
  max-width: 180px;
  line-height: 0;
}

.Header-logoLink img {
    width: 100%;
    max-width: 180px;
  }

@media screen and (max-width: 470px) {
  .Header-logoLink img {
    max-width: 210px;
  }
}

.Header-metaData {
  position: absolute;
  z-index: 1;
  top: 124px;
  right: 0;
  padding: 0 20px;
  border-radius: 0 0 0 20px;
  background: var(--clr-primary);
  color: white;
}

@media screen and (min-width: 1367px) {

.Header-metaData {
    position: relative;
    top: 0;
    padding: 0;
    background: transparent;
    color: var(--clr-grayDark);
}
  }

.Header-searchLink {
  display: flex;
  gap: 26px;
  align-items: center;
  height: 64px;
  font-size: 1.875rem;
  transition: 0.2s color;
}

@media screen and (max-width: 1366px) {

.Header-searchLink {
    color: #ffffff;
}
  }

@media screen and (min-width: 1367px) {
    .Header-searchLink:hover {
      color: var(--clr-primary);
    }
  }
