.exl-pm-list {
	--exl-pm-gap: 1.25rem;
	--exl-pm-muted: rgba(29, 29, 27, 0.55);
	--exl-pm-border: #e8e8ed;
	--exl-pm-accent: #08a538;
	--exl-pm-text: #1d1d1b;
	width: 100%;
	color: var(--exl-pm-text);
}

.exl-pm-list__heading {
	margin: 0 0 1rem;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.25;
	color: var(--exl-pm-text);
}

.exl-pm-list__items {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--exl-pm-gap);
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (min-width: 640px) {
	.exl-pm-list__items {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 980px) {
	.exl-pm-list__items {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.exl-pm-list__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
	border: 1px solid var(--exl-pm-border);
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
	transition: border-color 0.15s ease, transform 0.15s ease;
}

.exl-pm-list__card:hover,
.exl-pm-list__card:focus {
	border-color: var(--exl-pm-accent);
	transform: translateY(-1px);
	outline: none;
}

.exl-pm-list__thumb {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #f6f6f8;
}

.exl-pm-list__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.exl-pm-list__body {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	padding: 0.9rem 1rem 1.1rem;
}

.exl-pm-list__date {
	font-size: 0.8rem;
	color: var(--exl-pm-muted);
}

.exl-pm-list__title {
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1.35;
}

.exl-pm-list__excerpt {
	font-size: 0.92rem;
	line-height: 1.45;
	color: var(--exl-pm-muted);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.exl-pm-list--empty p {
	margin: 0;
	color: var(--exl-pm-muted);
}
