.mcw-courses {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.mcw-course {
	display: flex;
	flex-direction: column;
	border: 1px solid #e2e2e2;
	border-radius: 6px;
	overflow: hidden;
	background: #fff;
}
.mcw-course-image img {
	width: 100%;
	height: auto;
	display: block;
}
.mcw-image-small .mcw-course-image img {
	max-height: 100px;
}
.mcw-image-medium .mcw-course-image img {
	max-height: 180px;
}
.mcw-image-large .mcw-course-image img {
	max-height: 280px;
}
/* Tryb "wypełnij i przytnij" - obraz wypełnia całą ramkę, nadmiar jest kadrowany. */
.mcw-fit-cover .mcw-course-image img {
	object-fit: cover;
	width: 100%;
}
/* Tryb "pokaż cały obraz" - bez kadrowania, ewentualne puste tło wokół obrazu. */
.mcw-fit-contain .mcw-course-image img {
	object-fit: contain;
	width: 100%;
	background: #f6f7f7;
}
.mcw-course-body {
	padding: 12px 16px;
}
.mcw-course-title {
	margin: 0 0 8px;
	font-size: 1.1em;
	line-height: 1.3;
}
.mcw-course-title a {
	text-decoration: none;
}
.mcw-course-category {
	font-size: 0.85em;
	color: #666;
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}
.mcw-course-startdate,
.mcw-course-enddate {
	font-size: 0.9em;
	margin-bottom: 4px;
}
.mcw-course-summary {
	font-size: 0.95em;
	margin: 8px 0;
	color: #444;
}
.mcw-course-customfields ul {
	list-style: none;
	margin: 8px 0;
	padding: 0;
	font-size: 0.9em;
}
.mcw-course-customfields li {
	margin-bottom: 4px;
}
.mcw-course-link {
	margin-top: 10px;
}
.mcw-btn {
	display: inline-block;
	padding: 6px 14px;
	background: #2271b1;
	color: #fff !important;
	border-radius: 4px;
	text-decoration: none;
	font-size: 0.9em;
}
.mcw-btn:hover {
	background: #135e96;
}
.mcw-error {
	color: #b32d2e;
	background: #fbeaea;
	padding: 10px;
	border-left: 4px solid #b32d2e;
}
.mcw-empty {
	color: #666;
}
