  .container {
    width: 50%;
    max-width: 1000px;
    font-family: 'PT Serif';
    font-weight: 400;

  }
  .container * {
    box-sizing: border-box; /* Stellt sicher, dass Padding und Border in der Gesamtbreite enthalten sind */
    max-width: 100%; /* Elemente überschreiten nicht die Breite des Containers */
    overflow-wrap: break-word;
    word-wrap: break-word;

  }
  .card-container {
    width: 100%;
    display: flex;
    justify-content: center; /* Zentriert die Elemente horizontal */
    flex-wrap: wrap; /* Ermöglicht das Umbrechen von Elementen */
  }
  .card-wrapper {
    width: 100%;
    max-width: 1200px; /* Stellt sicher, dass die Karten auf großen Bildschirmen nicht zu breit werden */
  }
  .card-title {
    font-family: 'Nunito Sans';
    font-weight: 700;
    font-style: normal;
  }
  .card-text {
    font-family: 'PT Serif';
    font-weight: 400;
  }
  .thumbnail {
    flex-shrink: 0;
    width: 100%; /* Bilder sollen die Container-Breite nicht überschreiten */
    max-width: 300px;
    height: auto; /* Beibehaltung des Seitenverhältnisses */
    object-fit: cover;
    margin-right: 1rem;
    cursor: pointer;
  }
  table {
    width: 100%;
    border-collapse: collapse;
  }
  th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
  }
  th {
    background-color: #f2f2f2;
  }
  .post_title {
    font-size: 50px;
    font-weight: 700;
    color: #000000;
    font-family: 'Oswald', sans-serif;
  }
  .author_info{
    width: 100%;
    height: 60px;
    margin-top: 10px;
    margin-bottom: 30px;
    display: flex;
  }
  .author_pic {
  width: 60px;
  height: 60px;
    background-color: #ecb146;
    border-radius: 50%;
    z-index: 1;
  }
  .author_pic div {
    width: 90%;
    height: 90%;
    margin:5%;
    background-color: #ddd;
    border-radius: 50%;
    z-index: 2;
  }
  .author_description {
    width: 80%;
    height: 100%;
    margin-left: 5%;
    font-size: 20px;
  }
  .author_name{
    width: 100%;
    height: 50%;
    font-family: 'Oswald', sans-serif;

  }
  .post_date {
    width: 100%;
    height: 50%;
    font-family: 'Oswald', sans-serif;
    display: flex;
  }
  .post_date > *{
    margin-right:20px;
  }
  .post_date > p{
    color: #000000;

  }
  pre[class*="language-"] {
    font-size: 14px; /* Anpassung der Schriftgröße in Code-Blöcken */
  }
  .content h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 20px;
  }
  .content h2{
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    font-size: 20px;
  }
  .content p{
    font-size: 22px;
    margin-bottom: 30px;
  }
  .content ul{
    margin: 50px 0;
    font-size: 20px;
  }
  .content ul li{
    margin: 15px 0;
  }

  .content a {
    text-decoration: underline;
    color:#e1e1e1
  }

  .content a:hover {
    color: rgb(210, 234, 255);
  }


  .post_subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    color: gray;
  }


  .suggestions {
    margin-top: 50px;
    text-align: center; /* Zentrieren des Inhalts */
    background-color: #f3f3f3;
    padding-bottom: 100px; /* Platz für den Footer */
  }
  .suggestions_container {
    width: 60%; /* Setzen Sie die Breite auf 60% */
    max-width: 1000px; /* Maximale Breite */
    margin: 0 auto; /* Zentrieren */
    margin-top: 100px;
  }
  .suggestions .card {
    width: 350px;
    height: 380px;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 50px;
  }
  .suggestions .card img {
    width: 100%; /* Stellt sicher, dass das Bild die gleiche Breite wie die Karte hat */
    height: 200px;
    object-fit: cover;
  }
  .suggestion_headline {
    font-size: 50px;
    font-weight: 700;
    color: #000000;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 30px;
  }
  .card-title{
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    font-size: 25px;
    color: #000000;
  }
  .card-text {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    color: gray;
  }

  @media (max-width: 768px) {
    .container {
      width: 95%;
      max-width: 95%;
    }
    .post_title {
      font-size: 35px;
    }
    .content h1 {
      font-family: 'Oswald', sans-serif;
      font-weight: bold;
      font-size: 25px;
      margin-bottom: 20px;
    }
    .content h2 {
      font-family: 'Oswald', sans-serif;
      font-weight: bold;
      font-size: 20px;
    }
    .content p {
      font-family: 'PT Serif';
      font-size: 16px;
      margin-bottom: 30px;
    }
    .thumbnail {
      margin-right: 0; /* Kein zusätzlicher Rand auf mobilen Geräten */
    }
    .suggestions .card {
      width: 90%; /* Karten auf mobilen Geräten 90% Breite */
      margin: 0 auto; /* Zentriert die Karten horizontal */
      margin-bottom: 50px;
    }
  
    /* Hinzugefügte Regel */
    img {
      max-width: 100%;
      height: auto; /* Erhält das Seitenverhältnis der Bilder */
      display: block; /* Entfernt eventuelle Inline-Element-Eigenschaften */
    }
  }
  