.wssi-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .wssi-header {
    flex-direction: row;
  }
}

.wssi-header__categories {
  display: inline-block;
  margin-bottom: var(--size-6);
}

.wssi-header__heading {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--size-6);
}
@media (min-width: 640px) {
  .wssi-header__heading {
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
  }
}
@media (min-width: 1024px) {
  .wssi-header__heading {
    flex-direction: column;
  }
}

.wssi-header__title-wrapper {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-bottom: var(--size-5);
}
@media (min-width: 640px) {
  .wssi-header__title-wrapper {
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .wssi-header__title-wrapper {
    margin-bottom: var(--size-3);
    text-align: right;
  }
}

.wssi-header__season-title {
  font-size: var(--scale-0);
  margin-bottom: var(--size-2);
  font-weight: var(--weight-light);
}

.wssi-header__title {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: baseline;
  line-height: 1;
  margin-bottom: 0;
  white-space: nowrap;
  margin-right: var(--size-4);
}
@media (min-width: 640px) {
  .wssi-header__title {
    flex-direction: row;
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  .wssi-header__title {
    margin-bottom: var(--size-4);
  }
}

.wssi-header__actions {
  display: flex;
  flex-direction: row-reverse;
  justify-content: start;
  flex-wrap: nowrap;
  overflow: auto;

  /* Hide scrollbar for Firefox */
  scrollbar-width: thin;
  scrollbar-color: var(--color-text) transparent;
}
@media (min-width: 640px) {
  .wssi-header__actions {
    flex-direction: row;
  }
}

.wssi-header__actions .navlink {
  margin-top: 19px;
  margin-right: 16px;
}

.wssi-header__actions::-webkit-scrollbar {
  width: var(--size-2);
  height: var(--size-2);
}
.wssi-header__actions::-webkit-scrollbar-track {
  background: transparent;
}
.wssi-header__actions::-webkit-scrollbar-thumb {
  background-color: var(--color-text);
  opacity: 0.7;
  border-radius: 20px;
  border: transparent;
}
@media (min-width: 480px) {
  .wssi-header__actions {
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .wssi-header__actions {
    justify-content: end;
  }
}
