#blog-detail > .tour-box {
  max-width: 800px;
  margin: auto;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  border-bottom: 1px solid #145dc3;
  border-top: 1px solid #145dc3;
  padding-top: 20px;
  padding-bottom: 20px;
}

#blog-detail > .tour-box > table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed; /* Spaltenbreite wird automatisch angepasst */
}

#blog-detail > .tour-box > table th,
#blog-detail > .tour-box > table td {
  text-align: left;
  vertical-align: top; 
  padding: 4px 8px;
  font-weight: 400;
  color: #000000;
  overflow-wrap: break-word;  /* Wortumbruch */
  word-break: break-word;     /* Lange Strings umbrechen */
}

#blog-detail > .tour-box > table th {
  width: 50%;
  font-weight: 500;
}

#blog-detail > .tour-box > table tr:nth-child(even) {
  background-color: transparent;
}

#blog-detail a.link {
        display: block;
        color: #145dc3;
        font-weight: 500;
      }
      a.link:hover {
        text-decoration: underline;
      }

/* Responsive für mobile Geräte */
@media (max-width: 600px) {
  #blog-detail > .tour-box {
    padding: 8px;
  }
}
