/* ======================== */
.card {
	width: 240px;
	height: 300px;
	background-color: #fff;
	padding: 10px;
	border-radius: 8px;
}
.card__skeleton {
	background-image: linear-gradient(
		90deg,
		#f9f9f9 0px,
		rgb(229 229 229 / 90%) 40px,
		#f9f9f9 80px
	);
	background-size: 300%;
	background-position: 100% 0;
	border-radius: inherit;
	animation: shimmer 1.5s infinite;
}
.card__title {
	height: 18px;
	margin-bottom: 15px;
}
.card__description {
	height: 196px;
}
@keyframes shimmer {
	to {
		background-position: -100% 0;
	}
}