:root {
	--fm-black: #0B0B0B;
	--fm-charcoal: #151515;
	--fm-deep-charcoal: #1D1D1D;
	--fm-gold: #F0A61F;
	--fm-gold-dark: #D88D12;
	--fm-gold-soft: #F4B63A;
	--fm-cream: #F3EEE3;
	--fm-beige: #EDE4D6;
	--fm-offwhite: #F7F3EA;
	--fm-text-dark: #1A1A1A;
	--fm-text-light: #F5F2E8;
	--fm-border-soft: #D8CFC1;
}

* {
	box-sizing: border-box;
}

html {
	overflow-y: scroll;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--fm-cream);
	color: var(--fm-text-dark);
	font-family: "Inter", Arial, sans-serif;
	font-size: 15px;
	line-height: 1.55;
}

body.menu-is-open {
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

img,
svg {
	display: block;
	max-width: 100%;
}

svg {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

h1,
h2,
h3,
.btn,
.primary-nav {
	font-family: "Bebas Neue", Impact, sans-serif;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: uppercase;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

.container {
	width: min(100% - 64px, 1190px);
	margin: 0 auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	z-index: 1000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	background: var(--fm-gold);
	color: var(--fm-black);
	clip: auto;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 46px;
	padding: 12px 28px;
	border: 2px solid transparent;
	border-radius: 4px;
	font-family: "Inter", Arial, sans-serif;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
	transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
	transform: translateY(-1px);
}

.btn--gold {
	background: #F2AA22;
	color: #030303;
	box-shadow: none;
}

.btn--outline {
	background: rgba(0, 0, 0, 0.32);
	border-color: var(--fm-gold);
	color: var(--fm-text-light);
}

.btn--outline svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
	stroke: currentColor;
}

.site-header {
	position: sticky;
	z-index: 50;
	top: 0;
	background: #050505;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner {
	display: grid;
	grid-template-columns: minmax(250px, 1fr) auto minmax(190px, 1fr);
	align-items: center;
	gap: 22px;
	width: min(100% - 58px, 1230px);
	min-height: 78px;
	margin: 0 auto;
}

.site-header__brand {
	display: inline-flex;
	align-items: center;
	justify-self: start;
}

.site-logo--wordmark {
	width: 360px;
	max-height: 48px;
	object-fit: contain;
	object-position: left center;
}

.logo-placeholder--wordmark {
	display: inline-flex;
	align-items: baseline;
	gap: 9px;
	color: var(--fm-text-light);
	font-family: "Bebas Neue", Impact, sans-serif;
	font-size: 35px;
	line-height: 1;
	text-transform: uppercase;
}

.logo-placeholder--wordmark strong {
	font-weight: 400;
}

.logo-placeholder--wordmark span {
	color: var(--fm-gold);
	font-family: "Inter", Arial, sans-serif;
	font-size: 21px;
	font-weight: 800;
	letter-spacing: 4px;
}

.primary-nav {
	justify-self: center;
	color: var(--fm-text-light);
	font-size: 15px;
}

.primary-nav__list {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-nav a {
	position: relative;
	display: block;
	min-width: 58px;
	padding: 28px 0 24px;
	text-align: center;
	white-space: nowrap;
}

.primary-nav li:nth-child(3) a,
.primary-nav li:nth-child(5) a {
	min-width: 74px;
}

.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a,
.primary-nav .current-menu-ancestor > a,
.primary-nav .current_page_ancestor > a,
.primary-nav a:hover,
.primary-nav a:focus-visible {
	color: var(--fm-gold);
}

.primary-nav .current-menu-item > a::after,
.primary-nav .current_page_item > a::after,
.primary-nav .current-menu-ancestor > a::after,
.primary-nav .current_page_ancestor > a::after,
.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
	position: absolute;
	right: 0;
	bottom: 18px;
	left: 0;
	height: 3px;
	background: var(--fm-gold);
	content: "";
}

.site-header__cta {
	justify-self: end;
	min-height: 42px;
	padding-right: 24px;
	padding-left: 24px;
	font-family: "Inter", Arial, sans-serif;
	font-size: 13px;
	font-weight: 800;
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 4px;
	color: var(--fm-text-light);
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 100%;
	height: 2px;
	margin: 5px 0;
	background: currentColor;
}

.hero {
	position: relative;
	min-height: 435px;
	overflow: hidden;
	background-color: var(--fm-black);
}

.fm-hero {
	background-image:
		linear-gradient(90deg, rgba(11, 11, 11, 0.74) 0%, rgba(11, 11, 11, 0.5) 40%, rgba(11, 11, 11, 0.14) 72%),
		url("../images/hero-walk-light.jpeg");
	background-position: 74% center;
	background-repeat: no-repeat;
	background-size: 124% auto;
}

.hero::before {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.15));
	content: "";
	opacity: 0.62;
}

.hero::after {
	content: none;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.2));
}

.hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 280px;
	align-items: center;
	min-height: 435px;
	gap: 26px;
}

.hero__copy {
	max-width: 610px;
	color: var(--fm-text-light);
}

.hero h1 {
	margin-bottom: 10px;
	color: var(--fm-cream);
	font-size: 70px;
	line-height: 0.9;
	text-shadow:
		0.45px 0 0 currentColor,
		0 4px 18px rgba(0, 0, 0, 0.5);
	transform: none;
}

.hero h1 span {
	display: block;
}

.hero-title__primary {
	font-size: 80px;
	line-height: 0.88;
}

.hero-title__secondary {
	font-size: 54px;
	line-height: 0.9;
	transform: scaleX(0.94);
	transform-origin: left center;
}

.hero p {
	max-width: 410px;
	margin-bottom: 22px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.42;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.hero__actions .btn {
	min-width: 142px;
	min-height: 42px;
	padding: 11px 22px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 800;
}

.hero__actions .btn--outline {
	background: rgba(0, 0, 0, 0.22);
	border-color: var(--fm-gold);
}

.hero__actions .btn--outline svg {
	width: 11px;
	height: 11px;
}

.hero__emblem {
	justify-self: end;
	width: 280px;
	margin-top: 0;
}

.site-logo--emblem {
	width: 280px;
}

.logo-placeholder--emblem {
	position: relative;
	display: grid;
	place-items: center;
	width: 330px;
	min-height: 330px;
	padding: 96px 24px 44px;
	background: linear-gradient(180deg, #080808 0%, #020202 62%, #111 100%);
	clip-path: polygon(50% 0, 88% 15%, 96% 57%, 72% 92%, 50% 100%, 28% 92%, 4% 57%, 12% 15%);
	color: var(--fm-text-light);
	text-align: center;
	text-transform: uppercase;
	filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.48));
}

