.grid-col-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow-x: hidden;
  max-width: calc(100% + 2px);
  width: calc(100% + 2px);
}
@media screen and (min-width: 967px) {
  .grid-col-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}
.grid-col-wrapper .item-card {
  padding: calc(var(--page-space) * 2) var(--page-space);
  border-bottom: 1px solid var(--black);
  border-right: 1px solid var(--black);
}
.grid-col-wrapper .item-card .item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  text-align: center;
}
.grid-col-wrapper .item-card .item-inner .author {
  font-weight: 300;
}
@media screen and (max-width: 967px) {
  .grid-col-wrapper .item-card .item-inner .author {
    font-size: calc(var(--body-text) - 2px);
  }
}
.grid-col-wrapper .item-card .item-inner .title {
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 967px) {
  .grid-col-wrapper .item-card .item-inner .title {
    font-size: calc(var(--body-text) - 2px);
  }
}
.grid-col-wrapper .item-card .item-inner picture {
  width: 55%;
  display: flex;
}
.grid-col-wrapper .item-card .item-inner picture img {
  width: 100%;
  margin: auto;
}
.grid-col-wrapper .item-card .item-inner picture .cover {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  margin-bottom: var(--page-space);
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}
.grid-col-wrapper .item-card:hover {
  background-color: var(--secondary);
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}
.grid-col-wrapper .item-card:hover img {
  transform: scale(1.1);
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}

.grid-row-wrapper {
  display: grid;
}
.grid-row-wrapper .item-inner {
  margin: auto;
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 967px) {
  .grid-row-wrapper .item-inner {
    gap: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 70%;
  }
}
.grid-row-wrapper .item-inner .title {
  margin: 1rem 0;
  font-size: var(--medium-text);
}
.grid-row-wrapper .item-card {
  padding: var(--page-space);
  padding: calc(var(--page-space) * 2) var(--page-space);
  border-bottom: 1px solid var(--black);
}
.grid-row-wrapper .item-card:last-child {
  border-bottom: 0;
}
.grid-row-wrapper .item-card .item-info-wrap .title {
  width: 70%;
}
@media screen and (max-width: 967px) {
  .grid-row-wrapper .item-card .item-info-wrap .title {
    width: 100%;
  }
}
.grid-row-wrapper .item-card .cover-mask {
  overflow: hidden;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 967px) {
  .grid-row-wrapper .item-card .cover-mask {
    margin-bottom: var(--page-space);
  }
}
.grid-row-wrapper .item-card .cover-mask .cover {
  transition: 0.3s all ease-in-out;
  cursor: pointer;
  height: 25vh;
}
@media screen and (min-width: 2100px) {
  .grid-row-wrapper .item-card .cover-mask .cover {
    height: 30vh;
  }
}
.grid-row-wrapper .item-card .cover-mask img {
  transition: 0.3s all ease-in-out;
  cursor: pointer;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}
.grid-row-wrapper .item-card:hover {
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}
.grid-row-wrapper .item-card:hover img {
  transform: scale(1.1);
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}
.grid-row-wrapper .item-card:hover .title {
  color: var(--primary);
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}
.grid-row-wrapper .label-wrapper,
.grid-row-wrapper .tags-wrapper {
  display: flex;
}
.grid-row-wrapper .button-primary {
  margin-top: calc(var(--page-space) * 1.5);
}

strong {
  font-weight: 600;
}

.link {
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}
.link:hover {
  opacity: 0.5;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}

.icon-text {
  align-items: center;
  display: flex;
}
.icon-text svg,
.icon-text img,
.icon-text .plusminus {
  margin-left: 0.5rem;
}

.button-primary {
  background-color: var(--black);
  color: var(--white);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 250px;
  border: 1px solid var(--black);
  padding: 8px 15px;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}
.button-primary.active, .button-primary:hover {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}
.button-primary.outline {
  background-color: transparent;
  border: 1px solid var(--black);
  color: var(--black);
}
.button-primary.outline.active, .button-primary.outline:hover {
  background-color: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}

.button-text {
  color: var(--primary);
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}
.button-text:hover {
  color: var(--black);
}
.button-text:hover img,
.button-text:hover svg {
  transition: 0.3s all ease-in-out;
  cursor: pointer;
  transform: translateX(10px);
}
.button-text:hover svg {
  fill: var(--black);
}
.button-text svg,
.button-text img {
  fill: var(--primary);
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}

