.bbn-need-directory,
.bbn-featured-needs {
	background: #07142f;
	color: #fff;
	padding: clamp(42px, 7vw, 92px) 20px;
}

.bbn-need-shell {
	margin: 0 auto;
	max-width: 1200px;
}

.bbn-need-eyebrow,
.bbn-need-card__category {
	color: #5de0d7;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.bbn-need-directory__breadcrumb {
	display: flex;
	font-size: 0.9rem;
	gap: 10px;
	margin-bottom: 36px;
}

.bbn-need-directory__breadcrumb a,
.bbn-featured-needs__header > a {
	color: #bcd0f1;
}

.bbn-need-directory__hero {
	max-width: 820px;
}

.bbn-need-directory__hero h1,
.bbn-featured-needs h2 {
	color: #fff;
	font-size: clamp(2rem, 5vw, 4rem);
	letter-spacing: -0.04em;
	line-height: 1.05;
	margin: 8px 0 16px;
}

.bbn-need-directory__hero > p:last-child,
.bbn-featured-needs__header p:last-child {
	color: #c9d7ef;
	font-size: 1.08rem;
	line-height: 1.7;
}

.bbn-need-directory__group {
	margin-top: 54px;
}

.bbn-need-directory__group h2 {
	color: #fff;
}

.bbn-need-grid {
	display: grid;
	gap: 22px;
}

.bbn-need-grid--2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bbn-need-grid--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bbn-need-grid--4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bbn-need-card {
	background: #fff;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 18px;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.15);
	color: #10203c;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.bbn-need-card__image img {
	aspect-ratio: 16 / 9;
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.bbn-need-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px;
}

.bbn-need-card__body h3 {
	font-size: 1.3rem;
	line-height: 1.25;
	margin: 7px 0 12px;
}

.bbn-need-card__title-link {
	color: #10203c;
	text-decoration: none;
}

.bbn-need-card__body > p:not(.bbn-need-card__category) {
	color: #53627a;
	line-height: 1.6;
}

.bbn-need-card__category {
	color: #087c70;
	margin: 0;
}

.bbn-need-card__cta {
	color: #3158e8;
	font-weight: 750;
	margin-top: auto;
	padding-top: 14px;
}

.bbn-featured-needs__header {
	align-items: end;
	display: flex;
	gap: 30px;
	justify-content: space-between;
	margin-bottom: 34px;
}

.bbn-featured-needs__header > div {
	max-width: 760px;
}

.bbn-featured-needs__header h2 {
	font-size: clamp(1.9rem, 4vw, 3rem);
}

.bbn-featured-needs__header > a {
	flex: none;
	font-weight: 700;
}

.bbn-need-directory__empty {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 18px;
	margin-top: 40px;
	padding: 30px;
}

.bbn-need-directory__empty a,
.bbn-need-directory__pagination a,
.bbn-need-directory__pagination .current {
	background: #4968f6;
	border-radius: 8px;
	color: #fff;
	display: inline-block;
	margin: 3px;
	padding: 10px 14px;
}

.bbn-need-directory__pagination {
	margin-top: 44px;
	text-align: center;
}

.bbn-need-directory__finder { background: #4968f6; border-radius: 10px; color: #fff; display: inline-block; font-weight: 800; margin-top: 14px; padding: 13px 18px; text-decoration: none; }
.bbn-need-directory__browse { margin-top: 46px; }
.bbn-need-directory__recent,
.bbn-need-directory__method { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 18px; margin-top: 44px; padding: clamp(22px,4vw,38px); }
.bbn-need-directory__recent ul { list-style: none; margin: 0; padding: 0; }
.bbn-need-directory__recent li { align-items: center; border-top: 1px solid rgba(255,255,255,.16); display: flex; gap: 18px; justify-content: space-between; padding: 13px 0; }
.bbn-need-directory__recent time { color: #b9c6dd; font-size: .9rem; white-space: nowrap; }
.bbn-need-directory__learn { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 18px; }
.bbn-need-directory__learn a { color: #68e0d7; font-weight: 750; }

.bbn-need-directory__pagination .current {
	background: #fff;
	color: #10203c;
}

.bbn-need-card a:focus-visible,
.bbn-featured-needs a:focus-visible,
.bbn-need-directory a:focus-visible {
	outline: 3px solid #5de0d7;
	outline-offset: 3px;
}

@media (max-width: 900px) {

	.bbn-need-grid--3,
	.bbn-need-grid--4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 620px) {

	.bbn-need-grid,
	.bbn-need-grid--2,
	.bbn-need-grid--3,
	.bbn-need-grid--4 {
		grid-template-columns: 1fr;
	}

	.bbn-featured-needs__header {
		align-items: start;
		flex-direction: column;
	}
}

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

	.bbn-need-directory *,
	.bbn-featured-needs * {
		scroll-behavior: auto !important;
		transition: none !important;
	}
}

#bbn-browse-needs,
#bbn-how-best,
#bbn-recent-needs{
	color:#fff;
}