/* Custom Article Stabilization */
/* Only target larger images within the content to avoid breaking icons/small graphics */
.article-content img:not([width]):not([height]) {
	background-color: #f5f5f5;
	min-height: 150px; /* Safer minimum than 200px */
	max-width: 100%;
	height: auto;
	margin-bottom: 15px;
}

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

