header {
  padding: 2rem 0;
  max-width: var(--jpt-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.jpt-header-img-container {
  display: flex;
  align-items: center;
}

.jpt-header-img-container img {
  border-radius: 100%;
  width: 100%;
  height: 100%;
  border: 1px solid var(--jpt-colour-muted);
}

a.custom-logo-link {
  transition: opacity 175ms ease;
  border-radius: 100%;

  &:hover {
    background-size: 0;
    opacity: 0.7;
  }

  &:active {
    opacity: 0.5;
  }
}

.jpt-header-col {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.jpt-header-title,
.jpt-header-col > h1 {
  line-height: normal;
}

.jpt-header-menu {
  padding-top: 0.375rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

@media (min-width: 800px) {
  header {
    flex-direction: row;
    gap: 2rem;
    padding: 2rem;
  }
}
