.fbc-ministry-hub-page,
.fbc-ministry-hub {
	box-sizing: border-box;
}

.fbc-ministry-hub *,
.fbc-ministry-hub *::before,
.fbc-ministry-hub *::after {
	box-sizing: inherit;
}

.fbc-ministry-hub {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
	padding: 32px 0 72px;
}

.fbc-hub-hero {
	position: relative;
	display: grid;
	align-items: end;
	min-height: 280px;
	margin-bottom: 24px;
	overflow: hidden;
	border-radius: 18px;
	background: #1d2630;
	color: #fff;
}

.fbc-hub-hero__media,
.fbc-hub-hero__media::after {
	position: absolute;
	inset: 0;
}

.fbc-hub-hero__media::after {
	content: "";
	background: linear-gradient(90deg, rgba(14, 19, 24, .9), rgba(14, 19, 24, .45));
}

.fbc-hub-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fbc-hub-hero__content {
	position: relative;
	z-index: 1;
	max-width: 760px;
	padding: clamp(32px, 6vw, 72px);
}

.fbc-hub-hero__title {
	margin: 0;
	font-size: clamp(2.25rem, 5vw, 4.5rem);
	line-height: 1.02;
	color: inherit;
}

.fbc-hub-hero__summary {
	max-width: 680px;
	margin: 18px 0 0;
	font-size: clamp(1.05rem, 2vw, 1.35rem);
	line-height: 1.55;
	color: inherit;
}

.fbc-hub-nav {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	position: sticky;
	top: 0;
	z-index: 20;
	margin: 0 0 36px;
	padding: 14px;
	border: 1px solid rgba(0, 0, 0, .1);
	border-radius: 12px;
	background: rgba(255, 255, 255, .96);
	backdrop-filter: blur(8px);
}

.fbc-hub-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 8px 14px;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 600;
}

.fbc-hub-nav a:hover,
.fbc-hub-nav a:focus-visible {
	background: rgba(0, 0, 0, .06);
}

.fbc-hub-section {
	scroll-margin-top: 90px;
	padding: clamp(38px, 6vw, 72px) 0;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.fbc-hub-section:last-child {
	border-bottom: 0;
}

.fbc-hub-section h2 {
	margin: 0 0 24px;
	font-size: clamp(1.8rem, 3vw, 2.8rem);
	line-height: 1.1;
}

.fbc-hub-kicker,
.fbc-hub-card__eyebrow {
	margin: 0 0 8px;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	opacity: .68;
}

.fbc-hub-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.fbc-hub-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, .1);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.fbc-hub-card__image {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: rgba(0, 0, 0, .06);
}

.fbc-hub-card__image img,
.fbc-hub-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fbc-hub-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px;
}

.fbc-hub-card__title {
	margin: 0 0 12px;
	font-size: 1.35rem;
	line-height: 1.2;
}

.fbc-hub-card__title a {
	color: inherit;
	text-decoration: none;
}

.fbc-hub-card__summary {
	margin: 0 0 22px;
	line-height: 1.55;
}

.fbc-hub-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	min-height: 44px;
	margin-top: auto;
	padding: 10px 18px;
	border-radius: 8px;
	background: #1d2630;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
}

.fbc-hub-button:hover,
.fbc-hub-button:focus-visible {
	color: #fff;
	filter: brightness(1.12);
}

.fbc-hub-prose > :first-child {
	margin-top: 0;
}

.fbc-hub-prose > :last-child {
	margin-bottom: 0;
}

@media (max-width: 900px) {
	.fbc-hub-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.fbc-ministry-hub {
		width: min(100% - 24px, 1180px);
		padding-top: 18px;
	}

	.fbc-hub-hero {
		min-height: 240px;
		border-radius: 12px;
	}

	.fbc-hub-hero__content {
		padding: 28px 22px;
	}

	.fbc-hub-nav {
		position: static;
	}

	.fbc-hub-card-grid {
		grid-template-columns: 1fr;
	}
}
