.book-card-0c26cc7c {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.03);
	height: 100%;
}

.book-card-0c26cc7c-image-wrap {
	padding: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #f6e8e2; /* Default soft background */
}

.book-card-0c26cc7c-image-wrap img {
	max-width: 100%;
	height: auto;
	border-radius: 6px;
	box-shadow: 0 10px 20px rgba(0,0,0,0.15);
	object-fit: cover;
}

.book-card-0c26cc7c-content {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.book-card-0c26cc7c-meta {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #999;
	margin-bottom: 10px;
}

.book-card-0c26cc7c-title {
	font-family: "Playfair Display", serif;
	font-size: 20px;
	font-weight: 600;
	color: #2c2c2c;
	margin: 0 0 20px 0;
	line-height: 1.3;
}

.book-card-0c26cc7c-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: auto; /* Push to bottom */
}

.book-card-0c26cc7c-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 18px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	line-height: 1;
	cursor: pointer;
}

.book-card-0c26cc7c-btn--primary {
	background-color: #f46b6b;
	color: #ffffff;
}

.book-card-0c26cc7c-btn--primary:hover {
	background-color: #e05c5c;
	color: #ffffff;
}

.book-card-0c26cc7c-btn--secondary {
	background-color: #ffeae6;
	color: #dd5959;
}

.book-card-0c26cc7c-btn--secondary:hover {
	background-color: #f7dfdb;
	color: #c94c4c;
}