@charset "UTF-8";
.news-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.news-grid .grid-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.news-grid nav {
  max-width: 100%;
}
.news-grid nav ul {
  display: block;
  margin-top: 42px;
  white-space: nowrap;
  overflow: auto;
  max-width: 100%;
  padding-left: 24px;
  -webkit-mask-image: -webkit-linear-gradient(to right, transparent 0%, black 24px, black calc(100% - 24px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 24px, black calc(100% - 24px), transparent 100%);
  /* IE and Edge */
  -ms-overflow-style: none;
  /* Firefox */
  scrollbar-width: none;
}
.news-grid nav ul::-webkit-scrollbar {
  /* Hide scrollbar for Chrome, Safari and Opera */
  display: none;
}
.news-grid nav ul::after {
  content: "";
  width: 24px;
  display: inline-block;
}
.news-grid nav ul li {
  display: inline-block;
  margin: 1px 4px;
}
.news-grid nav ul li [data-selector]::before {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 4px;
  background-color: currentColor;
  vertical-align: middle;
  margin-top: -2px;
}
.news-grid nav ul li [data-selector=".episode"]::before {
  content: "";
  -webkit-mask-image: url(/wp-content/themes/fsm/partials/news/./img/episode.svg);
  mask-image: url(/wp-content/themes/fsm/partials/news/./img/episode.svg);
}
.news-grid nav ul li [data-selector=".post"]::before {
  content: "";
  -webkit-mask-image: url(/wp-content/themes/fsm/partials/news/./img/post.svg);
  mask-image: url(/wp-content/themes/fsm/partials/news/./img/post.svg);
}
.news-grid nav ul li [data-selector=".fachartikel"]::before {
  content: "";
  -webkit-mask-image: url(/wp-content/themes/fsm/partials/news/./img/fachartikel.svg);
  mask-image: url(/wp-content/themes/fsm/partials/news/./img/fachartikel.svg);
}
.news-grid nav ul li [data-selector=".press"]::before {
  content: "";
  -webkit-mask-image: url(/wp-content/themes/fsm/partials/news/./img/press.svg);
  mask-image: url(/wp-content/themes/fsm/partials/news/./img/press.svg);
}
.news-grid .search-box {
  margin-top: 32px;
  text-align: center;
}
.news-grid .search-box .advanced {
  font-weight: normal;
  color: var(--gray3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: color 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  .news-grid .search-box .advanced:hover {
    color: var(--gray2);
  }
}
.news-grid .search-box .advanced::before, .news-grid .search-box .advanced::after {
  content: "";
  display: block;
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}
.news-grid .search-box .advanced::before {
  width: 17px;
  height: 17px;
  background-color: currentColor;
  -webkit-mask-image: url("/wp-content/themes/fsm/partials/news/../search-form/img/search.svg");
  mask-image: url("/wp-content/themes/fsm/partials/news/../search-form/img/search.svg");
}
.news-grid .search-box .advanced::after {
  width: 9px;
  height: 9px;
  background-color: currentColor;
  -webkit-mask-image: url("/wp-content/themes/fsm/partials/news/../search-form/img/arrow.svg");
  mask-image: url("/wp-content/themes/fsm/partials/news/../search-form/img/arrow.svg");
  transform: scaleY(1);
  transition: transform 0.4s;
}
.news-grid .search-box .advanced.is-open::after {
  transform: scaleY(-1);
}
.news-grid .search-box #searchform {
  display: none;
}
.news-grid .search-box .advanced.is-open + #searchform, .news-grid .search-box #searchform:target {
  display: block;
}
.news-grid .contact-person {
  display: flex;
  padding: 0 var(--margin);
  gap: 80px;
  transition: transform 0.3s;
  margin-top: 64px;
}
@media (max-width: 1279px) {
  .news-grid .contact-person {
    flex-direction: column;
  }
}
.news-grid .contact-person.hide {
  transform: scale(0);
}
.news-grid .contact-person .downloads {
  max-width: 450px;
}
.news-grid .grid {
  --c: 3;
  --n: 1;
  display: grid;
  will-change: transform;
  width: 100%;
  margin-top: 80px;
  grid-template-columns: repeat(var(--c), 1fr);
  grid-template-rows: repeat(calc((6 / var(--c)) * var(--n)), auto);
  grid-auto-rows: 0;
  grid-gap: 0 24px;
  overflow: hidden;
  position: relative;
}
.news-grid .grid[data-count="-1"] {
  grid-template-columns: 1fr;
  place-items: center;
}
.news-grid .grid[data-count="-1"]::before {
  content: "";
  width: 120px;
  height: 120px;
  background-image: url(/wp-content/themes/fsm/partials/news/./img/search.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 30px;
}
.news-grid .grid[data-count="-1"]::after {
  content: attr(data-noresult);
  color: var(--orange1);
  font-family: "Graublau Sans";
  font-style: normal;
  font-weight: 300;
  font-size: 38px;
  line-height: 120%;
  letter-spacing: -0.02em;
  font-feature-settings: "tnum" on, "onum" on;
}
@media (max-width: 767px) {
  .news-grid .grid[data-count="-1"]::after {
    font-family: "Graublau Sans";
    font-style: normal;
    font-weight: 300;
    font-size: 28px;
    line-height: 120%;
    letter-spacing: -0.02em;
  }
}
.news-grid .grid[data-count="1"] {
  grid-template-columns: 1fr;
}
.news-grid .grid[data-count="1"] .grid-cell figure {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 1023px) {
  .news-grid .grid[data-count="1"] .grid-cell figure {
    flex-direction: column;
    max-width: 450px;
    margin: auto;
  }
  .news-grid .grid[data-count="1"] .grid-cell figure > * {
    width: 100% !important;
  }
}
.news-grid .grid[data-count="1"] .grid-cell figure > * {
  width: 45%;
}
.news-grid .grid[data-count="1"] .grid-cell figure figcaption {
  width: 50%;
  margin-left: auto;
}
.news-grid .grid[data-count="1"] .grid-cell figure figcaption h3 {
  font-family: "Graublau Sans";
  font-style: normal;
  font-weight: 300;
  font-size: 38px;
  line-height: 120%;
  letter-spacing: -0.02em;
  font-feature-settings: "tnum" on, "onum" on;
  max-width: 530px;
}
@media (max-width: 767px) {
  .news-grid .grid[data-count="1"] .grid-cell figure figcaption h3 {
    font-family: "Graublau Sans";
    font-style: normal;
    font-weight: 300;
    font-size: 28px;
    line-height: 120%;
    letter-spacing: -0.02em;
  }
}
.news-grid .grid[data-count="1"] .grid-cell figure figcaption article {
  font-family: "Graublau Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  display: block;
  max-width: 500px;
}
.news-grid .grid[data-count="1"] .grid-cell figure figcaption article p {
  margin-bottom: 2em;
}
@media (max-width: 1279px) {
  .news-grid .grid {
    --c: 2;
  }
}
@media (max-width: 767px) {
  .news-grid .grid {
    --c: 1;
  }
}
.news-grid .grid > * {
  transition: opacity 0.3s;
}
.news-grid .grid.searching {
  pointer-events: none;
}
.news-grid .grid.searching > * {
  opacity: 0.2;
}
.news-grid .grid.searching::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  border: 10px solid var(--gray4);
  border-top-color: var(--gray2);
  border-radius: 50%;
  margin-left: -50px;
  margin-top: -50px;
  width: 100px;
  height: 100px;
  animation: spin 2s linear infinite;
  box-sizing: border-box;
  z-index: -1;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (hover: hover) and (pointer: fine) {
  .news-grid .grid:hover .grid-cell {
    transition: opacity 0.5s;
  }
  .news-grid .grid:hover .grid-cell:not(:hover) {
    opacity: 0.6;
  }
}
.news-grid .grid .grid-cell {
  transition: transform 0.3s, opacity 0.3s, visibility 0s 0s;
  will-change: transform, opacity, visibility;
  margin-bottom: 64px;
  color: var(--gray2);
  visibility: visible;
  overflow: hidden;
}
@media (max-width: 767px) {
  .news-grid .grid .grid-cell {
    margin-bottom: 40px;
  }
}
.news-grid .grid .grid-cell.not-found {
  display: none;
}
.news-grid .grid .grid-cell.hide {
  transform: scale(0);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s, opacity 0.3s, visibility 0s 0.3s;
}
.news-grid .grid .grid-cell article {
  display: none;
}
.news-grid .grid .grid-cell[data-quote] figure .img-wrapper::after {
  content: "„" attr(data-quote) "“";
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.02) 45%);
  color: var(--white);
  padding: 16px;
  display: flex;
  align-items: flex-end;
  font-size: calc(4vw / var(--c));
  font-size: min(23px, calc(4vw / var(--c)));
  line-height: 130%;
  font-weight: 600;
}
.news-grid .grid .grid-cell figure .img-wrapper {
  position: relative;
  line-height: 0;
  margin-bottom: 16px;
  aspect-ratio: 4 / 3;
}
.news-grid .grid .grid-cell figure .img-wrapper .categories {
  position: absolute;
  z-index: 1;
  padding: 12px;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.news-grid .grid .grid-cell figure .img-wrapper .categories .category {
  display: block;
  position: relative;
  width: 6.5%;
  aspect-ratio: 1 / 1;
  margin-left: 1.625%;
  background-color: var(--orange1);
  border-radius: 50%;
  float: right;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news-grid .grid .grid-cell figure .img-wrapper .categories .category::before {
  content: "";
  z-index: 1;
  width: 66.666667%;
  height: 66.666667%;
  background-color: white;
  -webkit-mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-position: center;
  mask-size: 100% 100%;
}
.news-grid .grid .grid-cell figure .img-wrapper .categories .category.press::before {
  -webkit-mask-image: url(/wp-content/themes/fsm/partials/news/./img/press.svg);
  mask-image: url(/wp-content/themes/fsm/partials/news/./img/press.svg);
}
.news-grid .grid .grid-cell figure .img-wrapper .categories .category.post::before {
  -webkit-mask-image: url(/wp-content/themes/fsm/partials/news/./img/post.svg);
  mask-image: url(/wp-content/themes/fsm/partials/news/./img/post.svg);
}
.news-grid .grid .grid-cell figure .img-wrapper .categories .category.episode::before {
  -webkit-mask-image: url(/wp-content/themes/fsm/partials/news/./img/episode.svg);
  mask-image: url(/wp-content/themes/fsm/partials/news/./img/episode.svg);
}
.news-grid .grid .grid-cell figure .img-wrapper .categories .category.fachartikel::before {
  -webkit-mask-image: url(/wp-content/themes/fsm/partials/news/./img/fachartikel.svg);
  mask-image: url(/wp-content/themes/fsm/partials/news/./img/fachartikel.svg);
}
.news-grid .grid .grid-cell figure .img-wrapper img, .news-grid .grid .grid-cell figure .img-wrapper:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.news-grid .grid .grid-cell figure .img-wrapper img {
  object-fit: cover;
}
.news-grid .grid .grid-cell figure .img-wrapper::after {
  content: "";
  background: rgba(0, 0, 0, 0.02);
  pointer-events: none;
  box-sizing: border-box;
}
.news-grid .grid .grid-cell figure .meta {
  display: flex;
  gap: 8px;
}
.news-grid .grid .grid-cell figure h3 {
  margin: 0;
}
.news-grid button.show-more {
  opacity: 1;
  transition: opacity 0.5s, visibility 0s 0s;
}
.news-grid button.show-more.hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0s 0.5s;
}
.nojs .news-grid button.show-more {
  display: none;
}
.posts-navigation {
  text-align: center;
  margin-bottom: 80px;
}
.posts-navigation .nav-links {
  display: flex;
  gap: 40px;
  justify-content: center;
}
/*# sourceMappingURL=https://fsm.kniff.at/wp-content/build/scss_library/3e6b7aa97f3b0667996ed15420cd444bb0b2d28e.css.map */