.widget-categories,
.widget-taglist {
  display: flex;
  flex-direction: column;
}

.wrapped {
  max-height: 50vh;
  position: relative;
}

.wrapped::before {
  content: "- rozwiń -";
  display: block;
  font-style: italic;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.wrapped button {
  background-color: #fff;
  border: 1px solid gray;
  cursor: pointer;
  display: block;
  flex: 0 0 2rem;
  font-weight: bold;
  height: 2rem;
  margin-top: 0.5rem;
  width: 100%;
}

.expand-wrapped {
  max-height: max-content;
}

.expand-wrapped::before {
  content: "";
}

.wrapped .widget__content {
  overflow: hidden;
}

.expand-wrapped .widget__content {
  box-shadow: none;
}

@media screen and (min-width: 620px) {
  .wrapped {
    max-height: max-content;
  }

  .wrapped::before {
    content: "- przewiń -";
  }

  .expand-wrapped {
    max-height: max-content;
  }

  .wrapped .widget__content {
    overflow: scroll;
  }
}
