.tpsb_heroBox {
	--height: clamp(480px, 34vw, 650px);

	display: grid;
	grid-template-columns: minmax(0, 64fr) minmax(0, 36fr);

	width: 100%;
	margin: 0 0 42px;
	padding: 0;
	background: #fff;
}

.tpsb_heroBox,
.tpsb_heroBox * {
	box-sizing: border-box;
}

.tpsb_heroBox_primary,
.tpsb_heroBox_question {
	min-width: 0;
	height: var(--height);
	margin: 0;
	background: #fff;
}

/* ---------- Layout ---------- */

.tpsb_heroBox_primary {
	display: grid;
	grid-template-columns: minmax(0, 41fr) minmax(0, 59fr);
}

.tpsb_heroBox_question {
	display: grid;
	grid-template-rows: minmax(0, 64fr) minmax(0, 36fr);
}

.tpsb_heroBox_content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	min-width: 0;
}

.tpsb_heroBox_primary .tpsb_heroBox_content {
	padding: clamp(30px, 3vw, 54px);
}

.tpsb_heroBox_question .tpsb_heroBox_content {
	min-height: 0;
	padding: 20px clamp(22px, 2vw, 38px);
}

/* ---------- Media ---------- */

.tpsb_heroBox_media {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	overflow: hidden;
	background: #eeeae6;
	text-decoration: none;
}

.tpsb_heroBox_image {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
	transition: transform .35s ease;
}

.tpsb_heroBox_primary .tpsb_heroBox_image {
	object-position: 50% 50%;
}

.tpsb_heroBox_question .tpsb_heroBox_image {
	object-position: 72% 50%;
}

.tpsb_heroBox_imageFallback {
	background: linear-gradient(135deg, #ddd3cc, #a78d7d);
}

/* ---------- Typography ---------- */

.tpsb_heroBox_label {
	display: block;
	margin: 0 0 12px;

	color: #8a6d5c;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.tpsb_heroBox_title {
	margin: 0;
	font-weight: 400;
	line-height: 1.12;
}

.tpsb_heroBox_primary .tpsb_heroBox_title {
	font-size: clamp(29px, 2.75vw, 46px);
}

.tpsb_heroBox_question .tpsb_heroBox_title {
	font-size: clamp(22px, 1.75vw, 30px);
	line-height: 1.18;
}

.tpsb_heroBox_titleLink {
	color: #202020;
	text-decoration: none;
	transition: color .2s ease;
}

.tpsb_heroBox_excerpt {
	max-width: 520px;
	margin: 18px 0 0;

	color: #565656;
	font-size: clamp(15px, 1.05vw, 17px);
	line-height: 1.55;
}

.tpsb_heroBox_read {
	display: inline-block;
	margin-top: 20px;
	padding-bottom: 3px;

	color: #202020;
	border-bottom: 1px solid #b7aca4;

	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: .09em;

	text-decoration: none;
	text-transform: uppercase;

	transition: color .2s ease, border-color .2s ease;
}

/* ---------- Hover ---------- */

.tpsb_heroBox_media:hover .tpsb_heroBox_image {
	transform: scale(1.02);
}

.tpsb_heroBox_titleLink:hover,
.tpsb_heroBox_read:hover {
	color: #8a6d5c;
}

.tpsb_heroBox_read:hover {
	border-color: #8a6d5c;
}

.tpsb_heroBox_media:focus-visible,
.tpsb_heroBox_titleLink:focus-visible,
.tpsb_heroBox_read:focus-visible {
	outline: 3px solid #b09381;
	outline-offset: 3px;
}

/* ---------- Mobile ---------- */

@media (max-width: 991px) {

	.tpsb_heroBox {
		display: block;
		margin-bottom: 28px;
	}

	.tpsb_heroBox_primary,
	.tpsb_heroBox_question {
		display: flex;
		flex-direction: column;
		width: 100%;
		height: auto;
	}

	.tpsb_heroBox_primary {
		margin-bottom: 26px;
	}

	.tpsb_heroBox_primary .tpsb_heroBox_media {
		order: 1;
	}

	.tpsb_heroBox_primary .tpsb_heroBox_content {
		order: 2;
	}

	.tpsb_heroBox_media {
		width: 100%;
		height: auto;
		aspect-ratio: 4 / 3;
	}

	.tpsb_heroBox_content {
		display: block;
		padding: 23px 20px 28px !important;
	}

	.tpsb_heroBox_primary .tpsb_heroBox_title {
		font-size: clamp(30px, 8vw, 43px);
	}

	.tpsb_heroBox_question .tpsb_heroBox_title {
		font-size: clamp(25px, 6.5vw, 36px);
	}

	.tpsb_heroBox_excerpt {
		max-width: none;
		font-size: 16px;
	}

	.tpsb_heroBox_read {
		margin-top: 18px;
	}
}

/* ---------- Accessibility ---------- */

@media (prefers-reduced-motion: reduce) {

	.tpsb_heroBox_image,
	.tpsb_heroBox_titleLink,
	.tpsb_heroBox_read {
		transition: none;
	}

	.tpsb_heroBox_media:hover .tpsb_heroBox_image {
		transform: none;
	}
}
