/*--------------------------------------------------------------
Homepage Module 7 — BRIANN Spotlight
--------------------------------------------------------------*/
.briann-spot {
	position: relative;
	overflow: visible;
	background: radial-gradient(125% 95% at 88% 6%, #1f3940 0%, #172a30 46%, #111e22 100%);
}

.briann-spot .container {
	position: relative;
	z-index: 2;
}

.bs-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	grid-template-areas:
		"mark ."
		"copy figure"
		"links .";
	column-gap: 56px;
	row-gap: 0;
	align-items: stretch;
}

.bs-mark-wrap {
	grid-area: mark;
}

.bs-mark {
	height: 52px;
	width: auto;
	display: block;
	margin: 0 0 26px;
}

.bs-copy {
	grid-area: copy;
	max-width: 600px;
}

.bs-figure {
	grid-area: figure;
	position: relative;
	max-width: 680px;
	width: 100%;
	margin: 0;
	justify-self: end;
	align-self: stretch;
	min-height: 0;
}

.bs-links {
	grid-area: links;
	display: flex;
	gap: 30px;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 40px;
	max-width: 600px;
}

.bs-mark-wrap .fade-anim-box,
.bs-copy .fade-anim-box,
.bs-figure .fade-anim-box,
.bs-links .fade-anim-box {
	display: block;
}

.bs-figure img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	box-shadow: 0 40px 80px -44px rgba(0, 0, 0, 0.7);
	transform: scale(1);
	transition: transform .55s cubic-bezier(.767, .01, .18, 1.01),
		box-shadow .55s cubic-bezier(.767, .01, .18, 1.01);
}

.bs-figure:hover img,
.briann-spot:has(.bs-cta:hover) .bs-figure img {
	transform: scale(1.045);
	box-shadow: 0 48px 90px -40px rgba(0, 0, 0, 0.8);
}

.bs-h2 {
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-weight: 600;
	font-size: clamp(30px, 3.8vw, 45px);
	line-height: 1.04;
	letter-spacing: -0.5px;
	color: #fff;
	margin: 0 0 28px;
}

.bs-points {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	max-width: 52ch;
}

.bs-points li {
	position: relative;
	padding: 0 0 22px 28px;
}

.bs-points li:last-child {
	padding-bottom: 0;
}

.bs-points li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.35em;
	width: 10px;
	height: 10px;
	background: var(--teal-bright);
}

.bs-points .bs-k {
	display: block;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.6px;
	line-height: 1.2;
	color: #fff;
	margin: 0 0 4px;
}

.bs-points .bs-d {
	display: block;
	font-family: 'Open Sans', sans-serif;
	font-size: 15px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.78);
	margin: 0;
}

/* Same arrow-btn behavior as site CTAs, teal fill */
.briann-spot .arrow-btn.bs-cta {
	position: relative;
	background: var(--teal-bright);
	color: #0e1b1f;
}

.briann-spot .arrow-btn.bs-cta:before {
	background: #0e1b1f;
}

.briann-spot .arrow-btn.bs-cta:after {
	border-right-color: #0e1b1f;
	border-top-color: #0e1b1f;
}

.briann-spot .arrow-btn-box:hover .arrow-btn.bs-cta:after {
	border-right-color: #0e1b1f;
	border-top-color: #0e1b1f;
}

@media only screen and (max-width: 900px) {
	.bs-grid {
		grid-template-columns: 1fr;
		grid-template-areas:
			"mark"
			"copy"
			"figure"
			"links";
		column-gap: 0;
		row-gap: 0;
	}

	.bs-figure {
		max-width: 460px;
		justify-self: start;
		margin-top: 32px;
		aspect-ratio: 4 / 5;
		min-height: 320px;
	}

	.bs-copy {
		max-width: none;
	}

	.bs-links {
		max-width: none;
		margin-top: 32px;
	}
}

@media only screen and (max-width: 520px) {
	.bs-mark {
		height: 40px;
		margin-bottom: 20px;
	}

	.bs-h2 {
		font-size: 28px;
		margin-bottom: 22px;
	}

	.bs-figure {
		max-width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bs-figure img {
		transition: none;
	}

	.bs-figure:hover img,
	.briann-spot:has(.bs-cta:hover) .bs-figure img {
		transform: none;
		box-shadow: 0 40px 80px -44px rgba(0, 0, 0, 0.7);
	}
}