.logo-placeholder--emblem::before {
	position: absolute;
	top: 10px;
	width: 230px;
	height: 145px;
	background:
		radial-gradient(circle at 50% 80%, #020202 0 26%, transparent 27%),
		linear-gradient(135deg, transparent 0 28%, var(--fm-gold) 29% 64%, transparent 65%),
		linear-gradient(45deg, transparent 0 26%, var(--fm-gold-soft) 27% 68%, transparent 69%);
	clip-path: polygon(52% 0, 68% 24%, 87% 10%, 76% 46%, 94% 42%, 72% 90%, 28% 90%, 6% 42%, 24% 47%, 15% 14%, 36% 26%);
	content: "";
}

.logo-placeholder--emblem strong {
	position: relative;
	z-index: 1;
	display: block;
	margin-top: 60px;
	font-family: "Bebas Neue", Impact, sans-serif;
	font-size: 46px;
	line-height: 0.95;
}

.logo-placeholder--emblem em {
	position: relative;
	z-index: 1;
	color: var(--fm-gold);
	font-family: "Inter", Arial, sans-serif;
	font-size: 28px;
	font-style: normal;
	font-weight: 800;
	letter-spacing: 4px;
}

.logo-flame {
	position: absolute;
	top: 76px;
	z-index: 1;
	color: var(--fm-black);
	font-family: "Bebas Neue", Impact, sans-serif;
	font-size: 64px;
}

.value-strip {
	background: linear-gradient(180deg, #070707, #0c0c0c);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--fm-text-light);
}

.value-strip__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.value-item {
	display: grid;
	grid-template-columns: 62px 1fr;
	column-gap: 15px;
	row-gap: 3px;
	align-items: center;
	min-height: 82px;
	padding: 14px 24px;
	border-right: 1px solid rgba(216, 207, 193, 0.24);
}

.value-item:last-child {
	border-right: 0;
}

.icon--gold,
.value-item .icon {
	color: var(--fm-gold);
}

.value-item .icon {
	grid-row: 1 / span 2;
	align-self: center;
}

.value-item svg {
	width: 52px;
	height: 52px;
	stroke-width: 1.5;
}

.value-item h2 {
	grid-column: 2;
	margin-bottom: 3px;
	font-family: "Inter", Arial, sans-serif;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
}

.value-item p {
	grid-column: 2;
	margin-bottom: 0;
	font-size: 12px;
	line-height: 1.35;
}

.section {
	padding: 34px 0;
}

.section--light {
	background:
		radial-gradient(circle at 48% 0, rgba(240, 166, 31, 0.1), transparent 36%),
		var(--fm-offwhite);
}

.section--cream {
	background: var(--fm-cream);
}

.section-title--lined {
	display: grid;
	grid-template-columns: 74px auto 74px;
	align-items: center;
	justify-content: center;
	gap: 32px;
	margin-bottom: 26px;
	text-align: center;
}

.section-title--lined span {
	height: 2px;
	background: var(--fm-gold);
}

.section-title h2,
.section-heading h2,
.panel-heading h2,
.shop-strip h2,
.email-strip h2,
.site-footer h2 {
	margin-bottom: 0;
	color: var(--fm-black);
	font-size: 39px;
	line-height: 1;
}

.hero h1,
.section-title h2,
.section-heading h2,
.panel-heading h2,
.pathway-step h3,
.prayer-panel h2,
.shop-strip h2,
.email-strip h2 {
	transform: scaleX(0.92);
	transform-origin: left center;
}

.section-title--lined h2 {
	transform-origin: center center;
}

.pathway {
	border-bottom: 1px solid var(--fm-border-soft);
}

.pathway.section {
	padding-top: 22px;
	padding-bottom: 18px;
}

.pathway .section-title--lined {
	grid-template-columns: 58px auto 58px;
	gap: 24px;
	margin-bottom: 18px;
}

.pathway .section-title h2 {
	font-size: 34px;
}

.pathway__steps {
	display: grid;
	grid-template-columns: 1fr 35px 1fr 35px 1fr;
	align-items: center;
	gap: 16px;
}

.pathway-step {
	display: grid;
	grid-template-columns: 78px 1fr;
	align-items: center;
	gap: 14px;
}

.pathway-step__icon {
	display: grid;
	grid-row: 1 / span 2;
	place-items: center;
	width: 72px;
	height: 72px;
	background: radial-gradient(circle at 35% 28%, #202020, #050505 64%);
	border: 2px solid var(--fm-gold);
	border-radius: 50%;
	color: var(--fm-text-light);
	box-shadow: none;
}

.pathway-step__icon svg {
	width: 38px;
	height: 38px;
}

.pathway-step h3 {
	grid-column: 2;
	margin-bottom: 5px;
	font-size: 22px;
	line-height: 1;
}

.pathway-step p {
	grid-column: 2;
	margin-bottom: 0;
	font-size: 13px;
	line-height: 1.45;
}

.pathway__arrow {
	color: var(--fm-gold);
}

.pathway__arrow svg {
	width: 24px;
	height: 24px;
	stroke-width: 1.35;
}

.episodes-prayer {
	padding-top: 20px;
	padding-bottom: 10px;
}

.episodes-prayer__grid {
	display: grid;
	grid-template-columns: minmax(0, 640px) minmax(360px, 1fr);
	gap: 18px;
	align-items: stretch;
}

.section-heading,
.panel-heading,
.prayer-wall__heading {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 14px;
}

.section-heading h2,
.panel-heading h2,
.prayer-panel h2 {
	font-size: 27px;
}

.section-heading a,
.panel-heading a,
.prayer-wall__heading a {
	color: var(--fm-gold-dark);
	font-family: "Inter", Arial, sans-serif;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	white-space: nowrap;
}

.episode-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	align-items: stretch;
}

.episode-card,
.feature-panel,
.prayer-panel {
	overflow: hidden;
	background: rgba(237, 228, 214, 0.9);
	border: 1px solid rgba(216, 207, 193, 0.76);
	border-radius: 4px;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.45) inset;
}

.episode-card {
	display: grid;
	grid-template-rows: auto minmax(103px, 1fr);
	min-height: 0;
}

.episode-card__thumb {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.1)),
		radial-gradient(circle at 80% 35%, rgba(240, 166, 31, 0.28), transparent 28%),
		linear-gradient(135deg, #0b0b0b, #2c2c2c 55%, #050505);
	background-position: center;
	background-size: cover;
}

