/* =====================================================
   ARTIKEL – Übersichtsseite
   ===================================================== */

.artikel-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    margin: 0 auto;
}

.artikel-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.artikel-card article {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.artikel-thumb {
    display: flex;
    align-items: center;
    padding: 1.4rem 1.6rem;
    height: 4rem;
    background: linear-gradient(180deg, #BFBFBF, #9B9B9B);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.artikel-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 60, 100, 0.18));
    pointer-events: none;
}

.artikel-thumb-label {
    font-size: clamp(1.4rem, 1.3208rem + 0.3623vw, 2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
    position: relative;
    z-index: 1;
}

.artikel-summary {
    padding: 1.4rem 1.6rem;
    background: #F5F5F5;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.artikel-description {
    flex: 1;
}

.artikel-description p {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: #333333;
}

.artikel-bottom {
    text-align: right;
    margin-top: 0.5rem;
}

/* =====================================================
   News
   ===================================================== */

h2.news-date {
  color: #0099ff;
  font-size: clamp(1.4rem, 1.3208rem + 0.3623vw, 2rem);
  font-weight: 400;
  text-align: center;
  position: relative;
  display: inline-block;
}

h2.news-date::after {
  content: '';
  display: block;
  width: font-size: clamp(5rem, 4.4717rem + 2.4151vw, 10rem);
/*  width: 8rem;*/
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0099ff, blue, #00c853);
  margin-top: 1rem;
}