/* Accroches des cartes d’article : visibles au survol et au focus clavier. */
.story-card__excerpt {
	max-height: 0;
	margin: 0;
	overflow: hidden;
	opacity: 0;
	color: #646464;
	font-size: 13px;
	line-height: 1.5;
	transition: max-height .28s ease, margin .28s ease, opacity .2s ease;
}

.story-card:hover .story-card__excerpt,
.story-card:focus-within .story-card__excerpt {
	max-height: 7em;
	margin: 0 0 13px;
	opacity: 1;
}

@media (hover: none) {
	.story-card__excerpt {
		max-height: 7em;
		margin: 0 0 13px;
		opacity: 1;
	}
}