.episode-card__thumb::after {
	position: absolute;
	right: 20%;
	bottom: 0;
	width: 58px;
	height: 84%;
	background: linear-gradient(180deg, #090909, #1b1b1b);
	border-radius: 34px 34px 0 0;
	box-shadow: 0 -20px 0 -12px #111;
	content: "";
	opacity: 0.85;
}

.episode-card__thumb--image::after {
	opacity: 0.25;
}

.episode-card__overlay {
	position: absolute;
	z-index: 2;
	top: 12px;
	left: 12px;
	width: 124px;
	color: var(--fm-text-light);
	font-family: "Bebas Neue", Impact, sans-serif;
	text-transform: uppercase;
}

.episode-card__overlay strong {
	display: block;
	width: 132px;
	font-size: 29px;
	font-weight: 400;
	line-height: 0.9;
	text-shadow: none;
	transform: scaleX(0.88);
	transform-origin: left center;
}

.episode-card__overlay span {
	display: block;
	margin-top: 4px;
	color: var(--fm-gold);
	font-size: 12px;
	line-height: 0.95;
}

.play-badge {
	position: absolute;
	z-index: 3;
	right: 14px;
	bottom: 18px;
	display: grid;
	place-items: center;
	width: 27px;
	height: 27px;
	background: var(--fm-offwhite);
	border-radius: 50%;
	color: var(--fm-black);
}

.play-badge svg {
	width: 12px;
	height: 12px;
	fill: currentColor;
	stroke: currentColor;
}

.duration {
	position: absolute;
	z-index: 3;
	right: 7px;
	bottom: 3px;
	color: var(--fm-text-light);
	font-size: 11px;
	font-weight: 700;
}

.episode-card__body {
	display: grid;
	grid-template-rows: auto auto 1fr;
	padding: 9px 10px 10px;
}

.eyebrow {
	display: block;
	margin-bottom: 2px;
	font-size: 11px;
	font-weight: 800;
}

.episode-card h3 {
	min-height: 31px;
	margin-bottom: 5px;
	font-family: "Inter", Arial, sans-serif;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.28;
	text-transform: none;
}

.episode-card h3 a {
	color: inherit;
	text-decoration: none;
}

.episode-card h3 a:hover,
.episode-card h3 a:focus {
	color: var(--fm-gold-dark);
}

.episode-card p {
	margin-bottom: 0;
	font-size: 11px;
	line-height: 1.35;
}

.prayer-panel {
	align-self: stretch;
	padding: 14px 16px 10px;
}

.prayer-panel h2 {
	margin-bottom: 6px;
	color: var(--fm-black);
	line-height: 1;
}

.prayer-panel > p {
	max-width: 270px;
	margin-bottom: 8px;
	font-size: 12px;
	line-height: 1.34;
}

.prayer-panel .btn {
	min-height: 32px;
	margin-bottom: 12px;
	padding: 8px 16px;
	font-family: "Inter", Arial, sans-serif;
	font-size: 12px;
	font-weight: 800;
}

.prayer-wall__heading {
	margin-bottom: 6px;
}

.prayer-wall__heading h3 {
	margin-bottom: 0;
	font-size: 22px;
	line-height: 1;
}

.prayer-item {
	display: grid;
	grid-template-columns: 22px 1fr auto;
	gap: 10px;
	align-items: start;
	padding: 5px 0;
	border-top: 1px solid rgba(216, 207, 193, 0.7);
}

.prayer-item span {
	color: var(--fm-black);
}

.prayer-item svg {
	width: 16px;
	height: 16px;
}

.prayer-item p {
	margin-bottom: 0;
	font-size: 11px;
	line-height: 1.25;
}

.prayer-item em,
.prayer-item time {
	color: #3b3329;
	font-size: 11px;
	font-style: normal;
}

.panels-row {
	padding-top: 10px;
}

.panels-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.feature-panel {
	display: grid;
	position: relative;
	min-height: 174px;
}

.feature-panel--story,
.feature-panel--community {
	grid-template-columns: 1fr;
}

.feature-panel--story .feature-panel__image {
	order: 2;
}

.feature-panel__body {
	position: relative;
	z-index: 4;
	padding: 15px 15px 14px;
}

.feature-panel__image {
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	bottom: 0;
	width: 48%;
	min-height: 100%;
	background:
		radial-gradient(circle at 72% 48%, rgba(220, 178, 121, 0.24), transparent 62%),
		linear-gradient(90deg, rgba(237, 228, 214, 0), rgba(237, 228, 214, 0.56));
	background-repeat: no-repeat;
}

.feature-panel__image--person {
	width: 48%;
	background:
		url("../images/story-person.png") right bottom / auto 86% no-repeat,
		radial-gradient(circle at 82% 52%, rgba(207, 165, 106, 0.22), transparent 58%),
		linear-gradient(90deg, rgba(237, 228, 214, 0), rgba(237, 228, 214, 0.44));
}

.feature-panel__image--group {
	width: 62%;
	background:
		url("../images/community-group.png") right bottom / auto 76% no-repeat,
		radial-gradient(circle at 80% 52%, rgba(207, 165, 106, 0.2), transparent 60%),
		linear-gradient(90deg, rgba(237, 228, 214, 0), rgba(237, 228, 214, 0.38));
}

.panel-heading {
	position: relative;
	z-index: 3;
	margin-bottom: 10px;
}

.panel-heading h2 {
	font-size: 25px;
	line-height: 1;
	white-space: nowrap;
}

.feature-panel--story blockquote,
.feature-panel--story cite {
	max-width: 58%;
}

.feature-panel--community .feature-panel__body > p,
.feature-panel--community .check-list {
	max-width: 45%;
}

.feature-panel blockquote {
	margin: 0 0 9px;
	font-size: 13px;
	font-style: italic;
	font-weight: 700;
	line-height: 1.45;
}

.feature-panel cite {
	font-size: 12px;
	font-style: normal;
}

.feature-panel p {
	margin-bottom: 12px;
	font-size: 12px;
	line-height: 1.35;
}

.resource-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-bottom: 10px;
}

.resource-tile {
	display: grid;
	place-items: center;
	min-height: 92px;
	padding: 10px 8px;
	background: rgba(247, 243, 234, 0.7);
	border: 1px solid var(--fm-border-soft);
	border-radius: 5px;
	color: var(--fm-black);
	text-align: center;
}

.resource-tile span {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	margin-bottom: 7px;
	background: #080808;
	border-radius: 4px;
	color: var(--fm-gold);
}

.resource-tile svg {
	width: 29px;
	height: 29px;
}

.resource-tile strong {
	font-size: 11px;
	line-height: 1.18;
	text-transform: uppercase;
}

.check-list {
	display: grid;
	gap: 5px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.check-list li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
}

.check-list svg {
	width: 18px;
	height: 18px;
	padding: 3px;
	background: var(--fm-black);
	border-radius: 50%;
	color: var(--fm-text-light);
	stroke-width: 3;
}

.shop-strip,
.email-strip {
	background: var(--fm-cream);
}

.shop-strip__inner,
.email-strip__inner {
	overflow: hidden;
	background:
		radial-gradient(circle at 72% 50%, rgba(240, 166, 31, 0.17), transparent 30%),
		linear-gradient(90deg, #070707, #171717 58%, #050505);
	border: 1px solid rgba(216, 207, 193, 0.55);
	border-radius: 6px;
	color: var(--fm-text-light);
}

.shop-strip__inner {
	display: grid;
	position: relative;
	grid-template-columns: minmax(0, 1fr);
	align-items: center;
	gap: 24px;
	min-height: 176px;
	padding: 24px 24px;
	background-image:
		linear-gradient(90deg, rgba(3, 3, 3, 0.94) 0%, rgba(3, 3, 3, 0.78) 32%, rgba(3, 3, 3, 0.2) 58%, rgba(3, 3, 3, 0.08) 100%),
		url("../images/shopping-banner.png");
	background-position: right center;
	background-repeat: no-repeat;
	background-size: auto 100%;
}

.shop-strip h2,
.email-strip h2 {
	color: var(--fm-text-light);
	font-size: 31px;
}

.shop-strip p {
	margin-bottom: 14px;
	font-size: 13px;
}

.shop-strip__copy {
	position: relative;
	z-index: 1;
	max-width: 520px;
}

.shop-strip .btn {
	min-height: 38px;
	padding: 10px 20px;
	font-family: "Inter", Arial, sans-serif;
	font-size: 12px;
	font-weight: 800;
}

.email-strip {
	padding-top: 4px;
	padding-bottom: 0;
}

.email-strip__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 560px;
	align-items: center;
	gap: 28px;
	min-height: 96px;
	padding: 15px 32px;
}

.email-strip__copy {
	display: flex;
	align-items: center;
	gap: 20px;
}

.email-strip__icon {
	display: grid;
	flex: 0 0 auto;
	place-items: center;
	width: 68px;
	height: 68px;
	border: 3px solid var(--fm-gold);
	border-radius: 50%;
	color: var(--fm-gold);
}

.email-strip__icon svg {
	width: 35px;
	height: 35px;
}

.email-strip p {
	margin-bottom: 0;
	font-size: 13px;
}

.signup-form__row {
	display: grid;
	grid-template-columns: 1fr 140px;
}

.signup-form input {
	width: 100%;
	min-height: 42px;
	padding: 0 16px;
	background: var(--fm-offwhite);
	border: 0;
	border-radius: 4px 0 0 4px;
	color: var(--fm-text-dark);
	font: inherit;
}

.signup-form .btn {
	min-height: 42px;
	padding: 8px 14px;
	border-radius: 0 4px 4px 0;
	font-family: "Inter", Arial, sans-serif;
	font-size: 12px;
	font-weight: 800;
}

.signup-form p {
	margin-top: 7px;
	font-size: 11px;
}

.signup-form--embed .fm-hub {
	margin: 0;
}

