/* Saubere, einfache News-Section */
.modern-news {
  padding: 20rem 0 4rem 0;
  background: #f8fafc;
  position: relative;
  z-index: 1;
}

.news-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.news-header {
  text-align: center;
  margin-bottom: 3rem;
}

.news-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #1a202c;
}

.news-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
}

/* News Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

/* News Cards */
.news-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.news-card-header {
  padding: 1.5rem 1.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.news-emoji {
  font-size: 2rem;
  flex-shrink: 0;
}

.news-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
  line-height: 1.4;
}

.news-card-meta {
  padding: 0.5rem 1.5rem;
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.news-card-excerpt {
  padding: 1rem 1.5rem 1.5rem;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

.news-card-content {
  padding: 0 1.5rem 1.5rem;
  color: #374151;
  line-height: 1.6;
}

.news-highlights {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.news-highlights li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.news-card-highlight {
  background: #f0f9ff;
  padding: 1rem;
  border-radius: 0.5rem;
  border-left: 4px solid #007acc;
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .modern-news {
    padding: 3rem 0;
  }
  
  .news-container {
    padding: 0 1rem;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .news-title {
    font-size: 2rem;
  }
}