.label,
.tag {
  border-radius: 250px;
  border: 1px solid var(--black);
  padding: 8px 15px;
  margin-left: var(--min-space);
  font-weight: 400;
}
@media screen and (min-width: 967px) {
  .label,
.tag {
    margin-left: var(--min-space);
    margin-right: initial;
  }
}
.label.active, .label:hover,
.tag.active,
.tag:hover {
  color: var(--primary);
  border: 1px solid var(--primary);
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}

.label-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tag {
  padding: 5px 10px;
  margin-left: 0;
  margin-right: var(--min-space);
}

.page-subtitle-mobile {
  text-align: center;
  width: 45%;
  margin: 0 auto;
}
@media screen and (max-width: 967px) {
  .page-subtitle-mobile {
    font-size: var(--xl-big-text);
    width: 60%;
  }
}

.page-heading-wrapper {
  padding: calc(var(--page-space) * 3) var(--page-space);
  padding-bottom: var(--page-space);
}
@media screen and (min-width: 967px) {
  .page-heading-wrapper {
    width: 45%;
  }
}

.headline-breadcrumbs-wrap .headline-section-row {
  border-top: 0;
}
.headline-breadcrumbs-wrap .breadcrumbs {
  display: flex;
  align-items: center;
}
.headline-breadcrumbs-wrap .breadcrumbs.is-single {
  flex-direction: row-reverse;
}
.headline-breadcrumbs-wrap .breadcrumbs.is-single .icon {
  transform: rotate(180deg);
  margin-left: 0;
}
.headline-breadcrumbs-wrap .breadcrumbs svg {
  margin: 0 0.5rem;
}
@media screen and (max-width: 967px) {
  .headline-breadcrumbs-wrap .breadcrumbs svg {
    margin-left: 0;
    transform: rotate(180deg);
  }
}
.headline-breadcrumbs-wrap .breadcrumbs .active {
  color: var(--black);
}
@media screen and (min-width: 967px) {
  .headline-breadcrumbs-wrap .breadcrumbs .active {
    color: var(--primary);
  }
}

.text-title {
  font-size: var(--xl-big-text);
  font-weight: 400;
}

.text-description {
  font-weight: 300;
  line-height: 150%;
  padding: calc(var(--page-space) * 2) 0;
}

.headline-section-row {
  padding: calc(var(--page-space) / 2) var(--page-space);
  align-items: center;
  border-bottom: 1px solid var(--black);
  display: flex;
  justify-content: space-between;
  max-height: 80px;
  min-height: 65px;
  position: relative;
}
@media screen and (max-width: 967px) {
  .headline-section-row {
    padding: var(--page-space);
  }
}
@media screen and (max-width: 967px) {
  .headline-section-row {
    height: auto;
    max-height: auto;
    min-height: auto;
    padding: 15px var(--page-space);
  }
}
@media screen and (min-width: 2100px) {
  .headline-section-row {
    max-height: 90px;
    min-height: 90px;
  }
}
.headline-section-row .title {
  font-weight: 400;
  font-size: var(--medium-text);
  /* For Mozilla Firefox */
}
@media screen and (min-width: 967px) {
  .headline-section-row .title {
    width: 50%;
  }
}
.headline-section-row .title::-moz-selection {
  color: none;
  background: none;
}
.headline-section-row .title::selection {
  color: none;
  background: none;
}
.headline-section-row .title::-moz-selection {
  color: none;
  background: none;
}
.headline-section-row .tags-wrapper {
  display: flex;
}
.headline-section-row .col-left {
  width: 40%;
}
.headline-section-row .col-right {
  width: 60%;
}

.cover-book-wrap * {
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}
.cover-book-wrap:hover img {
  transform: scale(1.1);
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}

.headline-section-row {
  border-top: 1px solid var(--black);
}

.week-news {
  overflow-x: hidden;
}
.week-news .headline-section-row .title {
  font-size: var(--medium-text);
}

.pagination-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--page-space) * 1.5);
}
@media screen and (min-width: 967px) {
  .pagination-nav {
    padding: calc(var(--page-space) * 2);
  }
}
.pagination-nav .number {
  margin: 0 0.5rem;
}
.pagination-nav .number.active, .pagination-nav .number:hover {
  color: var(--primary);
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}
.pagination-nav svg {
  margin-left: 0.5rem;
}
.filter-toggle .filter-nav-wrap {
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}
.filter-toggle.active .filter-nav-wrap {
  color: var(--primary);
}
.filter-toggle.active .plusminus:before, .filter-toggle.active .plusminus:after {
  background-color: var(--primary);
}

