.eoc-slp {
	--eoc-slp-text-scale: 1em;
	color: inherit;
	padding: 0;
	font-family: inherit;
}

.eoc-slp__items {
	display: grid;
	gap: 10px;
}

.eoc-slp__item {
	display: grid;
	grid-template-columns: 44px minmax(0, auto) max-content;
	align-items: center;
	column-gap: 14px;
	row-gap: 4px;
	max-width: 100%;
}

.eoc-slp__thumb {
	display: block;
	width: 44px;
	height: 44px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.18);
	text-decoration: none;
}

.eoc-slp__image,
.eoc-slp__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.eoc-slp__placeholder {
	background: rgba(255, 255, 255, 0.24);
}

.eoc-slp__title,
.eoc-slp__title:hover,
.eoc-slp__title:focus {
	color: inherit;
	text-decoration: none;
}

.eoc-slp__title {
	min-width: 0;
	font-size: calc(21px * var(--eoc-slp-text-scale));
	font-weight: 400;
	line-height: 1.28;
}

.eoc-slp__date {
	color: inherit;
	font-size: calc(13px * var(--eoc-slp-text-scale));
	font-weight: 400;
	line-height: 1.3;
	white-space: nowrap;
	opacity: 0.95;
}

@media (max-width: 999px) {
	.eoc-slp__item {
		grid-template-columns: 40px minmax(0, 1fr);
	}

	.eoc-slp__thumb {
		width: 40px;
		height: 40px;
	}

	.eoc-slp__title {
		font-size: calc(18px * var(--eoc-slp-text-scale));
	}

	.eoc-slp__date {
		grid-column: 2;
		font-size: calc(12px * var(--eoc-slp-text-scale));
		white-space: normal;
	}
}