.signup-form--embed .fm-hub-email-signup {
	padding: 0;
	background: transparent;
	border: 0;
}

.signup-form--embed > p {
	color: var(--fm-text-light);
}

.stay-connected-page {
	padding-top: 42px;
}

.stay-connected-page__panel {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
	gap: 28px;
	align-items: center;
	padding: 28px;
	color: var(--fm-text-light);
	background:
		radial-gradient(circle at 72% 50%, rgba(240, 166, 31, 0.17), transparent 30%),
		linear-gradient(90deg, #070707, #171717 58%, #050505);
	border: 1px solid rgba(216, 207, 193, 0.28);
	border-radius: 6px;
}

.stay-connected-page__copy {
	display: flex;
	align-items: center;
	gap: 20px;
}

.stay-connected-page__copy h2 {
	margin-bottom: 6px;
	color: var(--fm-text-light);
	font-size: 38px;
	line-height: 0.95;
}

.stay-connected-page__copy p,
.stay-connected-page__form > p {
	margin-bottom: 0;
	color: var(--fm-text-light);
	font-size: 14px;
	line-height: 1.45;
}

.stay-connected-page__form .fm-hub {
	margin: 0;
}

.site-footer {
	background: #060606;
	color: rgba(245, 242, 232, 0.84);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 330px 1fr;
	gap: 34px;
	width: min(100% - 64px, 1190px);
	margin: 0 auto;
	padding: 22px 0 18px;
}

.site-footer__brand {
	padding-right: 34px;
	border-right: 1px solid rgba(216, 207, 193, 0.18);
}

.site-footer .logo-placeholder--wordmark {
	font-size: 27px;
}

.site-footer .logo-placeholder--wordmark span {
	font-size: 15px;
	letter-spacing: 3px;
}

.social-links {
	display: flex;
	gap: 12px;
	margin-top: 14px;
}

.social-links a {
	display: grid;
	place-items: center;
	width: 29px;
	height: 29px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: var(--fm-text-light);
}

.social-links svg {
	width: 15px;
	height: 15px;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.site-footer h2 {
	margin-bottom: 6px;
	color: var(--fm-text-light);
	font-family: "Inter", Arial, sans-serif;
	font-size: 10px;
	font-weight: 800;
}

.footer-links a {
	display: block;
	margin-bottom: 3px;
	font-size: 11px;
	line-height: 1.3;
}

.site-footer__bottom {
	display: flex;
	justify-content: flex-end;
	gap: 12px;
	width: min(100% - 64px, 1190px);
	margin: -38px auto 0;
	padding-bottom: 20px;
	font-size: 13px;
}

.site-footer__bottom p {
	margin-bottom: 0;
}

.entry-card {
	max-width: 760px;
	padding: 30px;
	background: var(--fm-offwhite);
	border: 1px solid var(--fm-border-soft);
	border-radius: 6px;
}

.podcast-archive {
	padding-top: 42px;
}

.archive-header {
	max-width: 780px;
	margin-bottom: 28px;
}

.archive-header__eyebrow {
	margin-bottom: 7px;
	color: var(--fm-gold-dark);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.archive-header h1 {
	margin-bottom: 10px;
	font-size: clamp(54px, 8vw, 82px);
	line-height: 0.92;
}

.archive-header p {
	max-width: 660px;
	font-size: 17px;
	line-height: 1.55;
}

.podcast-archive__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.resource-archive {
	padding-top: 42px;
}

.resource-paths {
	margin-bottom: 28px;
}

.resource-paths .section-heading {
	margin-bottom: 12px;
}

.resource-paths__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.resource-path-card {
	position: relative;
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	gap: 10px 14px;
	align-items: center;
	min-height: 132px;
	padding: 18px;
	background: rgba(237, 228, 214, 0.9);
	border: 1px solid rgba(216, 207, 193, 0.76);
	border-radius: 6px;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.45) inset;
	transition: transform 160ms ease, border-color 160ms ease;
}

.resource-path-card:hover,
.resource-path-card:focus-visible {
	border-color: var(--fm-gold);
	transform: translateY(-1px);
}

.resource-path-card__icon {
	display: grid;
	grid-row: 1 / span 2;
	place-items: center;
	width: 58px;
	height: 58px;
	color: var(--fm-gold);
	background: var(--fm-black);
	border: 2px solid var(--fm-gold);
	border-radius: 50%;
}

.resource-path-card__icon svg {
	width: 31px;
	height: 31px;
}

.resource-path-card strong {
	display: block;
	font-family: "Bebas Neue", Impact, sans-serif;
	font-size: 28px;
	font-weight: 400;
	line-height: 0.95;
	text-transform: uppercase;
}

.resource-path-card em {
	display: block;
	margin: 0;
	color: #3b3329;
	font-size: 13px;
	font-style: normal;
	line-height: 1.35;
}

.resource-archive__resources-heading {
	margin-top: 4px;
}

.resource-archive__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	align-items: stretch;
}

.resource-card {
	display: grid;
	grid-template-rows: auto 1fr;
	overflow: hidden;
	background: rgba(237, 228, 214, 0.9);
	border: 1px solid rgba(216, 207, 193, 0.76);
	border-radius: 6px;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.45) inset;
}