.filter-title {
  display: flex;
  align-items: center;
}

.filter-panel {
  background-color: var(--white);
  border-top: 1px solid var(--black);
  border-right: 1px solid var(--black);
  left: calc(var(--page-space) - var(--page-space));
  max-height: calc(100vh - 70px);
  min-height: calc(100vh - 70px);
  opacity: 0;
  overflow-y: scroll;
  padding-bottom: var(--page-space);
  position: absolute;
  top: 100%;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  z-index: 6;
  width: calc(85% + 1px);
}
@media screen and (min-width: 768px) {
  .filter-panel {
    width: calc(50% + 1px);
    z-index: 2;
  }
}
@media screen and (min-width: 1200px) {
  .filter-panel {
    width: calc(25% + 1px);
  }
}
.filter-panel.show {
  opacity: 1;
  transition: all 0.3s ease-in-out;
  pointer-events: all;
}

.tag-col {
  padding: var(--page-space);
  display: inline-flex;
  flex-direction: column;
}
.tag-col .tag-title {
  font-size: var(--medium-text);
  margin-bottom: 1rem;
}

.tag-list .tag {
  font-weight: 300;
  display: inline-block;
  margin-bottom: var(--min-space);
  border: 1px solid var(--black);
}
.tag-list .tag:hover, .tag-list .tag.active {
  background-color: var(--black);
  color: var(--white);
}

.plusminus {
  position: relative;
  width: 15px;
  height: 15px;
  cursor: pointer;
}
.plusminus.active:before {
  transform: translatey(-50%) rotate(-90deg);
  opacity: 0;
}
.plusminus.active:after {
  transform: translatey(-50%) rotate(0);
}
.plusminus:before, .plusminus:after {
  content: "";
  display: block;
  background-color: var(--black);
  position: absolute;
  top: 50%;
  left: 0;
  transition: 0.35s;
  width: 100%;
  height: 1px;
}
.plusminus:before {
  transform: translatey(-50%);
}
.plusminus:after {
  transform: translatey(-50%) rotate(90deg);
}

