    /* ======== GRID LAYOUT ======== */
    .blog-layout {
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
      gap: 2rem;
      width: 1200px;
      margin: 0 auto;
      margin-top: 4rem;
  margin-bottom: 4rem;
    }

    /* ======== BREADCRUMB ======== */
    .breadcrumb {
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }

    .breadcrumb a {
      color: #666;
    }

    .breadcrumb span {
      margin: 0 0.5rem;
    }

    /* ======== CONTENT ======== */
    .content h1 {
      font-size: 2rem;
      margin-top: 1rem;
    }

    .content img {
      width: 100%;
      height: auto;
      margin: 1rem 0;
      border-radius: 8px;
    }

    /* ======== SIDEBAR ======== */
    .sidebar {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .sidebar-section {
      padding: 0;
    }

    .sidebar-section h3 {
      font-size: 1.125rem;
      font-weight: 700;
      margin: 0 0 0.75rem;
      border-bottom: 2px solid #dedede;
      padding-bottom: 0.25rem;
    }

    .category-list,
    .recent-posts {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 0.5rem;
    }

    .category-list li a,
    .recent-posts li a {
      display: block;
      padding: 0.4rem 0.75rem;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 0.95rem;
      color: #333;
      transition: background 0.25s;
    }

    .category-list li a:hover,
    .recent-posts li a:hover {
      background: #f5f5f5;
    }

    .ads img {
      max-width: 100%;
      height: auto;
      display: block;
      margin-bottom: 1rem;
    }

    @media (max-width: 768px) {
      .blog-layout {
        display: block;
        width: 100%;
        padding: 0 1rem;
      }
    }


.image-row {
  display: flex;
  gap: 1rem;               /* Abstand zwischen den Bildern */
  margin: 2rem 0;
  flex-wrap: wrap;         /* Bilder umbrechen bei kleiner Breite */
}

.image-row figure {
  flex: 1;
  margin: 0;
  text-align: center;
}

.image-row img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

.image-row figcaption {
  font-size: 0.85rem;
  color: #555;
  font-style: italic;
  margin-top: 0.5rem;
}


.hinweis-box {
  background: #f0f8ff;
  border-left: 4px solid #005294;
  padding: 1rem 1.25rem;
  margin: 2rem 0;
  border-radius: 4px;
  color: #003b6f;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.styled-table {
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 1rem;
  width: 100%;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.styled-table thead tr {
  background-color: #f4f6f8;
  color: #333;
  text-align: left;
  font-weight: 600;
}

.styled-table th, .styled-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e1e1e1;
}

.styled-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}


.faq-block {
  background: #f9f9f9;
  border-left: 4px solid #007BFF;
  padding: 25px;
  margin: 30px 0;
  border-radius: 8px;
  font-size: 1em;
  line-height: 1.6;
}
.faq-block h4 {
  font-weight: bold;
  margin-top: 1em;
}
.faq-block strong {
  color: #005294;
}