.newsfeed {
  position: relative;
  padding: 120px 0;
}
.newsfeed .newsfeed__container {
  max-width: 1040px;
  width: 100%;
  padding: 0 16px;
}
.newsfeed__head {
  margin-bottom: 20px;
}
.newsfeed__head h2 {
  margin-bottom: 10px;
}
.newsfeed__head p {
  color: var(--dunkeldrau);
}
.newsfeed__categories {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}
.newsfeed__categories a.newsfeed__category {
  display: flex;
  background-color: transparent;
  padding: 1px 10px;
  border: 1px solid var(--dunkelgrau);
  color: var(--dunkelgrau);
  font-size: 16px;
  line-height: 150%;
  border-radius: 16px;
  font-weight: 500;
  overflow: hidden;
  transition: all 0.12s ease-in-out;
}
.newsfeed__categories a.newsfeed__category.active {
  background-color: var(--grun);
  border-color: var(--grun);
  transition: all 0.12s ease-in-out;
}
@media (any-hover: hover) {
  .newsfeed__categories a.newsfeed__category:hover {
    background-color: var(--grun);
    border-color: var(--grun);
    transition: all 0.12s ease-in-out;
  }
}
.newsfeed__content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 90px 32px;
  margin-top: 32px;
}
.newsfeed .filter-item-active {
  margin-top: 15px;
}
.newsfeed .newsfeed__categories-wrapper.loading,
.newsfeed .newsfeed__content-wrapper.loading {
  opacity: 0.5;
  filter: blur(2px);
  pointer-events: none;
  transition: opacity 0.2s ease-in-out, filter 0.2s ease-in-out, pointer-events 0.2s ease-in-out;
}
.newsfeed .filter-item-active a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--dunkelgrau);
}
.newsfeed .filter-item-active a span {
  display: flex;
  width: 20px;
  height: 20px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1440px) {
  .newsfeed {
    padding: 90px 0;
  }
}
@media screen and (max-width: 1023px) {
  .newsfeed {
    padding: 70px 0;
  }
}
@media screen and (max-width: 767px) {
  .newsfeed {
    padding: 50px 0;
  }
}

.newsfeed-item__header {
  margin-bottom: 32px;
}
.newsfeed-item__meta {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  color: var(--dunkelgrau);
  margin-bottom: 12px;
}
.newsfeed-item__content {
  margin-bottom: 24px;
}
.newsfeed-item__title {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 150%;
  letter-spacing: normal;
  font-weight: bold;
}
.newsfeed-item__title a {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: nowrap;
}
.newsfeed-item__title a span.icon-arrow-up-right {
  display: flex;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}
.newsfeed-item__excerpt {
  color: var(--dunkelgrau);
  overflow: hidden;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
}
.newsfeed-item__excerpt p {
  line-height: 160%;
}
.newsfeed-item__category {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.newsfeed-item__category a {
  display: flex;
  background-color: var(--grun);
  padding: 2px 10px;
  color: var(--dunkelgrau);
  font-size: 16px;
  line-height: 150%;
  font-weight: 500;
  border-radius: 16px;
  overflow: hidden;
}

.theme--t3 .newsfeed__head h2 {
  color: var(--highlight);
}
.theme--t3 .newsfeed-item__title a {
  color: var(--highlight);
}
/*# sourceMappingURL=newsfeed-section.css.map */
