.Header-inner {
  display: flex;
  flex-direction: column;
  gap: var(--spaces);
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
  padding-bottom: 25px;
}

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

.Header-inner {
    flex-direction: row;
    gap: 0;
}
  }

.Header-logo {
  width: 80%;
}

.Header-logo svg {
    width: 100%;
  }

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

.Header-logo {
    width: auto;
    width: initial;
}
  }

.Header-search {
  display: none;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

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

.Header-search {
    display: flex;
    width: 400px;
}
  }

.Header-searchInput-wrapper {
  position: relative;
  width: 100%;
}

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

.Header-searchInput-wrapper {
    width: 400px;
}
  }

.Header-searchInput {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid var(--clr-greyDark);
  border-radius: 90px;
  font-size: 1rem;
  line-height: 1.5rem;
  outline: 0;
  transition: border-color 250ms ease-in-out;
}

.Header-searchInput:focus {
    border-color: var(--clr-red);
  }

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

.Header-searchInput {
    padding: 20px;
    font-size: 1.125rem;
}
  }

.Header-searchSubmit {
  position: absolute;
  top: 50%;
  right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--clr-red);
  outline: 2px solid transparent;
  outline-offset: 2px;
  transform: translateY(-50%);
  transition: outline-color 250ms ease-in-out;
  aspect-ratio: 1 / 1;
}

.Header-searchSubmit svg {
    width: 20px;
    fill: var(--clr-white);
  }

.Header-searchSubmit:focus {
    outline-color: var(--clr-red);
  }

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

.Header-searchSubmit {
    right: 10px;
    width: 46px;
    height: 46px;
}

    .Header-searchSubmit svg {
      width: 26px;
    }
  }