.resource-card__image,
.resource-card__icon {
	display: grid;
	place-items: center;
	aspect-ratio: 16 / 9;
	color: var(--fm-gold);
	text-decoration: none;
	background:
		radial-gradient(circle at 78% 22%, rgba(240, 166, 31, 0.22), transparent 30%),
		linear-gradient(135deg, #060606 0%, #171717 100%);
}

.resource-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.resource-card__icon svg {
	width: 58px;
	height: 58px;
	stroke-width: 1.7;
}

.resource-card__body {
	display: grid;
	grid-template-rows: auto auto 1fr auto;
	padding: 16px;
}

.resource-card__type {
	margin-bottom: 8px;
	color: var(--fm-gold-dark);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.resource-card h2 {
	margin-bottom: 8px;
	font-size: 31px;
	line-height: 0.96;
}

.resource-card h2 a {
	color: inherit;
	text-decoration: none;
}

.resource-card h2 a:hover,
.resource-card h2 a:focus {
	color: var(--fm-gold-dark);
}

.resource-card__body > p:last-of-type {
	margin-bottom: 16px;
	font-size: 14px;
	line-height: 1.45;
}

.resource-card .btn {
	justify-self: start;
	min-height: 36px;
	padding: 9px 14px;
	font-size: 12px;
}

.start-archive {
	padding-top: 42px;
}

.start-kickoff {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 24px;
	align-items: center;
	margin-bottom: 30px;
	padding: 24px;
	color: var(--fm-text-light);
	background:
		radial-gradient(circle at 78% 36%, rgba(240, 166, 31, 0.17), transparent 34%),
		linear-gradient(90deg, #070707, #171717 62%, #050505);
	border: 1px solid rgba(216, 207, 193, 0.26);
	border-radius: 6px;
}

.start-kickoff h2 {
	max-width: 680px;
	margin-bottom: 8px;
	color: var(--fm-text-light);
	font-size: 42px;
	line-height: 0.95;
}

.start-kickoff p {
	max-width: 760px;
	margin-bottom: 0;
	color: rgba(245, 242, 232, 0.9);
	font-size: 15px;
	line-height: 1.48;
}

.start-kickoff .archive-header__eyebrow {
	color: var(--fm-gold);
}

.start-kickoff__actions {
	display: grid;
	gap: 10px;
	min-width: 210px;
}

.start-kickoff__actions .btn {
	min-height: 40px;
	padding: 10px 16px;
	font-size: 12px;
}

.start-kickoff__actions .btn--outline-dark {
	border-color: var(--fm-gold);
	color: var(--fm-text-light);
}

.start-section {
	margin-bottom: 32px;
}

.start-archive__grid {
	display: grid;
	gap: 16px;
}

.start-card {
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr);
	gap: 18px;
	padding: 20px;
	background: rgba(237, 228, 214, 0.9);
	border: 1px solid rgba(216, 207, 193, 0.76);
	border-radius: 6px;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.45) inset;
}

.start-card__marker {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	color: var(--fm-gold);
	font-family: "Bebas Neue", Impact, sans-serif;
	font-size: 38px;
	line-height: 1;
	background: var(--fm-black);
	border: 2px solid var(--fm-gold);
	border-radius: 50%;
}

.start-card__body {
	display: grid;
	gap: 10px;
}

.start-card h2 {
	margin-bottom: 0;
	font-size: 38px;
	line-height: 0.95;
}

.start-card h2 a {
	color: inherit;
	text-decoration: none;
}

.start-card h2 a:hover,
.start-card h2 a:focus {
	color: var(--fm-gold-dark);
}

.start-card p {
	max-width: 760px;
	margin-bottom: 0;
	font-size: 15px;
	line-height: 1.48;
}

.start-card__scripture {
	color: #3b3329;
	font-weight: 800;
}

.start-card__next {
	max-width: 780px;
	padding: 12px 14px;
	background: rgba(247, 243, 234, 0.72);
	border: 1px solid var(--fm-border-soft);
	border-radius: 4px;
}

.start-card__next strong {
	display: block;
	margin-bottom: 4px;
	color: var(--fm-gold-dark);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.start-card__related {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.start-card__related li {
	padding: 6px 8px;
	font-size: 12px;
	background: rgba(247, 243, 234, 0.7);
	border: 1px solid var(--fm-border-soft);
	border-radius: 4px;
}

.start-card__related span {
	font-weight: 800;
}

.start-card .btn {
	justify-self: start;
	min-height: 36px;
	padding: 9px 14px;
	font-size: 12px;
}

.start-path {
	margin-top: 34px;
}

.start-path__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.start-path-card {
	position: relative;
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	gap: 10px 14px;
	align-items: center;
	min-height: 150px;
	padding: 18px;
	background: rgba(237, 228, 214, 0.9);
	border: 1px solid rgba(216, 207, 193, 0.76);
	border-radius: 6px;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.45) inset;
	transition: transform 160ms ease, border-color 160ms ease;
}

.start-path-card:hover,
.start-path-card:focus-visible {
	border-color: var(--fm-gold);
	transform: translateY(-1px);
}

.start-path-card__number {
	position: absolute;
	top: 10px;
	right: 10px;
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	color: var(--fm-black);
	font-size: 12px;
	font-weight: 800;
	background: var(--fm-gold);
	border-radius: 50%;
}

.start-path-card__icon {
	display: grid;
	grid-row: 1 / span 2;
	place-items: center;
	width: 58px;
	height: 58px;
	color: var(--fm-gold);
	background: var(--fm-black);
	border: 2px solid var(--fm-gold);
	border-radius: 50%;
}

.start-path-card__icon svg {
	width: 31px;
	height: 31px;
}

.start-path-card strong {
	display: block;
	font-family: "Bebas Neue", Impact, sans-serif;
	font-size: 30px;
	font-weight: 400;
	line-height: 0.95;
	text-transform: uppercase;
}

.start-path-card em {
	display: block;
	margin: 0;
	color: #3b3329;
	font-size: 13px;
	font-style: normal;
	line-height: 1.35;
}

.devotional-archive {
	padding-top: 42px;
}

.devotional-archive__grid {
	display: grid;
	gap: 16px;
}

.devotional-card {
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr);
	gap: 18px;
	padding: 20px;
	background: rgba(237, 228, 214, 0.9);
	border: 1px solid rgba(216, 207, 193, 0.76);
	border-radius: 6px;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.45) inset;
}

.devotional-card__icon {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	color: var(--fm-gold);
	background: var(--fm-black);
	border: 2px solid var(--fm-gold);
	border-radius: 50%;
}

.devotional-card__icon svg {
	width: 34px;
	height: 34px;
}

.devotional-card__body {
	display: grid;
	gap: 10px;
}

.devotional-card__week {
	margin-bottom: 0;
	color: var(--fm-gold-dark);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.devotional-card h2 {
	margin-bottom: 0;
	font-size: 38px;
	line-height: 0.95;
}

.devotional-card h2 a {
	color: inherit;
	text-decoration: none;
}

.devotional-card h2 a:hover,
.devotional-card h2 a:focus {
	color: var(--fm-gold-dark);
}

.devotional-card p {
	max-width: 760px;
	margin-bottom: 0;
	font-size: 15px;
	line-height: 1.48;
}

.devotional-card__scripture {
	color: #3b3329;
	font-weight: 800;
}

.devotional-card__prompt {
	max-width: 780px;
	padding: 12px 14px;
	background: rgba(247, 243, 234, 0.72);
	border: 1px solid var(--fm-border-soft);
	border-radius: 4px;
}

.devotional-card__prompt strong {
	display: block;
	margin-bottom: 4px;
	color: var(--fm-gold-dark);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.devotional-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.devotional-card .btn {
	min-height: 36px;
	padding: 9px 14px;
	font-size: 12px;
}

.reading-plan-archive {
	padding-top: 42px;
}

.reading-plan-archive__grid {
	display: grid;
	gap: 16px;
}

.reading-plan-card {
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr);
	gap: 18px;
	padding: 20px;
	background: rgba(237, 228, 214, 0.9);
	border: 1px solid rgba(216, 207, 193, 0.76);
	border-radius: 6px;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.45) inset;
}

.reading-plan-card__icon {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	color: var(--fm-gold);
	background: var(--fm-black);
	border: 2px solid var(--fm-gold);
	border-radius: 50%;
}

.reading-plan-card__icon svg {
	width: 34px;
	height: 34px;
}

.reading-plan-card__body {
	display: grid;
	gap: 10px;
}

