/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 21 2026 | 10:27:03 */
.news-list {
  display: flex;
  flex-direction: column; /* Stapelt die Cards untereinander */
  gap: 24px;             /* Abstand zwischen den Cards */
  margin-top: 20px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.news-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.news-card img {
  border-radius: 12px;
  margin-bottom: 16px;
}

.news-title {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.news-text {
  font-size: 0.95rem;
  white-space: pre-wrap; /* Zeilenumbrüche exakt wie im Editor */
  margin: 0;
  line-height: 1.4; /* feiner Abstand zwischen Zeilen */
}

.news-text .has-text-align-center {
  text-align: center;
}

.news-text .has-text-align-right {
  text-align: right;
}

.news-text .has-text-align-left {
  text-align: left;
}

.news-text p {
  margin: 0 0 0.5em 0; /* Abstand unten auf 0.5em reduzieren */
  line-height: 1.4;     /* Zeilen innerhalb des Absatzes dichter */
}