div.ALPresentation{
	display: flex;
	justify-content: center;
	flex-direction: row;
	flex-wrap: wrap-reverse;
	
	margin: 4px;
	padding: 8px;
}
div.ALDescription{
	width: 60%;
	padding: 8px;
	margin: 4px;
	border-radius: 20px;
	min-width: 380px;
	background-color: var(--theme-palette-color-7);
}
img.ALCoverImg {
	
	border: 1px solid var(--theme-palette-color-6);
	object-fit: contain;
}
div.ALCoverImgContainer {
	
	width: 30%;
	height: auto;
}

div.ALBookListElement {
	display: flex;
	flex-direction: rows;
	justify-content: center;
	
	height: 240px;
	width: 320px;
	
	margin: 16px;
	padding: 20px;
	
	border-radius: 20px;
	background-color: var(--theme-palette-color-7);
}

a.ALBookListElementLink {
	color: var(--theme-palette-color-6);
}

div.ALBookListElementCoverDiv {
	display: flex;
	align-items: center;
	height: 100%;
	width: 50%;
}

img.ALBookListElementCover {
	
	border: 1px solid var(--theme-palette-color-6);
	object-fit: contain;
}
div.ALBookListElementText {
	padding: 16px;
	overflow: clip;
	width: 50%;
}

p{
	text-overflow: ellipsis;
}

div.ALBookList {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	
	padding: 16px;
}