.reading-plan-card__length {
	margin-bottom: 0;
	color: var(--fm-gold-dark);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.reading-plan-card h2 {
	margin-bottom: 0;
	font-size: 38px;
	line-height: 0.95;
}

.reading-plan-card h2 a {
	color: inherit;
	text-decoration: none;
}

.reading-plan-card h2 a:hover,
.reading-plan-card h2 a:focus {
	color: var(--fm-gold-dark);
}

.reading-plan-card p {
	max-width: 760px;
	margin-bottom: 0;
	font-size: 15px;
	line-height: 1.48;
}

.reading-plan-card__season {
	color: #3b3329;
	font-weight: 800;
}

.reading-plan-card__prompt {
	max-width: 780px;
	padding: 12px 14px;
	background: rgba(247, 243, 234, 0.72);
	border: 1px solid var(--fm-border-soft);
	border-radius: 4px;
}

.reading-plan-card__prompt strong {
	display: block;
	margin-bottom: 4px;
	color: var(--fm-gold-dark);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.reading-plan-card .btn {
	justify-self: start;
	min-height: 36px;
	padding: 9px 14px;
	font-size: 12px;
}

.prayer-wall-page {
	padding-top: 42px;
}

.prayer-wall-page__layout {
	display: grid;
	grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
	gap: 22px;
	align-items: start;
}

.prayer-wall-page__form,
.prayer-wall-page__requests {
	padding: 22px;
	background: rgba(237, 228, 214, 0.9);
	border: 1px solid rgba(216, 207, 193, 0.76);
	border-radius: 6px;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.45) inset;
}

.prayer-wall-page__form h2,
.prayer-wall-page__requests h2 {
	margin-bottom: 8px;
	font-size: 34px;
	line-height: 0.95;
}

.prayer-wall-page__form > p {
	margin-bottom: 18px;
	font-size: 14px;
	line-height: 1.45;
}

.prayer-wall-page .fm-hub {
	margin: 0;
}

.prayer-wall-page .fm-hub-form {
	max-width: none;
	padding: 0;
	background: transparent;
	border: 0;
}

.prayer-wall-page .fm-hub-field label {
	color: var(--fm-black);
	font-size: 13px;
	font-weight: 800;
}

.prayer-wall-page .fm-hub-field input[type="text"],
.prayer-wall-page .fm-hub-field input[type="email"],
.prayer-wall-page .fm-hub-field select,
.prayer-wall-page .fm-hub-field textarea {
	color: var(--fm-black);
	background: var(--fm-offwhite);
	border: 1px solid var(--fm-border-soft);
	border-radius: 4px;
}

.prayer-wall-page .fm-hub-help {
	color: #5e554b;
}

.prayer-wall-page .fm-hub-button {
	min-height: 40px;
	padding: 10px 16px;
	color: var(--fm-black);
	font-family: "Inter", Arial, sans-serif;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	background: var(--fm-gold);
	border: 1px solid var(--fm-gold-dark);
	border-radius: 4px;
	box-shadow: 0 2px 0 var(--fm-gold-dark);
}

.prayer-wall-page .fm-hub-button:hover,
.prayer-wall-page .fm-hub-button:focus {
	background: var(--fm-gold-soft);
}

.prayer-wall-page .fm-hub-grid {
	grid-template-columns: 1fr;
	gap: 12px;
}

.prayer-wall-page .fm-hub-card {
	background: rgba(247, 243, 234, 0.72);
	border: 1px solid var(--fm-border-soft);
	border-radius: 5px;
	box-shadow: none;
}

.prayer-wall-page .fm-hub-card__body {
	padding: 16px;
}

.prayer-wall-page .fm-hub-meta {
	color: var(--fm-gold-dark);
	font-size: 12px;
	font-weight: 800;
}

.prayer-wall-page .fm-hub-card__summary {
	margin-bottom: 10px;
	font-size: 14px;
	line-height: 1.45;
}

.prayer-wall-page .fm-hub-prayer-byline,
.prayer-wall-page .fm-hub-prayer-count {
	color: #3b3329;
}

.prayer-wall-page .fm-hub-notice {
	max-width: none;
	border-radius: 4px;
}

.story-page {
	padding-top: 42px;
}

.story-page__layout {
	display: grid;
	grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
	gap: 22px;
	align-items: start;
}

.story-page__form,
.story-page__stories {
	padding: 22px;
	background: rgba(237, 228, 214, 0.9);
	border: 1px solid rgba(216, 207, 193, 0.76);
	border-radius: 6px;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.45) inset;
}

.story-page__form h2,
.story-page__stories h2 {
	margin-bottom: 8px;
	font-size: 34px;
	line-height: 0.95;
}

.story-page__form > p {
	margin-bottom: 18px;
	font-size: 14px;
	line-height: 1.45;
}

.story-page .fm-hub {
	margin: 0;
}

.story-page .fm-hub-form {
	max-width: none;
	padding: 0;
	background: transparent;
	border: 0;
}

.story-page .fm-hub-field label {
	color: var(--fm-black);
	font-size: 13px;
	font-weight: 800;
}

.story-page .fm-hub-field input[type="text"],
.story-page .fm-hub-field input[type="email"],
.story-page .fm-hub-field select,
.story-page .fm-hub-field textarea {
	color: var(--fm-black);
	background: var(--fm-offwhite);
	border: 1px solid var(--fm-border-soft);
	border-radius: 4px;
}

.story-page .fm-hub-help {
	color: #5e554b;
}

.story-page .fm-hub-button {
	min-height: 40px;
	padding: 10px 16px;
	color: var(--fm-black);
	font-family: "Inter", Arial, sans-serif;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	background: var(--fm-gold);
	border: 1px solid var(--fm-gold-dark);
	border-radius: 4px;
	box-shadow: 0 2px 0 var(--fm-gold-dark);
}

.story-page .fm-hub-button:hover,
.story-page .fm-hub-button:focus {
	background: var(--fm-gold-soft);
}

.story-page .fm-hub-grid {
	grid-template-columns: 1fr;
	gap: 12px;
}

.story-page .fm-hub-card {
	background: rgba(247, 243, 234, 0.72);
	border: 1px solid var(--fm-border-soft);
	border-radius: 5px;
	box-shadow: none;
}

.story-page .fm-hub-card__image img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.story-page .fm-hub-card__body {
	padding: 16px;
}

.story-page .fm-hub-meta {
	color: var(--fm-gold-dark);
	font-size: 12px;
	font-weight: 800;
}

.story-page .fm-hub-card__title {
	font-size: 30px;
	line-height: 0.98;
}

.story-page .fm-hub-card__summary {
	margin-bottom: 12px;
	font-size: 14px;
	line-height: 1.45;
}

.story-page .fm-hub-testimony-byline {
	margin: 0 0 12px;
	color: #3b3329;
	font-size: 13px;
	font-weight: 800;
}

.story-page .fm-hub-notice {
	max-width: none;
	border-radius: 4px;
}

.question-page {
	padding-top: 42px;
}

.question-page__layout {
	display: grid;
	grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
	gap: 22px;
	align-items: start;
}

.question-page__form,
.question-page__answers {
	padding: 22px;
	background: rgba(237, 228, 214, 0.9);
	border: 1px solid rgba(216, 207, 193, 0.76);
	border-radius: 6px;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.45) inset;
}

.question-page__form h2,
.question-page__answers h2 {
	margin-bottom: 8px;
	font-size: 34px;
	line-height: 0.95;
}

.question-page__form > p {
	margin-bottom: 18px;
	font-size: 14px;
	line-height: 1.45;
}

.question-page .fm-hub {
	margin: 0;
}

.question-page .fm-hub-form {
	max-width: none;
	padding: 0;
	background: transparent;
	border: 0;
}

.question-page .fm-hub-field label {
	color: var(--fm-black);
	font-size: 13px;
	font-weight: 800;
}

.question-page .fm-hub-field input[type="text"],
.question-page .fm-hub-field input[type="email"],
.question-page .fm-hub-field textarea {
	color: var(--fm-black);
	background: var(--fm-offwhite);
	border: 1px solid var(--fm-border-soft);
	border-radius: 4px;
}

.question-page .fm-hub-help {
	color: #5e554b;
}

.question-page .fm-hub-button {
	min-height: 40px;
	padding: 10px 16px;
	color: var(--fm-black);
	font-family: "Inter", Arial, sans-serif;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	background: var(--fm-gold);
	border: 1px solid var(--fm-gold-dark);
	border-radius: 4px;
	box-shadow: 0 2px 0 var(--fm-gold-dark);
}

.question-page .fm-hub-button:hover,
.question-page .fm-hub-button:focus {
	background: var(--fm-gold-soft);
}

.question-page .fm-hub-grid {
	grid-template-columns: 1fr;
	gap: 12px;
}

.question-page .fm-hub-card {
	background: rgba(247, 243, 234, 0.72);
	border: 1px solid var(--fm-border-soft);
	border-radius: 5px;
	box-shadow: none;
}

.question-page .fm-hub-card__body {
	padding: 16px;
}

