div.crepop_container {
	display: flex;
    flex-direction: row;
	flex-wrap: wrap;
	gap: 2rem;
	width: 80%;
    margin: auto;
}

div.crepop_book {
	display: flex;
    flex-direction: row;
	width: 100%;
	border: 1px solid #f1f1f1;
}

div.crepop_book div.crepop_image {
	width: 40%;
}

div.crepop_book div.crepop_info {
	width: 60%;
}

div.crepop_book div.crepop_title {
	padding: 5px;
    font-size: 16px;
    font-weight: 700;
    color: #4c85b7;
}

div.crepop_book a img {
	max-width: 100%;
}

@media(min-width: 768px) {
	div.crepop_book {
		width: calc(50% - 1rem);
	}
	
	div.crepop_book div.crepop_title {
		font-size: 22px;
	}
}