.mod_newslist.projects p.empty {
  margin: 20px 0 0 0!important;
}
.mod_newslist.projects .results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: flex-start;
  align-items: stretch;
  column-gap: 55px;
  row-gap: 57px;
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .mod_newslist.projects .results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 599px) {
  .mod_newslist.projects .results {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.mod_newslist.projects .results .project {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 392/550;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
}
@media screen and (max-width: 700px) {
  .mod_newslist.projects .results .project {
    aspect-ratio: auto;
  }
}
.mod_newslist.projects .results .project .background {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.mod_newslist.projects .results .project .background.empty {
  background-color: #000000;
}
.mod_newslist.projects .results .project .background figure,
.mod_newslist.projects .results .project .background picture {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
.mod_newslist.projects .results .project .background img {
  display: block;
  width: 100%;
  height: 100%;
  -moz-object-fit: cover;
  -webkit-object-fit: cover;
  -o-object-fit: cover;
  -ms-object-fit: cover;
  object-fit: cover;
  -moz-object-position: center center;
  -webkit-object-position: center center;
  -o-object-position: center center;
  -ms-object-position: center center;
  object-position: center center;
  font-family: "object-fit:cover; object-position:center center;";
  border-radius: 8px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.mod_newslist.projects .results .project .background:before {
  content: "";
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 100%);
  border-radius: 8px;
}
.mod_newslist.projects .results .project .background .custom_label {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #1d3459;
  padding: 4px 10px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 30px;
  color: #ffffff;
  font-family: 'Lexend', Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
}
.mod_newslist.projects .results .project .slide-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  padding: 32px;
}
.mod_newslist.projects .results .project .slide-content .slide_crumb {
  font-family: 'Lexend', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 8px;
}
.mod_newslist.projects .results .project .slide-content .slide_headline {
  font-family: 'Lexend', Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 16px;
}
.mod_newslist.projects .results .project .slide-content .slide_headline > strong {
  font-family: 'Lexend', Arial, Helvetica, sans-serif;
  font-weight: 500;
}
.mod_newslist.projects .results .project .slide-content .slide_text {
  font-family: 'Lexend', Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
}
.mod_newslist.projects .results .project .slide-content .readmore {
  display: block;
  font-family: 'Lexend', Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: underline;
  margin: 16px 0 0 0;
}
.mod_newslist.projects .results .project:hover .background img {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
