 .news-item {
    display: flex;
    align-items: stretch;
    text-decoration: none;
    border: 1px solid var(--bs-border-color);
    border-radius: .75rem;
    overflow: hidden;
    transition: box-shadow .15s ease-in-out, transform .15s ease-in-out;
    background: var(--bs-body-bg);
    min-height: 200px;
  }
  .news-item:hover {
    box-shadow: 0 .25rem .75rem rgba(0,0,0,.06);
    transform: translateY(-1px);
  }

  /* Datum */
  .news-date {
    flex: 0 0 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .25rem;
    background: var(--bs-light);
    color: var(--bs-body-color);
    transition: background-color .15s ease-in-out, color .15s ease-in-out;
  }
  .news-item:hover .news-date {
    background: #A71301;
    color: #fff;
  }

  .news-date .day   { font-size: 3rem; font-weight: 700; line-height: 1; }
  .news-date .month { text-transform: uppercase; letter-spacing: .06em; font-size: 1.4rem; font-weight: 600; }
  .news-date .year  { font-size: 1.5rem; opacity: .85; }
  .news-date .time  { font-size: 1.5rem; opacity: .9; }

  /* Content */
  .news-content {
    flex: 1 1 auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
  }
  .news-location { font-size: 1rem; opacity: .8; font-weight: 700; }
  .news-title    { font-size: 1.5rem; margin: .15rem 0 .25rem; font-weight: 700; }
  .news-teaser   { opacity: .95; }

  /* Bild am Ende */
  .news-image {
    flex: 0 0 200px;
    height: 200px;
    overflow: hidden;
    background: #242424;
  }
  .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Wenn kein Bild da ist → Spalte automatisch weg */
  .news-image:empty {
    display: none;
  }

  /* Abstände zwischen Items */
  .news-list > * + * { margin-top: .75rem; }


  /* < 992px: Content unter Datum + Bild schieben */
@media (max-width: 991.98px) {
  .news-item {
    flex-wrap: wrap;      /* erlaubt Umbruch */
    min-height: auto;     /* feste Min-Höhe nur Desktop nötig */
  }

  /* Reihenfolge festlegen: Datum (1) → Bild (2) → Content (3) */
  .news-date  { order: 1; }
  .news-image { order: 2; }
  .news-content {
    order: 3;
    flex: 0 0 100%;       /* Content nimmt ganze Zeile darunter ein */
    padding-top: 1rem;    /* Luft nach oben/unten */
    padding-bottom: 1rem;
  }

  /* Datum & Bild oben nebeneinander (je 50%) und quadratisch */
  .news-date,
  .news-image {
    flex: 0 0 50%;
    height: 200px;        /* bleibt quadratisch wie gewünscht */
  }

  /* Falls kein Bild vorhanden ist → Bildspalte ausgeblendet */
  .news-image:empty {
    display: none;
  }

  /* Optional: Wenn Bild fehlt, Datum volle Breite
     (Achtung: :has() braucht moderne Browser) */
  /* .news-item:not(:has(.news-image img)) .news-date { flex-basis: 100%; } */
}


a.news-item {
 color:#555555;
}



a.news-item:hover {
 text-decoration: none;
 color:#A71301;
}

