.home #area-2 .news-col {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-auto-rows: 260px;
    gap: 24px;
    margin-top: 20px;
}

.home #area-2 .collection_list.col_news:first-child {
    grid-column: 1;
    grid-row: span 2;
}

.home #area-2 .collection_list.col_news {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.home #area-2 .collection_list.col_news .collection_container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    border-radius: var(--br-keyfact);
}

.home #area-2 .col-news-bild {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.home #area-2 .col-news-bild img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home #area-2 .collection_container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        var(--overlay-dark) 0%,
        var(--overlay-mid) 40%,
        var(--overlay-light) 70%,
        transparent 100%
    );
    z-index: 2;
}

.home #area-2 .col-news-title,
.home #area-2 .col-news-text {
    position: relative;
    z-index: 3;
    color: var(--fc-white);
}

.home #area-2 .col-news-title {
    font-family: var(--ff-primary);
    font-weight: var(--fw-bold);
    font-size: var(--fs-news-title);
    line-height: 1.3;
    padding: 0 var(--p-news-right) 0 var(--p-news-left);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    max-height: calc(1.3em * 2);
    overflow: hidden;
    margin-bottom: var(--space-title-text);
}

.home #area-2 .collection_list.col_news:first-child .col-news-title {
    margin-bottom: var(--space-title-text-first);
}

.home #area-2 .col-news-text {
    display: none;
    font-size: var(--fs-body);
    line-height: 1.5;
    padding: 0 var(--p-news-right) var(--p-news-bottom) var(--p-news-left);
    color: var(--fc-white);
}

.home #area-2 .collection_list.col_news:first-child .col-news-text {
    display: block;
}

.home #area-2 
.collection_list.col_news:first-child 
.col-news-text .textcontent {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    max-height: calc(1.5em * 2);
    overflow: hidden;
    color: var(--fc-white);
}

.home #area-2 .collection_link a.button {
    position: absolute;
    inset: 0;
    z-index: 5;
    text-indent: -9999px;
    background: transparent;
    border: 0;
}

.home #area-2 .collection_container::after {
    content: "";
    position: absolute;
    right: var(--space-arrow-right);
    bottom: var(--space-arrow-bottom);
    width: var(--size-arrow);
    height: var(--size-arrow);
    z-index: 4;
    transform: rotate(-90deg);
    background-color: var(--clr-accent);
    -webkit-mask: url(/userdata/02_Kollektionen/Vector-g.svg) center / contain no-repeat;
    mask: url(/userdata/02_Kollektionen/Vector-g.svg) center / contain no-repeat;
}

 .line-title-center::after {
    content: "";
    display: block;
    width: var(--size-title-line-width);
    height: var(--size-title-line-height);
    background: var(--clr-accent);
    margin: var(--space-title-line-top) auto var(--space-title-line-bottom);
}

/* HOME – area-2 background + rounding */
.home #area-2.main-screen.grey {
    background-color: var(--clr-primary-white);
}




@media (max-width: 994px) {
    .home #area-2 .news-col {
        grid-template-columns: 1fr 1fr !important;
        grid-auto-rows: unset !important;
        align-items: stretch !important;
    }

    .home #area-2 .collection_list.col_news {
        height: auto !important;
        min-height: 260px !important;
    }

    .home #area-2 .collection_list.col_news:first-child {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
        min-height: 340px !important;
    }

    .home #area-2 .collection_container {
        height: 100% !important;
    }
}

@media (max-width: 640px) {
    .home #area-2 .news-col {
        grid-template-columns: 1fr !important;
    }

    .home #area-2 .collection_list.col_news {
        min-height: 240px !important;
    }

    .home #area-2 .collection_list.col_news:first-child {
        min-height: 300px !important;
    }
}








.news-wrapper .news-col{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 420px;
  gap: 24px;
  margin-top: 20px;
}

.news-wrapper .collection_list.col_news{
  width: auto;
  float: none;
  margin: 0;
  padding: 0;
}

.news-wrapper .collection_list.col_news .collection_container{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  background: transparent;
  border-radius: var(--br-keyfact);
  overflow: hidden;
}

.news-wrapper .col-news-bild{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.news-wrapper .col-news-bild img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-wrapper .collection_container::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 0%,
    var(--overlay-dark) 35%,
    var(--overlay-mid) 65%,
    transparent 100%
  );
  z-index: 2;
}

.news-wrapper .col-news-title,
.news-wrapper .col-news-text{
  position: relative;
  z-index: 3;
  color: var(--fc-white);
}

.news-wrapper .col-news-title{
  font-family: var(--ff-primary);
  font-weight: var(--fw-bold);
  font-size: var(--fs-news-title);
  line-height: 1.3;
  padding: 0 var(--p-news-right) 0 var(--p-news-left);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: calc(1.3em * 2);
  overflow: hidden;
  margin-bottom: var(--space-title-text);
}

.news-wrapper .col-news-text{
  display: block;
  font-size: var(--fs-body);
  line-height: 1.5;
  padding: 0 var(--p-news-right) var(--p-news-bottom) var(--p-news-left);
  color: var(--fc-white);
}

.news-wrapper .col-news-text a{
  color: inherit;
  text-decoration: none;
  display: block;
}

.news-wrapper .col-news-text .textcontent{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: calc(1.5em * 2);
  overflow: hidden;
  color: var(--fc-white);
}

.news-wrapper .collection_link a.button{
  position: absolute;
  inset: 0;
  z-index: 5;
  text-indent: -9999px;
  background: transparent;
  border: 0;
}

.news-wrapper .collection_container::after{
  content: "";
  position: absolute;
  right: var(--space-arrow-right);
  bottom: var(--space-arrow-bottom);
  width: var(--size-arrow);
  height: var(--size-arrow);
  z-index: 4;
  transform: rotate(-90deg);
  background-color: var(--clr-accent);
  -webkit-mask: url(/userdata/02_Kollektionen/Vector-g.svg) center / contain no-repeat;
  mask: url(/userdata/02_Kollektionen/Vector-g.svg) center / contain no-repeat;
}

.news-wrapper .line-title-center::after{
  content: "";
  display: block;
  width: var(--size-title-line-width);
  height: var(--size-title-line-height);
  background: var(--clr-accent);
  margin: var(--space-title-line-top) auto var(--space-title-line-bottom);
}

@media (max-width: 994px){
  .news-wrapper .news-col{
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 420px;
  }
}

@media (max-width: 640px){
  .news-wrapper .news-col{
    grid-template-columns: 1fr;
    grid-auto-rows: 360px;
  }
}

