/* Custom Article Stabilization */
.article-content {
	overflow: hidden;
}

/* 
   Content Image Protector - Standardized wrapper for 1,300+ legacy posts 
   Used by the Image Protector script in article.liquid
*/
.article-content-img-wrapper {
	position: relative;
	display: block;
	width: 100%;
	background-color: #f5f5f5;
	margin-bottom: 20px;
	overflow: hidden;
	border-radius: 4px;
}

/* Allow images in content to be centered but maintain stability */
.article-content img {
	max-width: 100%;
	height: auto !important;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/* Target images within the content to reserve space before Load */
.article-content img:not([width]):not([height]) {
	min-height: 200px;
	background-color: #f9f9f9;
}

/* Responsive YouTube in Articles */
.article-content iframe[src*="youtube.com"],
.article-content .video-wrapper iframe {
	aspect-ratio: 16 / 9;
	width: 100%;
	height: auto;
	background-color: #000;
}
