.page {
  text-align: center;
  display: flex;
  flex-grow: 1;
  flex-flow: column;
  min-height: 0;
  overflow-y: auto;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
}

.section-1 {
  display: flex;
  flex-flow: column;
  gap: 50px;
  padding: 50px 0;
}

.title {
  font-family: "NeuePlak", serif;
  font-weight: 400;
  font-size: 60px;
  line-height: 60px;
  letter-spacing: 2px;
}

.description {
  font-size: 16px;
  line-height: 30px;
  font-family: "MyHappy70sBd", serif;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 15px;
}

.neue-bucher {
  background: var(--zz-green);
  padding: 44px 0;
  display: flex;
  flex-flow: column;
  gap: 40px;
}

.neue-bucher-title {
  font-family: "ITCFranklinGothicLTPro-Dm", serif;
  color: white;
  letter-spacing: 2px;
  font-size: 60px;
}

.category-wrapper {
  padding: 60px 0 0;
}

.category-list {
  list-style: none;
  display: inline-flex;
  flex-flow: column;
  gap: 20px;
  margin: 0 auto;
}

.category {
  color: var(--zz-red);
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
}

.category-label {
  color: inherit;
  font-size: 30px;
  border: 0;
  background: white;
  cursor: pointer;
}

.category-sublist {
  list-style: none;
  margin-top: 52px;
  display: none;
  font-weight: 700;
  line-height: 36px;
}

.category-sublist.show {
  display: block;
}

.category-sublist-item {
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--zz-red);
  font-family: "ITCFranklinGothicLTPro-Bk", serif;
  cursor: pointer;
}

.bibliothek-search-wrapper {
  margin-top: 60px;
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
}

.bibliothek-search-wrapper-input {
  height: 60px;
  padding: 23px 70px 22px 50px;
  border-radius: 30px;
  border: solid 1px rgba(255, 0, 0, 0);
  background-color: #e6e6e6;
  width: 80%;
  text-align: center;
  font-size: 21px;
  font-family: "ITCFranklinGothicLTPro-Bk", serif;
}

.bibliothek-search-wrapper-button {
  background: var(--zz-red);
  width: 45px;
  height: 30px;
  border-radius: 30px;
  border: 0;
  cursor: pointer;
  margin-left: 15px;
  padding: 5px;
}

@media (min-width: 800px) {
  .description {
    padding: 0;
  }

  .description {
    font-size: 20px;
  }

  .category-list {
    flex-flow: row;
    gap: 100px;
  }

  .bibliothek-search-wrapper-input {
    max-width: 600px;
  }
}
