.book_about_section {
	position: relative;
	padding: 110px 0;
	background-color: #111111;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.book_about_section:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.30);
	z-index: 0;
}

.book_about_section .container_full {
	position: relative;
	z-index: 1;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 30px;
}

.book_about_grid {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

.book_about_image_col {
	width: 42%;
	padding-right: 35px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
}

.book_about_content {
	width: 50%;
	max-width: 560px;
	padding-left: 35px;
	box-sizing: border-box;
}

.book_about_image_wrap {
	position: relative;
	width: 100%;
	max-width: var(--book-image-width, 420px);
}

.book_about_image_wrap img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	display: block;
	box-shadow: 0 25px 55px rgba(0, 0, 0, 0.18);
}

.book_about_section .book_eyebrow,
.book_cards_section .book_eyebrow {
	display: inline-block;
	margin-bottom: 18px;
	color: #f6b82f;
	font-size: 18px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0 !important;
}

.book_about_content h1,
.book_about_content h2,
.book_about_content h3 {
	margin: 0 0 24px;
	color: #ffffff;
	font-size: 52px;
	line-height: 0.95;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0 !important;
}

.book_about_content p {
	margin: 0 0 18px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 17px;
	line-height: 1.75;
}

.book_about_content img {
	max-width: 260px;
	height: auto;
	display: block;
	margin: 24px 0;
}

.book_cards_section {
	padding: 95px 0;
}

.book_cards_section .container_full {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 30px;
}

.book_cards_section_light {
	background: #f7f7f7;
}

.book_cards_section_dark {
	background: #1f1f23;
}

.book_section_heading {
	max-width: 820px;
	margin: 0 auto 52px;
	text-align: center;
}

.book_cards_section .book_section_heading h2 {
	margin: 0;
	font-size: 52px;
	line-height: 0.95;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0 !important;
}

.book_cards_section_light .book_section_heading h2 {
	color: #111111;
}

.book_cards_section_dark .book_section_heading h2 {
	color: #ffffff;
}

.book_cards_grid {
	display: flex;
	flex-wrap: wrap;
	margin: -14px;
}

.book_card {
	position: relative;
	width: calc(33.333% - 28px);
	min-height: 360px;
	margin: 14px;
	overflow: hidden;
	background-color: #2c2c31;
	background-size: cover;
	background-position: center;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	box-sizing: border-box;
}

.book_card:hover {
	transform: translateY(-6px);
	box-shadow: 0 28px 65px rgba(0, 0, 0, 0.24);
}

.book_card_overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.06) 0%,
		rgba(0, 0, 0, 0.38) 45%,
		rgba(0, 0, 0, 0.88) 100%
	);
	z-index: 1;
}

.book_card_content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 34px 30px;
	color: #ffffff;
}

.book_card_content h3 {
	margin: 0 0 14px;
	color: #ffffff;
	font-size: 32px;
	line-height: 0.95;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0 !important;
}

.book_card_content p {
	margin: 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 15px;
	line-height: 1.6;
}

@media screen and (max-width: 991px) {
	.book_about_grid {
		display: block;
	}

	.book_about_image_col {
		width: 100%;
		padding-right: 0;
		margin-bottom: 45px;
	}

	.book_about_content {
		width: 100%;
		max-width: 680px;
		margin: 0 auto;
		padding-left: 0;
		text-align: center;
	}

	.book_about_content h1,
	.book_about_content h2,
	.book_about_content h3,
	.book_cards_section .book_section_heading h2 {
		font-size: 42px;
	}

	.book_about_content img {
		margin-left: auto;
		margin-right: auto;
	}

	.book_card {
		width: calc(50% - 28px);
	}
}

@media screen and (max-width: 767px) {
	.book_about_section,
	.book_cards_section {
		padding: 60px 0;
	}

	.book_about_section .container_full,
	.book_cards_section .container_full {
		padding: 0 24px;
	}

	.book_about_content h1,
	.book_about_content h2,
	.book_about_content h3,
	.book_cards_section .book_section_heading h2 {
		font-size: 34px;
	}

	.book_card {
		width: calc(100% - 28px);
		min-height: 320px;
	}

	.book_card_content h3 {
		font-size: 28px;
	}
}