.question-page .fm-hub-meta,
.question-page .fm-hub-question-label {
	color: var(--fm-gold-dark);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.question-page .fm-hub-card__title {
	margin-bottom: 10px;
	font-size: 30px;
	line-height: 0.98;
}

.question-page .fm-hub-card__summary,
.question-page .fm-hub-question-answer {
	margin-bottom: 12px;
	font-size: 14px;
	line-height: 1.45;
}

.question-page .fm-hub-question-answer {
	padding-left: 12px;
	border-left: 3px solid var(--fm-gold);
}

.question-page .fm-hub-question-byline {
	margin: 0;
	color: #3b3329;
	font-size: 13px;
	font-weight: 800;
}

.question-page .fm-hub-notice {
	max-width: none;
	border-radius: 4px;
}

.episode-card h2 {
	min-height: 31px;
	margin-bottom: 5px;
	font-family: "Inter", Arial, sans-serif;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.25;
}

.episode-card h2 a {
	color: inherit;
	text-decoration: none;
}

.episode-card h2 a:hover,
.episode-card h2 a:focus {
	color: var(--fm-gold-dark);
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 26px;
}

.nav-links a,
.nav-links span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	min-height: 36px;
	padding: 8px 11px;
	color: var(--fm-black);
	font-family: "Inter", Arial, sans-serif;
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
	background: rgba(237, 228, 214, 0.9);
	border: 1px solid var(--fm-border-soft);
	border-radius: 4px;
}

.nav-links .current,
.nav-links a:hover,
.nav-links a:focus {
	background: var(--fm-gold);
	border-color: var(--fm-gold-dark);
}

.podcast-resource {
	max-width: 1120px;
	margin: 0 auto;
}

.podcast-resource__header {
	max-width: 820px;
	margin-bottom: 22px;
}

.podcast-resource__eyebrow {
	margin-bottom: 8px;
	color: var(--fm-gold-dark);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.podcast-resource__header h1 {
	margin-bottom: 10px;
	font-size: 56px;
	line-height: 0.95;
}

.podcast-resource__lead {
	font-size: 18px;
	line-height: 1.55;
}

.podcast-resource__player {
	overflow: hidden;
	margin-bottom: 24px;
	background: var(--fm-black);
	border: 1px solid rgba(216, 207, 193, 0.55);
	border-radius: 6px;
}

.podcast-resource__player iframe {
	display: block;
	width: 100%;
}

.podcast-resource__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 290px;
	gap: 24px;
	align-items: start;
}

.podcast-resource__main,
.podcast-resource__aside {
	background: rgba(247, 243, 234, 0.72);
	border: 1px solid var(--fm-border-soft);
	border-radius: 6px;
}

.podcast-resource__main {
	padding: 24px;
}

.podcast-resource__aside {
	display: grid;
	gap: 10px;
	padding: 18px;
}

.podcast-resource__aside h2,
.podcast-resource__section h2 {
	margin-bottom: 10px;
	font-size: 28px;
}

.podcast-resource__image {
	overflow: hidden;
	margin: 0 0 20px;
	border-radius: 6px;
}

.podcast-resource__image img {
	display: block;
	width: 100%;
	height: auto;
}

.podcast-resource__section {
	margin-bottom: 22px;
}

.podcast-resource__section:last-child {
	margin-bottom: 0;
}

.btn--outline-dark {
	border-color: var(--fm-black);
	background: transparent;
	color: var(--fm-black);
}

.devotional-single {
	max-width: 1120px;
	margin: 0 auto;
}

.devotional-single__header {
	max-width: 820px;
	margin-bottom: 22px;
}

.devotional-single__eyebrow {
	margin-bottom: 8px;
	color: var(--fm-gold-dark);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.devotional-single__header h1 {
	margin-bottom: 10px;
	font-size: 56px;
	line-height: 0.95;
}

.devotional-single__scripture {
	color: #3b3329;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.45;
}

.devotional-single__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 290px;
	gap: 24px;
	align-items: start;
}

.devotional-single__main,
.devotional-single__aside {
	background: rgba(247, 243, 234, 0.72);
	border: 1px solid var(--fm-border-soft);
	border-radius: 6px;
}

.devotional-single__main {
	padding: 24px;
}

.devotional-single__aside {
	display: grid;
	gap: 10px;
	padding: 18px;
}

.devotional-single__aside h2,
.devotional-single__section h2 {
	margin-bottom: 10px;
	font-size: 28px;
}

.devotional-single__aside h3 {
	margin-bottom: 8px;
	font-size: 24px;
	line-height: 1;
}

.devotional-single__image {
	overflow: hidden;
	margin: 0 0 20px;
	border-radius: 6px;
}

.devotional-single__image img {
	display: block;
	width: 100%;
	height: auto;
}

.devotional-single__section {
	margin-bottom: 22px;
}

.devotional-single__section:last-child {
	margin-bottom: 0;
}

.devotional-single__reading {
	font-size: 17px;
	line-height: 1.62;
}

.devotional-single__related {
	margin-top: 8px;
	padding-top: 14px;
	border-top: 1px solid var(--fm-border-soft);
}

.devotional-single__related p {
	margin-bottom: 8px;
	font-size: 13px;
	line-height: 1.4;
}

.reading-plan-single {
	max-width: 1120px;
	margin: 0 auto;
}

.reading-plan-single__header {
	max-width: 820px;
	margin-bottom: 22px;
}

.reading-plan-single__eyebrow {
	margin-bottom: 8px;
	color: var(--fm-gold-dark);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.reading-plan-single__header h1 {
	margin-bottom: 10px;
	font-size: 56px;
	line-height: 0.95;
}

.reading-plan-single__season {
	color: #3b3329;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.45;
}

.reading-plan-single__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 290px;
	gap: 24px;
	align-items: start;
}

.reading-plan-single__main,
.reading-plan-single__aside {
	background: rgba(247, 243, 234, 0.72);
	border: 1px solid var(--fm-border-soft);
	border-radius: 6px;
}

.reading-plan-single__main {
	padding: 24px;
}

.reading-plan-single__aside {
	display: grid;
	gap: 10px;
	padding: 18px;
}

.reading-plan-single__aside h2,
.reading-plan-single__section h2 {
	margin-bottom: 10px;
	font-size: 28px;
}

.reading-plan-single__aside h3 {
	margin-bottom: 8px;
	font-size: 24px;
	line-height: 1;
}

.reading-plan-single__image {
	overflow: hidden;
	margin: 0 0 20px;
	border-radius: 6px;
}

.reading-plan-single__image img {
	display: block;
	width: 100%;
	height: auto;
}

.reading-plan-single__section {
	margin-bottom: 22px;
}

.reading-plan-single__section:last-child {
	margin-bottom: 0;
}

.reading-plan-single__intro {
	font-size: 17px;
	line-height: 1.62;
}

.reading-plan-single__related {
	margin-top: 8px;
	padding-top: 14px;
	border-top: 1px solid var(--fm-border-soft);
}

.reading-plan-single__related p {
	margin-bottom: 8px;
	font-size: 13px;
	line-height: 1.4;
}

@media (max-width: 1120px) {
	.site-header__inner {
		grid-template-columns: 1fr auto auto;
	}

	.primary-nav__list {
		gap: 18px;
	}

	.hero__inner {
		grid-template-columns: minmax(0, 1fr) 260px;
	}

	.hero h1 {
		font-size: 60px;
	}

	.logo-placeholder--emblem {
		width: 290px;
		min-height: 290px;
	}

	.value-item {
		padding-right: 18px;
	}

	.episodes-prayer__grid,
	.shop-strip__inner,
	.email-strip__inner {
		grid-template-columns: 1fr;
	}

	.prayer-panel {
		display: grid;
		grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
		gap: 18px 22px;
	}

	.prayer-panel .btn {
		align-self: start;
		justify-self: start;
	}

	.prayer-wall {
		grid-row: span 3;
	}

	.panels-grid {
		grid-template-columns: 1fr 1fr;
	}

	.feature-panel--community {
		grid-column: 1 / -1;
	}
}

