.post-list-block {
}

/* html.post-list-block > ul.splide__list {
	display: grid;
	padding: 0;
	grid-template-columns: repeat(
		auto-fill,
		minmax(clamp(15rem, 10rem + 15vw, 24rem), 1fr)
	);
	gap: 2rem;
	list-style: none;
} */

.post-list-block a {
	color: inherit;
	text-decoration: none;
}

.post-list-block article {
	height: 100%;
}

.post-list-block img {
	aspect-ratio: 3/2;
}

.post-list-block.podcasts img {
	aspect-ratio: 1;
}

.post-list-block .post-list-item {
	display: block;
	border: 1px solid var(--black);
	padding: var(--s-2xs);
	transition: all 0.4s;
	height: 100%;
}

.post-list-block .post-list-item:hover,
.post-list-block .post-list-item:focus {
	/* transform: translateY(-1rem); */
	border-color: var(--yellow);
}

.post-list-block .holder {
	padding-bottom: 1rem;
	/* display: grid;
	grid-template-areas: "stack"; */
}

/* .post-list-block .holder > * {
	grid-area: stack;
} */

.post-list-block h1 {
	padding-top: 1rem;
	border-top: 1px solid var(--stone);
}

.post-list-block time {
	background: var(--black);
	color: var(--white);
	padding: 0.5rem;
	padding-top: 0.85rem;
	transition: background 0.4s ease;
}

.post-list-item:hover time,
.post-list-item:focus time {
	background: var(--yellow);
}

.post-list-block .category {
	background: var(--green);
	color: var(--white);
	padding: 0.5rem;
	padding-top: 0.85rem;
	transition: background 0.4s ease;
}

.post-list-block .Podcast .category {
	background: var(--orange);
}

.post-list-block .Insight .category {
	background: var(--purple);
}

.post-list-item:hover .category,
.post-list-item:focus .category {
	background: var(--black);
}

.post-list-item .post-excerpt {
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	display: -webkit-box;
}

/* .post-list-item .post-meta {
	height: fit-content;
	align-self: end;
	inset: -1rem 1rem;
	position: relative;
} */

.post-list-block .splide__slide {
	max-width: 20rem;
}

.post-list-block .splide__list {
	gap: 1rem;
	position: relative;
	right: 1rem;
}

.post-list-block .splide__pagination {
	margin-top: 1rem;
	max-width: 15rem;
	margin-left: auto;
	margin-right: auto;
	position: static;
}

.post-list-block .splide__pagination__page.is-active {
	background: var(--yellow);
	border: 1px solid white;
}

.splide__track {
	position: relative;
}

.post-list-block .splide__track::before {
	content: "";
	position: absolute;
	height: 100%;
	width: clamp(3rem, 1rem + 20vw, 13rem);
	background-image: linear-gradient(
		0.25turn,
		var(--hiderCol, var(--white)),
		rgba(255, 255, 255, 0)
	);
	z-index: 69419;
	top: 0;
	left: 0;
}

.post-list-block .splide__track::after {
	content: "";
	position: absolute;
	height: 100%;
	width: clamp(3rem, 1rem + 20vw, 13rem);
	background: linear-gradient(
		0.25turn,
		rgba(255, 255, 255, 0),
		var(--hiderCol, var(--white))
	);
	z-index: 69419;
	top: 0;
	right: 0;
}
