.mld-list {
	direction: rtl;
	margin: 1.5rem 0;
}

.mld-list__title {
	margin: 0 0 1.25rem;
	color: #004a73;
	font-size: 1.45rem;
	font-weight: 800;
}

.mld-list__empty {
	margin: 0;
	color: #64748b;
}

.mld-list__row {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.mld-card {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 16px 20px;
	padding: 16px 18px;
	background: #fff;
	border: 1px solid #e8eef3;
	border-radius: 16px;
	box-shadow: 0 4px 18px rgba(0, 74, 115, 0.05);
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.mld-card:hover {
	border-color: #d7e4ee;
	box-shadow: 0 8px 24px rgba(0, 74, 115, 0.08);
}

.mld-card__logo {
	flex: 0 0 76px;
	width: 76px;
	height: 76px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #f6f9fb;
	border: 1px solid #edf2f6;
	border-radius: 14px;
}

.mld-card__logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 8px;
}

.mld-card__logo--empty {
	background:
		linear-gradient(180deg, #f8fafc 0%, #eef4f8 100%);
}

.mld-card__body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
	flex: 1;
	text-align: right;
}

.mld-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.mld-card__title {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.5;
	font-weight: 800;
}

.mld-card__title a {
	color: #004a73;
	text-decoration: none;
}

.mld-card__title a:hover {
	color: #f58220;
}

.mld-card__badge {
	flex-shrink: 0;
	background: #fff4ea;
	color: #c45d0e;
	border-radius: 999px;
	padding: 4px 10px;
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1.4;
	white-space: nowrap;
}

.mld-card__excerpt {
	margin: 0;
	color: #64748b;
	font-size: 0.9rem;
	line-height: 1.7;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.mld-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 8px 16px;
	margin-top: 4px;
}

.mld-card__dates {
	margin: 0;
	color: #94a3b8;
	font-size: 0.82rem;
}

.mld-card__dates-sep {
	margin: 0 6px;
	color: #cbd5e1;
}

.mld-card__phone {
	color: #004a73;
	text-decoration: none;
	font-size: 0.88rem;
	font-weight: 700;
	direction: ltr;
	unicode-bidi: isolate;
}

.mld-card__phone:hover {
	color: #f58220;
}

.mld-card--expired {
	opacity: 0.72;
}

@media (max-width: 640px) {
	.mld-card {
		align-items: flex-start;
		padding: 14px;
		gap: 12px;
	}

	.mld-card__logo {
		flex-basis: 60px;
		width: 60px;
		height: 60px;
		border-radius: 12px;
	}

	.mld-card__top {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
	}

	.mld-card__meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}
}
