.card-module {
	background: #040926;
	border-radius: 2rem;
	padding: 1rem;
	margin: 2rem auto;
	display: flex;
	width: 100%;
}

.element-module {
	width: 30%;
}

.card-image {
	width: 90%;
	height: 200px;
	object-fit: cover;
	border-radius: 1rem;
	padding: 0.5rem 0;
	display: block;
	margin: 0 auto;
}

.card-title {
	margin-bottom: 0.5rem;
	color: white;
	font-weight: bolder;
	font-size: 2rem;
}

.sous-module-container {
	display: flex;
	align-items: center;
	width: 70%;
	overflow: hidden;
	padding-left: 1rem;
}

.sous-module-slider {
	display: flex;
	gap: 1rem;
	overflow-x: auto;
	scroll-behavior: smooth;
	max-width: 100%;
}

.sous-module-slider a {
	text-decoration: none;
}

.sous-module {
	min-width: 25rem;
	max-width: 30rem;
	height: auto;
	background-color: #fffeff;
	padding: 1rem;
	border-radius: 1rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.sous-module img {
	width: 100%;
	max-height: 11rem;
	object-fit: cover;
	border-radius: 8px;
	display: block;
}

.arrow-button {
	background: none;
	border: none;
	color: white;
	font-size: 2rem;
	cursor: pointer;
	padding: 0 1rem;
}

.card-subtitle {
	color: black;
	font-size: 1.7rem;
	font-weight: bolder;
	margin-bottom: 1rem;
	height: 5rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
}