/* ====== BERICHTE - KLASSISCHE BLOG-LISTE ====== */

.berichte-bereich {
  background: #fff;
  padding: 60px 20px 40px 20px;
  margin-top: 75px;
}

.berichte-container {
  max-width: 900px;
  margin: 0 auto;
}

.berichte-bereich h1 {
  font-size: 2.5em;
  color: #333;
  margin: 0 0 5px 0;
  font-weight: 700;
}

.intro-text {
  color: #666;
  font-size: 1.1em;
  margin: 0 0 40px 0;
  font-weight: normal;
}

/* ===== Bericht Einträge ===== */
.bericht-eintrag {
  padding: 30px 0;
  border-bottom: 1px solid #eee;
}

.bericht-eintrag:last-child {
  border-bottom: none;
}

.bericht-kopf {
  margin-bottom: 8px;
}

.datum {
  display: inline-block;
  color: #999;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.bericht-eintrag h2 {
  margin: 8px 0 5px 0;
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.4;
}

.bericht-eintrag h2 a {
  color: #333;
  text-decoration: none;
}

.bericht-eintrag h2 a:hover {
  color: #d60000;
}

.quelle {
  color: #0066cc;
  font-size: 0.9em;
  font-weight: 600;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.bericht-eintrag p {
  color: #555;
  font-size: 1em;
  line-height: 1.7;
  margin: 0;
}

.mehr-link {
  color: #d60000;
  text-decoration: none;
  font-weight: 600;
}

.mehr-link:hover {
  text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .berichte-bereich {
    padding: 40px 20px 30px 20px;
  }

  .berichte-bereich h1 {
    font-size: 2em;
  }

  .intro-text {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .bericht-eintrag {
    padding: 25px 0;
  }

  .bericht-eintrag h2 {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .berichte-bereich {
    padding: 30px 15px 20px 15px;
  }

  .berichte-container {
    padding: 0;
  }

  .berichte-bereich h1 {
    font-size: 1.5em;
    margin-bottom: 5px;
  }

  .intro-text {
    font-size: 0.95em;
    margin-bottom: 25px;
  }

  .bericht-eintrag {
    padding: 20px 0;
  }

  .datum {
    font-size: 0.8em;
  }

  .bericht-eintrag h2 {
    font-size: 1.1em;
    margin: 6px 0 4px 0;
  }

  .quelle {
    font-size: 0.8em;
    margin-bottom: 8px;
  }

  .bericht-eintrag p {
    font-size: 0.95em;
    line-height: 1.6;
  }
}