    /*
    Template-CSS für NEW_Routendetail
    */

.page-title {
  background: rgba(0, 0, 0, 0.25); /* Schwarzes, halbtransparentes Overlay */
  border-bottom: none;
  position: absolute;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #fff;
  font-size: 1em;
  font-weight: 600;
  text-transform: none;
  line-height: 1.5rem;
  z-index: 200;
  width: 100%;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}

.page-title h1 {
  color: #fff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.1em;
  margin: 0;
}

.image-container img {
  border-radius: 0;
}

.page-image {
  margin: 0;
}

.image-container .image-caption {
  font-size: clamp(0.2rem, 4vw + 0.15rem, 1.1rem);
  font-weight: normal;
  left: 0;
  margin-top: 8px;
  position: absolute;
  width: 90%;
  background: none;
  border: none;
  box-shadow: none;
}

#breadcrumbs {
  background-color: #f0f0f0;
  font-size: 80%;
  padding: 0 2em;
  line-height: 2em;
}

/* Inhaltsverzeichnis */

.toc-content {
	display: none;
}
.toc-content.visible {
	display: block;
}
.toggle-btn {
	cursor:pointer;
	color:#00a300;
	font-size:80%;
	font-weight:normal;
	text-decoration: underline;
}
.toc p {
	margin-bottom:0;
}

/* Booking.com-Integration */

.bookingcom {
	border-radius: 5px; 
	box-shadow: 1px 3px 3px 3px #ccc;
	padding: 10px;
}

/* Prolog & Kurzinfos */

.prolog-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px; /* Abstand zwischen den Elementen */
}

.prolog-container > * {
    flex: 1 1 45%; /* Elemente erhalten 45% Breite */
    box-sizing: border-box; /* Behebt mögliche Breitenprobleme */
}

.destination_content p {
	margin-bottom: 0;
}

.entry table {
	font-size:1em;
}

.entry table td {
	border:none;
	vertical-align: top;
}

td.label {
    width: 25%;
    vertical-align: top;
}

@media (max-width: 768px) {
    .prolog-container > * {
        flex: 1 1 100%; /* Bei Mobilgeräten 100% Breite */
    }
}