@media (max-width: 920px) {
	.container,
	.site-header__inner,
	.site-footer__inner,
	.site-footer__bottom {
		width: min(100% - 36px, 1190px);
	}

	.site-header__inner {
		display: flex;
		min-height: 68px;
	}

	.logo-placeholder--wordmark {
		font-size: 29px;
	}

	.logo-placeholder--wordmark span {
		font-size: 16px;
		letter-spacing: 3px;
	}

	.menu-toggle {
		display: block;
		margin-left: auto;
	}

	.primary-nav {
		position: fixed;
		top: 68px;
		right: 0;
		left: 0;
		width: 100vw;
		display: none;
		background: #050505;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
	}

	.primary-nav.is-open {
		display: block;
	}

	.primary-nav__list {
		display: grid;
		gap: 0;
		width: min(100% - 36px, 480px);
		margin: 0 auto;
		padding: 12px 0;
	}

	.primary-nav a {
		padding: 14px 0;
		font-size: 22px;
	}

	.primary-nav a::after,
	.primary-nav .current-menu-item > a::after,
	.primary-nav .current_page_item > a::after,
	.primary-nav .current-menu-ancestor > a::after,
	.primary-nav .current_page_ancestor > a::after {
		display: none;
	}

	.site-header__cta {
		display: none;
	}

	.hero__inner {
		grid-template-columns: 1fr;
		padding: 46px 0 34px;
	}

	.hero__copy {
		max-width: 620px;
	}

	.hero__emblem {
		justify-self: start;
		width: 230px;
	}

	.site-logo--emblem {
		width: 230px;
	}

	.logo-placeholder--emblem {
		width: 230px;
		min-height: 230px;
		padding-top: 70px;
	}

	.logo-placeholder--emblem::before {
		width: 170px;
		height: 105px;
	}

	.logo-placeholder--emblem strong {
		margin-top: 42px;
		font-size: 34px;
	}

	.logo-placeholder--emblem em {
		font-size: 18px;
		letter-spacing: 3px;
	}

	.logo-flame {
		top: 54px;
		font-size: 46px;
	}

	.value-strip__grid,
	.episode-grid,
	.resource-archive__grid,
	.resource-paths__grid,
	.start-path__grid,
	.panels-grid,
	.footer-links {
		grid-template-columns: 1fr 1fr;
	}

	.value-item:nth-child(2) {
		border-right: 0;
	}

	.value-item:nth-child(n+3) {
		border-top: 1px solid rgba(216, 207, 193, 0.24);
	}

	.pathway__steps {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.pathway__arrow {
		display: none;
	}

	.pathway-step {
		grid-template-columns: 78px minmax(0, 360px);
		justify-content: center;
		max-width: 520px;
		margin: 0 auto;
	}

	.pathway-step p {
		max-width: 360px;
	}

	.prayer-wall-page__layout {
		grid-template-columns: 1fr;
	}

	.story-page__layout {
		grid-template-columns: 1fr;
	}

	.question-page__layout {
		grid-template-columns: 1fr;
	}

	.start-kickoff {
		grid-template-columns: 1fr;
	}

	.start-kickoff__actions {
		display: flex;
		flex-wrap: wrap;
	}

	.devotional-single__layout {
		grid-template-columns: 1fr;
	}

	.reading-plan-single__layout {
		grid-template-columns: 1fr;
	}

	.stay-connected-page__panel {
		grid-template-columns: 1fr;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.site-footer__brand {
		border-right: 0;
	}

	.site-footer__bottom {
		justify-content: flex-start;
		margin-top: 0;
	}
}

@media (max-width: 640px) {
	body {
		font-size: 14px;
	}

	.container,
	.site-header__inner,
	.site-footer__inner,
	.site-footer__bottom {
		width: min(100% - 28px, 1190px);
	}

	.btn {
		width: 100%;
		min-height: 44px;
	}

	.logo-placeholder--wordmark {
		gap: 6px;
		font-size: 24px;
	}

	.logo-placeholder--wordmark span {
		font-size: 13px;
		letter-spacing: 2px;
	}

	.hero {
		min-height: auto;
	}

	.fm-hero {
		background-image:
			linear-gradient(180deg, rgba(11, 11, 11, 0.96) 0%, rgba(11, 11, 11, 0.82) 34%, rgba(11, 11, 11, 0.48) 68%, rgba(11, 11, 11, 0.88) 100%),
			url("../images/hero-walk-light.jpeg");
		background-position: center top;
		background-size: cover;
	}

	.hero::after {
		display: none;
	}

	.hero__inner {
		min-height: auto;
		padding: 24px 0 28px;
	}

	.hero h1 {
		margin-bottom: 14px;
	}

	.hero-title__primary {
		font-size: 54px;
		line-height: 0.9;
	}

	.hero-title__secondary {
		font-size: 38px;
		line-height: 0.92;
	}

	.hero p {
		max-width: none;
		margin-bottom: 20px;
		font-size: 15px;
	}

	.hero__emblem {
		justify-self: center;
		width: min(230px, 70vw);
		margin-top: 18px;
	}

	.hero__actions,
	.email-strip__copy,
	.stay-connected-page__copy {
		display: grid;
	}

	.value-strip__grid,
	.episode-grid,
	.resource-archive__grid,
	.resource-paths__grid,
	.start-path__grid,
	.panels-grid,
	.footer-links,
	.resource-list,
	.product-mockups,
	.signup-form__row {
		grid-template-columns: 1fr;
	}

	.resource-path-card {
		grid-template-columns: 54px minmax(0, 1fr);
		min-height: auto;
		padding: 16px;
	}

	.resource-path-card__icon {
		width: 54px;
		height: 54px;
	}

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

	.start-kickoff {
		padding: 20px;
	}

	.start-kickoff h2 {
		font-size: 34px;
	}

	.start-kickoff__actions {
		display: grid;
		min-width: 0;
	}

	.start-path-card {
		grid-template-columns: 54px minmax(0, 1fr);
		min-height: auto;
		padding: 16px;
	}

	.start-path-card__icon {
		width: 54px;
		height: 54px;
	}

	.devotional-card,
	.devotional-single__layout,
	.reading-plan-card,
	.reading-plan-single__layout {
		grid-template-columns: 1fr;
	}

	.value-item {
		border-right: 0;
		border-top: 1px solid rgba(216, 207, 193, 0.24);
	}

	.value-item:first-child {
		border-top: 0;
	}

	.section-title--lined {
		grid-template-columns: 42px auto 42px;
		gap: 16px;
	}

	.section-title h2 {
		font-size: 32px;
	}

	.pathway-step {
		grid-template-columns: 78px 1fr;
		gap: 14px;
	}

	.pathway-step__icon {
		width: 72px;
		height: 72px;
	}

	.pathway-step__icon svg {
		width: 38px;
		height: 38px;
	}

	.episodes-prayer__grid {
		gap: 14px;
	}

	.prayer-panel {
		display: block;
	}

	.feature-panel--story,
	.feature-panel--community {
		grid-template-columns: 1fr;
	}

	.feature-panel--story .feature-panel__image {
		order: 0;
	}

	.feature-panel__image {
		min-height: 150px;
	}

	.shop-strip__inner,
	.email-strip__inner {
		padding: 20px;
	}

	.shop-strip h2,
	.email-strip h2 {
		font-size: 28px;
	}

	.signup-form input,
	.signup-form .btn {
		border-radius: 4px;
	}

	.site-footer__bottom {
		display: block;
	}
}
