/* ============================================
	 BLOG – DIV um die Teaser
============================================ */

.blog {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 2.5rem  3rem;
	margin: 2.5em auto 2em;
	width: 95%;
}

@media (min-width: 1200px) {
	.blog {
		width: 100%;
	}
}


/* ============================================
	 BLOG – Teaser
============================================ */

.blog-teaser {
	background-color: #fff;
	color: #282830;
	display: flex;
	flex-direction: column;
	margin-bottom: 3.5em;
}

@media (max-width: 500px) {
	.blog-teaser {
		flex: 1 1 100%;
	}
}
@media (min-width: 600px) and (max-width: 992px) {
	.blog-teaser {
		flex: 1 1 45%;
	}
}
@media (min-width: 993px) {
  .blog-teaser {
    flex: 0 0 calc(33.333% - 2rem); /* feste Breite, keine Dehnung */
    max-width: calc(33.333% - 2rem);
  }
}


/* ============================================
	 BLOG – Teaser Bildrahmen
============================================ */

.blog-teaser-img {
	aspect-ratio: 3 / 2;
	background-color: #000;
	position: relative;
	min-width: 100px;
}


/* ============================================
	 BLOG – Teaser Bild
============================================ */

/* BLOG - Teaser Bild */
.blog-teaser-img img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* ============================================
	 BLOG – Teaser Teaser Datum
============================================ */

.blog-teaser-date {
	font-size: 0.8rem;
	margin-bottom: 2em;
	padding: 0.5em 0 0 0.5em;
	text-align: left;
}


/* ============================================
	 BLOG – Teaser Headline
============================================ */

.blog-teaser .headline {
	padding: 0 0.5em;
	text-align: center;
  font-size: clamp(1.35rem, 3vw, 1.45rem);
  font-weight: 500;
}


/* ============================================
	 BLOG – Teaser Kurztext
============================================ */

.blog-teaser .shorttext {
	margin-top: 0.5em;
	padding: 2.5em 0.5em 0 0.5em;
	text-align: left;
}


/* ============================================
	 BLOG – Teaser DIV für Button


.blog-teaser .btn {
	align-self: flex-start;
	margin-top: auto;
	margin-bottom: 1em;
}

============================================ */


/* BLOG - Post Top */
.top-container {
	aspect-ratio: 5 / 1;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 48px auto 0;
	position: relative;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

@media (max-width: 600px) {
	.top-container {
		aspect-ratio: 5 / 2;
	}
}

/* BLOG - Post-Container */
.blog-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	width: 95%;
	margin: 0 auto 2em;
	padding: 0.5em;
}



/* BLOG - Post Layout 50/50 Bild links, Text rechts */
.layout-50-50 {
	color: inherit;
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 5rem;
	margin-bottom: 5rem;
	width:100%;
}

@media (max-width: 600px) {
	.layout-50-50 {
		flex-direction: column;
	}
}

/* BLOG - Post Layout 50/50 Textspalte */
.blog-textspalte {
	width: 50%;
}

@media (max-width: 600px) {
	.blog-textspalte {
		width:100%;
	}
} 


/* Bildunterschrift */
.layout-50-50 figcaption {
  font-size: 0.8rem;
  line-height: 1.2em;
  margin-top: 5px;
  color: inherit;
  text-align: left;       /* <-- Links statt Mitte */
  min-height: 2.4em;      /* gleichmäßige Höhe */
  display: flex;
  align-items: flex-start; /* <-- Text oben links */
  justify-content: flex-start; /* <-- Links statt Mitte */
  flex-direction: column;
}

@media (max-width: 480px) {
	.layout-50-50 figcaption {
		display: none;
	}
}





/* BLOG - Pfeile */
.icon-responsive::before {
	font-family: 'Material Icons';
	content: 'arrow_back';
	vertical-align: middle;
	font-size: inherit; /* oder eine feste Größe */
	line-height: 1;      /* hilft oft */
	position: relative;
	top: -1px;
}

@media (max-width: 768px) {
  .icon-responsive::before {
    content: 'arrow_upward';
	vertical-align: middle;
	font-size: inherit; /* oder eine feste Größe */
	line-height: 1;      /* hilft oft */
	position: relative;
	top: -1px;
  }
}

/* BLOG - Post Layout 50/50 Bildspalte */
.blog-bildspalte {
	width: 50%;
	margin:0 !important;
}

@media (max-width: 600px) {
	.blog-bildspalte {
		width:100%;
	}
}

/* BLOG - Bild */
.blog-img {
	margin:0;
	width:100%;
}


.layout-50-50 bu{
	color: inherit;
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 2em;
	margin-bottom: 5rem;
	width:100%;
}



/* BLOG - Post Datum */
.blog-date {
	text-align: right;
	width: 100%;
	margin: 0.8rem 0;
}

.blog-date span {
	border-top: 1px solid #a9ba9d;
	font-size: 0.8rem;
	padding: 0.2rem;
}