/* Stuart Media List Widget */

/* ── List wrapper ── */
.sml-list {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

/* ── Single item ── */
.sml-item {
	display: flex;
	align-items: center;
	background-color: #2a2a35;
	overflow: hidden;
	box-sizing: border-box;
}

.sml-item.sml-image-right {
	flex-direction: row-reverse;
}

/* ── Image wrap ── */
.sml-image-wrap {
	width: 200px;
	min-width: 200px;
	height: 180px;
	flex-shrink: 0;
	overflow: hidden;
}

.sml-image-wrap img {
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover;
	object-position: center center;
	display: block !important;
}

/* ── Content ── */
.sml-content {
	flex: 1;
	padding: 24px 32px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	box-sizing: border-box;
}

/* ── Badge ── */
.sml-badge {
	display: inline-block;
	background-color: #d91a52;
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 3px;
	margin-bottom: 10px;
	line-height: 1.4;
}

/* ── Title ── */
.sml-title {
	margin: 0 0 12px;
	padding: 0;
	font-size: 22px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.25;
}

/* ── Description ── */
.sml-description {
	font-size: 15px;
	line-height: 1.65;
	color: #9090a0;
	margin: 0;
	padding: 0;
}

.sml-description p {
	margin: 0;
	padding: 0;
}

/* ── Link ── */
.sml-link {
	display: inline-block;
	margin-top: 10px;
	color: #d91a52;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s ease;
}

.sml-link:hover {
	color: #ff3366;
}

/* ── Responsive ── */
@media (max-width: 767px) {
	.sml-item,
	.sml-item.sml-image-right {
		flex-direction: column;
		align-items: stretch;
	}

	.sml-image-wrap {
		width: 100%;
		min-width: 100%;
		height: 220px;
	}

	.sml-content {
		padding: 20px 24px;
	}

	.sml-title {
		font-size: 18px;
	}
}
