.news-container {
    display:grid;
    grid-template-areas:
    "Links"
    "Rechts";
}



.news-container-left {
  grid-area: Links;
  display:grid;
  font-weight: 600;
}



.news-container-left img {
    aspect-ratio: 1 / 1;
    object-fit:cover;
    height:340px;
}

.news-container-right {
  grid-area: Rechts;
  gap: 20px;
  display:grid;
  /* align-items: space-between; */
}


.news-container h3 {
    font-size: 1.5rem;
    margin-top: 10px;
    width: fit-content;
    position: relative;
    padding-top: 25px;
    line-height: 1.2;
}

.news-container h3::before {
    content:"";
    height:10px;
    background-color: var(--color-secondary);
    position: absolute;
    top:0;
    width:100%;
    left:0;
    right:0;
    z-index: 3;
}

@media (min-width: 40.0625em) {
    .news-container {
      grid-template-columns: repeat(3, 1fr);
      grid-template-areas:
      "Links Rechts Rechts";
      gap:50px;
      margin-top: 2em;
    }

    .news-container-left > * {
        text-align: right;
    }

    .news-container-left {
        justify-content: end;
    }
    .news-container h3::before {
        min-width:350px;

    }
  }