.accordion-modal {
  cursor: default;
  outline: none;
  position: relative;
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.accordion-modal .accordion-navbar {
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}
.accordion-modal .panel {
  transition: 0.3s all ease-in-out;
  cursor: pointer;
  left: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  text-align: left;
  text-transform: none;
  width: 100%;
  z-index: 4;
}

.category-toggle {
  background-color: white;
  max-width: 250px;
  width: 100%;
}
@media screen and (max-width: 967px) {
  .category-toggle {
    margin: 0 auto;
    margin-top: calc(var(--page-space) * 3);
    margin-bottom: calc(var(--page-space) * 3);
  }
}
@media screen and (min-width: 2100px) {
  .category-toggle {
    max-width: 300px;
  }
}
.category-toggle .category-wrap {
  display: grid;
  gap: 0.85rem;
  margin-top: -40px;
  border-radius: 20px;
  z-index: -1;
  border: 1px solid var(--white);
  visibility: hidden;
  color: var(--black);
}
@media screen and (min-width: 967px) {
  .category-toggle .category-wrap {
    margin-top: 1.25rem;
    visibility: visible;
  }
}
.category-toggle .category-wrap .category-tag:first-child {
  padding-top: 40px;
}
@media screen and (min-width: 967px) {
  .category-toggle .category-wrap .category-tag:first-child {
    padding-top: 10px;
  }
}
.category-toggle .category-wrap .category-tag:hover, .category-toggle .category-wrap .category-tag.active {
  transition: 0.3s all ease-in-out;
  cursor: pointer;
  color: var(--primary);
}
.category-toggle .accordion-navbar {
  border: 1px solid var(--black);
  border-radius: 300px;
  font-size: var(--body-text);
  padding: 10px 15px;
  font-weight: 400;
  position: relative;
  background-color: var(--white);
  height: 40px;
}
.category-toggle .accordion-navbar svg {
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
}
@media screen and (min-width: 967px) {
  .category-toggle .accordion-navbar svg {
    width: 21px;
  }
}
.category-toggle .panel {
  transition: 0.3s all ease-in-out;
  cursor: pointer;
  left: 0;
  max-height: 0;
  overflow: hidden;
  text-transform: none;
  width: 100%;
  z-index: 4;
  padding: 15px;
}
@media screen and (max-width: 967px) {
  .category-toggle .panel {
    opacity: 0;
  }
}
@media screen and (min-width: 967px) {
  .category-toggle .panel {
    overflow: visible;
    max-height: 100%;
    padding: 0;
    margin: 0;
    margin-top: 1.25rem;
  }
}
.category-toggle.opened .panel {
  visibility: visible;
  opacity: 1;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}
.category-toggle.opened svg {
  -ms-transform: rotate(-180deg) !important;
  transition: 0.5s ease-in-out !important;
  transform: rotate(-180deg) !important;
}
.category-toggle.opened .category-tag.active {
  color: var(--primary);
}
.category-toggle.opened .category-wrap {
  visibility: visible;
  border: 1px solid var(--black);
  color: var(--black);
}

.dropdown {
  transition: 0.3s all ease-in-out;
  cursor: pointer;
  position: relative;
}
.dropdown .accordion-navbar {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  z-index: 2;
}
.dropdown svg {
  transition: 0.5s ease-in-out;
}
.dropdown .panel {
  transition: 0.3s all ease-in-out;
  cursor: pointer;
  background-color: var(--white);
  border-radius: 20px;
  border: 1px solid var(--black);
  display: grid;
  gap: 0.85rem;
  max-width: 250px;
  opacity: 0;
  padding: 15px;
  position: absolute;
  left: initial;
  right: 0;
  top: 100%;
  visibility: hidden;
  width: 100%;
  z-index: 1;
}
@media screen and (min-width: 967px) {
  .dropdown .panel {
    width: 40%;
    margin-left: auto;
  }
}
.dropdown.opened .panel {
  visibility: visible;
  opacity: 1;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}
.dropdown.opened svg {
  transform: rotate(180deg);
  transition: 0.5s ease-in-out;
}
.dropdown .item-label.active, .dropdown .item-label:hover {
  color: var(--primary);
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}

.book-series .headline-section-row .title {
  width: 100%;
  font-size: var(--medium-text);
}
.book-series .grid-row-wrapper {
  display: grid;
}
@media screen and (min-width: 967px) {
  .book-series .grid-row-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
.book-series .grid-row-wrapper .book-row {
  transition: 0.3s all ease-in-out;
  cursor: pointer;
  align-items: center;
  border-bottom: 1px solid var(--black);
  display: flex;
  justify-content: space-between;
  overflow: visible;
  padding: calc(var(--page-space) / 2) var(--page-space);
  position: relative;
}
.book-series .grid-row-wrapper .book-row:nth-child(even) {
  border-right: none;
}
@media screen and (min-width: 967px) {
  .book-series .grid-row-wrapper .book-row {
    border-right: 1px solid var(--black);
  }
}
.book-series .grid-row-wrapper .book-row:hover {
  background-color: var(--secondary);
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}
.book-series .grid-row-wrapper .book-row:hover .cover-mask {
  visibility: visible;
}
.book-series .grid-row-wrapper .book-row .item-info-wrap {
  width: 90%;
}
.book-series .grid-row-wrapper .cover-mask {
  position: absolute;
  right: 7.5%;
  visibility: hidden;
  width: 200px;
  z-index: 5;
}
@media screen and (max-width: 967px) {
  .book-series .grid-row-wrapper .cover-mask {
    width: 175px;
  }
}
.book-series .button-primary {
  margin: calc(var(--page-space) * 1.5) auto;
}

@media screen and (max-width: 967px) {
  main {
    overflow-x: initial;
  }
}

.headline-breadcrumbs-wrap .headline-section-row {
  border: 0;
}

.week-news {
  margin-top: -1px;
}
@media screen and (max-width: 967px) {
  .week-news {
    border-bottom: 0;
  }
}

.headline-filter {
  background-color: var(--white);
  border-top: 1px solid var(--black);
  height: auto;
  max-height: auto;
  min-height: auto;
  padding: 10px var(--page-space);
  position: -webkit-sticky;
  position: sticky;
  top: 69px;
  z-index: 5;
}
@media screen and (max-width: 967px) {
  .headline-filter {
    border-bottom: 1px solid var(--black);
  }
}
@media screen and (min-width: 2100px) {
  .headline-filter {
    padding: var(--page-space);
    top: 88px;
  }
}
