.container {
    width: 50%;
    max-width: 1000px;
    margin-top: 100px;
    margin-bottom: 50px;
    font-weight: 400;
}

.card-container {
width: 100%;
display: flex;
margin: 25px 0;
padding-bottom: 20px;
border-bottom: 1px solid #d6d6d6;
}

.thumbnail {
  width: 35.5%; /* 40% der Breite des übergeordneten Containers */
  height: 100%; /* Feste Höhe des Containers */
  margin-right: 4.5%;
  overflow: hidden; /* Verhindert das Überlaufen des Inhalts, falls das Bild zu groß ist */
}

.thumbnail-img {
  display: block;
  width: 100%; /* Nimmt die gesamte Breite des übergeordneten divs ein */
  height: 100%; /* Passt sich der Höhe des Containers an */
  object-fit: cover; /* Stellt sicher, dass das Bild korrekt skaliert wird und das Seitenverhältnis beibehält */
  border: 5px solid rgb(49, 86, 151);
  border-radius: 5px;
}

.post_info{
  width: 60%;
}
.card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  margin-bottom: 10px;
}
.card_subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  color: gray;
  margin-bottom:10px;
}
.author_info{
  display: flex
}
.author_pic {
  width: 60px;
  height: 60px;
  background-color: #ecb146;
  border-radius: 50%;
  margin-right: 10px;
  z-index: 1;
}
.author_pic div {
  width: 90%;
  height: 90%;
  margin:5%;
  background-color: #ddd;
  border-radius: 50%;
  z-index: 2;
}
.author_description{
  margin-top: 5px;
}

table {
width: 100%;
border-collapse: collapse;
}
th, td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
}
th {
background-color: #f2f2f2;
}

h1 {
margin-left: 50px;
color: #ecb146;
font-family: 'Oswald', sans-serif;
}
    
    @media (max-width: 768px) {
      .container {
        width: 90%;
        max-width: 768px;
        margin-top: 100px;
        margin-bottom: 50px;
        font-weight: 400;
      }
    
      .container h1 {
        justify-content: center;
        font-family: 'Oswald', sans-serif;
      }
    }
