/*
TEMPLATE FOR MEDIA QUERIES
	@media screen and (min-width:1180px) {}
	@media screen and (min-width:880px) and (max-width:1179px) {}
	@media screen and (max-width:879px) {}

INDEX
	- CHAPTER BLOCK
	- CHAPTER MEDIA / PLACEHOLDER
	- CHAPTER TEXT
	- PULLQUOTE
	- BG1L OVERRIDES
	- MEDIA QUERIES
*/

/*-----------------------------------------------------------  CHAPTER BLOCK  --------------------*/
.bh_chapter-block .content { padding: 60px 0; }

.bh_chapter {
	display: flex;
	align-items: center;
	gap: 55px;
	max-width: 1100px;
	margin: 0 auto;
}

.bh_chapter.bh_chapter-reverse { flex-direction: row-reverse; }

/*-------------------------------------------  CHAPTER MEDIA / PLACEHOLDER  ----------------------*/
.bh_chapter-media {
	flex: 0 0 calc(46% - 27px);
}

.bh_chapter-media img {
	display: block;
	width: 100%;
	border-radius: 4px;
	box-shadow: 0 10px 24px rgba(29, 51, 60, 0.16);
}

.bh_chapter-placeholder {
	aspect-ratio: 4 / 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--color_pl1);
	border: 2px dashed var(--color_pl);
	border-radius: 4px;
	box-shadow: 0 10px 24px rgba(29, 51, 60, 0.10);
}

.bh_chapter-placeholder i {
	font-size: 34px;
	color: var(--color_p);
	opacity: 0.55;
}

.bh_chapter-placeholder span {
	font-family: "Barlow", sans-serif;
	font-size: 12px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--color_ad);
	opacity: 0.8;
	text-align: center;
	padding: 0 10px;
}

/*-----------------------------------------------------  CHAPTER TEXT  ---------------------------*/
.bh_chapter-text {
	flex: 0 0 calc(54% - 27px);
	position: relative;
}

.bh_chapter-num {
	display: block;
	font-family: "Playfair Display", serif;
	font-weight: 700;
	font-size: 64px;
	line-height: 1;
	color: var(--color_al);
	margin-bottom: -20px;
}

.bh_chapter-reverse .bh_chapter-text { text-align: right; }

.bh_chapter-text h2 { margin-bottom: 20px; }

.bh_chapter-text h3 {
	margin-top: 30px;
	color: var(--color_ad);
}

.bh_chapter-text p:last-child { margin-bottom: 0; }

/*-----------------------------------------------------------  PULLQUOTE  ------------------------*/
.bh_pullquote {
	font-family: "Playfair Display", serif;
	font-style: italic;
	font-size: clamp(20px, 2.4vw, 24px);
	line-height: 1.45;
	color: var(--color_p);
	border-left: 3px solid var(--color_a);
	padding: 4px 0 4px 20px;
	margin: 30px 0 !important;
}

.bh_chapter-reverse .bh_pullquote {
	border-left: none;
	border-right: 3px solid var(--color_a);
	padding: 4px 20px 4px 0;
}

/*-----------------------------------------------------------  BG1L OVERRIDES  --------------------*/
/* Chapter II sits on the site's standard bg1l band — same wrapper used on
   Request-the-Relics-To-Your-Location / Support-Our-Mission / Become-a-Sponsor, light variant. */
.bg1l .bh_chapter-num { color: rgba(29, 51, 60, 0.08); }

.bg1l .bh_chapter-placeholder {
	background: var(--white);
	border-color: var(--color_p);
}

/*-----------------------------------------------------------  MEDIA QUERIES  --------------------*/
@media screen and (min-width: 880px) and (max-width: 1179px) {
	.bh_chapter { gap: 35px; }
}

@media screen and (max-width: 879px) {
	.bh_chapter-block .content { padding: 40px 0; }

	.bh_chapter,
	.bh_chapter.bh_chapter-reverse {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}

	.bh_chapter-media,
	.bh_chapter-text { flex: 0 0 auto; width: 100%; }

	.bh_chapter-reverse .bh_chapter-text { text-align: left; }

	.bh_chapter-reverse .bh_pullquote {
		border-left: 3px solid var(--color_a);
		border-right: none;
		padding: 4px 0 4px 20px;
	}

	.bh_chapter-num { font-size: 48px; margin-bottom: -10px; }
}
