.latest-category-posts-container, .chronologie-container {
	display: flex;
	gap: 20px;
	flex-wrap: nowrap;
}

.single-post-box {
	flex: 0 0 29%;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	padding: 15px;
	border-radius: 6px;
	background: #fff;
	display: flex;
	flex-direction: column;
	height: 100%;
	position: relative;
	margin-bottom: 2em;
}
.cf-chronologie {
	list-style: none;
	padding: 0;
	margin: 5px 0 10px !important;
	font-size: 0.9em;
	color: #555;
	display: block;
	/* flex-wrap: wrap;
	gap: 10px; */
	
}

.cf-chronologie li {
	margin: 0;
}

.cf-chronologie li a {
	color: #92a76e;
	text-decoration: none;
}

.cf-chronologie li a:hover,
.cf-chronologie li a:focus {
	text-decoration: underline;
}
.opp-chrono__bottom{
	color: var(--text-color);
}
.lcp-post-thumbnail {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 4px;
}

.single-post-box h3 {
	margin: 10px 0 5px;
	font-size: 1.2em;
}

.single-post-box h3 a {
	text-decoration: none;
	color: #333;
}

.single-post-box time {
	font-size: 0.85em;
	color: #666;
}

.single-post-box p {
	margin-top: 10px;
	color: #555;
	flex-grow: 1;
}

.lcp-readmore-container {
	text-align: right;
	margin-top: 15px;
}

.lcp-readmore-button {
	background-color: #92a76e;
	color: #fff;
	padding: 8px 14px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: bold;
	font-style: italic;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s ease;
	display: inline-block;
}

.lcp-readmore-button:hover,
.lcp-readmore-button:focus {
	background-color: #7a8a56;
	outline: none;
}

/* Fokus sichtbar machen für Barrierefreiheit */
.lcp-readmore-button:focus {
	outline: 3px solid #92a76e;
	outline-offset: 2px;
}

/* Responsive: Bei schmalen Bildschirmen untereinander */
@media (max-width: 768px) {
	.latest-category-posts-container {
		flex-wrap: wrap;
	}
	.single-post-box {
		flex: 0 0 95%;
		margin-bottom: 20px;
		height: auto;
	}
}
/* ===============================================
* NEU
*================================================*/
/* Grid-Container: 3 Spalten, responsive */
  .opp-chrono .opp-postcard__media {
  position: relative;
  width: 100%;
  padding-top: 25px;
  }
  
  .opp-chrono .opp-postcard__media img {
	position: relative;
	object-fit: cover;
	object-position: top center;
	min-width: 100%;
	min-height: 100%;
	display: block;
  }
  
  .opp-chrono .opp-chrono__bottom p, .opp-chrono__bottom a {
	color: var(--opp-text) !important;
  }