/* Allgemeines Styling */
body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: #f8f9fa;
}

/* Container für den Inhalt */
.container {
  display: flex;
  width: 90%;
  max-width: 1500px;
  margin: 30px auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Sidebar */
.sidebar {
  width: 250px;
  padding: 20px;
  background: #f0f2f5;
  border-radius: 8px;
  margin-right: 20px;
}
.sidebar ul {
  list-style: none; /* Entfernt Punkte */
  padding: 0;
}

.sidebar ul li {
  padding: 5px 0;
}

.sidebar ul .subcategories {
  margin-left: 15px; /* Einrückung für Subkategorien */
  font-size: 0.9em; /* Etwas kleiner für bessere Hierarchie */
}

.sidebar ul .subcategories li {
  padding: 2px 0;
}

.sidebar h2 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.sidebar a {
  display: block;
  text-decoration: none;
  color: #156082;
  padding: 6px 0;
  font-size: 16px;
}

.sidebar a:hover {
  text-decoration: underline;
}

/* Hauptinhalt */
.content {
  flex: 1;
  padding: 20px;
  background: white;
  border-radius: 8px;
}

.content h1 {
  font-size: 28px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}

.content .article-meta {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.content h2,
.content h3 {
  color: #156082;
  margin-top: 20px;
}

.content p {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
}

.content ul {
  list-style: none;
  padding: 0;
}

.content ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.content ul li::before {
  content: "•";
  color: #156082;
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
}

.content a {
  color: #156082;
  text-decoration: none;
  font-weight: bold;
}

.content a:hover {
  text-decoration: underline;
}

/* Responsive Anpassung für Mobile */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 15px;
  }

  .sidebar {
    display: none;
  }

  .content {
    width: 100%;
    padding: 15px;
  }

  .content h1 {
    font-size: 24px;
  }
}
