:root {
	--aof-ink: #211c1b;
	--aof-paper: #fffaf3;
	--aof-cream: #f4e9d8;
	--aof-red: #c92b2b;
	--aof-blue: #44aeb6;
	--aof-line: #dfd1c0;
	--aof-muted: #675c55;
	--aof-heading: "Newsreader", Georgia, serif;
	--aof-sans: "DM Sans", Arial, sans-serif;
}

body {
	color: var(--aof-ink);
	background: var(--aof-paper);
	font-family: var(--aof-sans);
}

body,
button,
input,
select,
optgroup,
textarea {
	font-family: var(--aof-sans);
}

h1,
h2,
h3,
h4,
h5,
h6,
.entry-title,
.post-main-title {
	font-family: var(--aof-heading);
}

.aof-wrap,
.aof-header-inner {
	width: min(1160px, calc(100% - 48px));
	margin-inline: auto;
}

.aof-site-header {
	position: relative;
	z-index: 50;
	background: var(--aof-paper);
	border-bottom: 1px solid var(--aof-line);
}

.aof-header-inner {
	min-height: 126px;
	display: flex;
	align-items: center;
	gap: 32px;
}

.aof-brand {
	flex: 0 0 auto;
}

.aof-brand img,
.aof-brand .custom-logo {
	display: block;
	width: auto;
	height: auto;
	max-width: 230px;
	max-height: 116px;
}

.aof-primary-nav {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-left: auto;
}

.aof-primary-nav ul {
	display: flex;
	align-items: center;
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.aof-primary-nav li {
	position: relative;
}

.aof-primary-nav a {
	color: var(--aof-ink);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
}

.aof-primary-nav a:hover,
.aof-primary-nav a:focus,
.aof-primary-nav .current-menu-item > a {
	color: var(--aof-red);
}

.aof-primary-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: -18px;
	min-width: 240px;
	display: none;
	align-items: stretch;
	gap: 0;
	padding: 12px 0;
	background: var(--aof-paper);
	border: 1px solid var(--aof-line);
	box-shadow: 0 18px 35px rgba(33, 28, 27, .12);
}

.aof-primary-nav .sub-menu a {
	display: block;
	padding: 8px 18px;
	font-weight: 500;
}

.aof-primary-nav li:hover > .sub-menu,
.aof-primary-nav li:focus-within > .sub-menu {
	display: block;
}

.aof-header-search {
	padding-left: 20px;
	border-left: 1px solid var(--aof-line);
}

.aof-header-search .search-form {
	display: flex;
}

.aof-header-search .search-field {
	width: 110px;
	padding: 8px 4px;
	border: 0;
	border-bottom: 1px solid var(--aof-line);
	background: transparent;
}

.aof-header-search .search-submit {
	padding: 8px 10px;
	border: 0;
	background: transparent;
	color: var(--aof-red);
}

.aof-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	margin-left: auto;
	padding: 10px;
	border: 1px solid var(--aof-line);
	background: transparent;
}

.aof-menu-toggle span[aria-hidden="true"] {
	display: block;
	height: 2px;
	margin: 5px 0;
	background: var(--aof-ink);
}

.aof-homepage {
	background: var(--aof-paper);
}

.aof-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
	gap: 36px;
	padding-block: 44px 36px;
}

.aof-hero-feature,
.aof-question-feature {
	position: relative;
	overflow: hidden;
	background: #352925;
}

.aof-hero-feature {
	min-height: 430px;
	display: flex;
	align-items: flex-end;
	padding: 30px;
}

.aof-cover-link {
	position: absolute;
	inset: 0;
	z-index: 3;
}

.aof-cover-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.aof-image-shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(150deg, rgba(20, 15, 14, .05) 20%, rgba(20, 15, 14, .9) 100%);
}

.aof-hero-copy,
.aof-question-copy {
	position: relative;
	z-index: 2;
	color: #fffaf3;
}

.aof-hero-copy {
	max-width: 700px;
}

.aof-hero-copy h1 {
	margin: 8px 0 12px;
	color: inherit;
	font-size: clamp(42px, 5.2vw, 72px);
	font-weight: 600;
	line-height: .98;
}

.aof-hero-copy p {
	max-width: 590px;
	margin: 0 0 20px;
	font-size: 17px;
}

.aof-hero-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 17px;
	color: var(--aof-ink);
	background: #fffaf3;
	font-size: 14px;
	font-weight: 600;
}

.aof-welcome {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 26px 4px;
}

.aof-welcome h2,
.aof-section-header h2,
.aof-pathway-section h2,
.aof-gospel-invite h2 {
	margin: 0;
	color: var(--aof-ink);
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 600;
	line-height: 1.05;
}

.aof-welcome p,
.aof-gospel-invite p,
.aof-post-card p {
	color: var(--aof-muted);
}

.aof-welcome p {
	margin: 18px 0 22px;
	font-size: 17px;
}

.aof-eyebrow {
	display: block;
	margin-bottom: 9px;
	color: var(--aof-red);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.aof-hero-copy .aof-eyebrow,
.aof-question-copy .aof-eyebrow {
	color: #fffaf3;
}

.aof-text-link {
	color: var(--aof-red);
	font-weight: 600;
	text-decoration: none;
}

.aof-pathway-section {
	padding-block: 34px 38px;
	border-block: 1px solid var(--aof-line);
}

.aof-pathway-section h2 {
	margin-bottom: 24px;
	text-align: center;
	font-size: clamp(30px, 3vw, 40px);
}

.aof-pathways {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
}

.aof-pathway {
	min-height: 146px;
	display: flex;
	flex-direction: column;
	padding: 24px;
	color: var(--aof-ink);
	border: 1px solid var(--aof-line);
	text-decoration: none;
	transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.aof-pathway:hover,
.aof-pathway:focus {
	border-color: var(--aof-red);
	background: rgba(201, 43, 43, .04);
	transform: translateY(-3px);
}

.aof-pathway > span {
	margin-bottom: 8px;
	color: var(--aof-red);
	font-weight: 600;
}

.aof-pathway strong {
	font-family: var(--aof-heading);
	font-size: 25px;
	font-weight: 600;
}

.aof-pathway small {
	margin-top: 7px;
	color: var(--aof-muted);
	font-size: 14px;
}

.aof-content-section {
	padding-block: 52px 56px;
}

.aof-section-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 24px;
}

.aof-section-header h2 {
	font-size: clamp(34px, 4vw, 46px);
}

.aof-questions-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
	gap: 24px;
}

.aof-question-feature {
	min-height: 375px;
	display: flex;
	align-items: flex-end;
	padding: 26px;
}

.aof-question-copy h3 {
	margin: 0;
	color: inherit;
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 600;
	line-height: 1.04;
}

.aof-question-list {
	border-top: 1px solid var(--aof-line);
}

.aof-question-list a {
	display: grid;
	grid-template-columns: 36px 1fr auto;
	align-items: center;
	gap: 12px;
	padding: 19px 4px;
	color: var(--aof-ink);
	border-bottom: 1px solid var(--aof-line);
	text-decoration: none;
}

.aof-question-list span,
.aof-question-list b {
	color: var(--aof-red);
}

.aof-question-list strong {
	font-family: var(--aof-heading);
	font-size: 20px;
	font-weight: 600;
}

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

.aof-post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.aof-post-card {
	margin: 0;
}

.aof-card-image {
	width: 100%;
	aspect-ratio: 16 / 10;
	margin-bottom: 16px;
	object-fit: cover;
}

.aof-post-card h3 {
	margin: 8px 0 0;
	font-size: 25px;
	font-weight: 600;
	line-height: 1.12;
}

.aof-post-card h3 a {
	color: var(--aof-ink);
	text-decoration: none;
}

.aof-post-card p {
	margin: 10px 0 0;
}

.aof-depth-section {
	border-top: 1px solid var(--aof-line);
}

.aof-collections {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}

.aof-collections > div {
	padding-top: 18px;
	border-top: 3px solid var(--aof-red);
}

.aof-collections > div:nth-child(even) {
	border-top-color: var(--aof-blue);
}

.aof-collections h3 {
	margin: 0 0 7px;
	font-size: 24px;
	font-weight: 600;
}

.aof-collections a {
	display: block;
	padding: 11px 0;
	color: var(--aof-muted);
	border-bottom: 1px solid var(--aof-line);
	text-decoration: none;
}

.aof-collections a:hover,
.aof-collections a:focus {
	color: var(--aof-red);
}

.aof-gospel-invite {
	display: grid;
	grid-template-columns: 110px 1fr auto;
	align-items: center;
	gap: 26px;
	padding-block: 38px;
}

.aof-gospel-invite img {
	width: 104px;
	height: 88px;
	object-fit: contain;
}

.aof-gospel-invite h2 {
	font-size: clamp(30px, 3.5vw, 42px);
}

.aof-gospel-invite p {
	margin: 8px 0 0;
}

.aof-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 19px;
	color: #fff;
	background: var(--aof-red);
	font-weight: 600;
	text-decoration: none;
}

.aof-button:hover,
.aof-button:focus {
	color: #fff;
	background: #a91f1f;
}

.aof-site-footer {
	color: #f8eee4;
	background: #211c1b;
}

.aof-footer-grid {
	display: grid;
	grid-template-columns: 1.5fr repeat(3, 1fr);
	gap: 48px;
	padding-block: 56px 50px;
}

.aof-footer-brand p {
	max-width: 390px;
	margin: 14px 0 0;
	color: #f8eee4;
	font-family: var(--aof-heading);
	font-size: clamp(30px, 3.1vw, 43px);
	font-weight: 600;
	line-height: 1.03;
	letter-spacing: -.02em;
}

.aof-footer-brand p em {
	color: #e34d4d;
	font-weight: 600;
}

.aof-footer-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #cfc0b5;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.aof-footer-eyebrow::before {
	width: 32px;
	height: 2px;
	content: "";
	background: #e34d4d;
}

.aof-footer-column h2 {
	margin: 7px 0 16px;
	color: #f8eee4;
	font-family: var(--aof-heading);
	font-size: 23px;
	font-weight: 600;
}

.aof-footer-column > a {
	display: block;
	padding: 7px 0;
	color: #cfc0b5;
	text-decoration: none;
}

.aof-footer-column > a:hover,
.aof-footer-column > a:focus {
	color: #fff;
}

.aof-footer-social ul {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 15px 0 0;
	padding: 0;
	list-style: none;
}

.aof-footer-social a {
	color: #f8eee4;
	text-decoration: none;
}

.aof-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .16);
}

.aof-footer-bottom .aof-wrap {
	min-height: 70px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.aof-footer-bottom p {
	margin: 0;
	color: #aa9d94;
	font-size: 13px;
}

.aof-footer-bottom a {
	color: #f8eee4;
	font-size: 13px;
	text-decoration: none;
}

@media (max-width: 1060px) {
	.aof-primary-nav ul {
		gap: 14px;
	}

	.aof-primary-nav a {
		font-size: 14px;
	}

	.aof-header-search {
		display: none;
	}

	.aof-hero {
		grid-template-columns: 1.2fr .8fr;
	}
}

@media (max-width: 820px) {
	.aof-wrap,
	.aof-header-inner {
		width: min(100% - 32px, 1160px);
	}

	.aof-header-inner {
		min-height: 82px;
	}

	.aof-brand img,
	.aof-brand .custom-logo {
		max-width: 174px;
		max-height: 82px;
	}

	.aof-menu-toggle {
		display: block;
	}

	.aof-primary-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		padding: 16px;
		background: var(--aof-paper);
		border-bottom: 1px solid var(--aof-line);
		box-shadow: 0 18px 35px rgba(33, 28, 27, .1);
	}

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

	.aof-primary-nav ul {
		display: block;
	}

	.aof-primary-nav li {
		border-bottom: 1px solid var(--aof-line);
	}

	.aof-primary-nav a {
		display: block;
		padding: 11px 4px;
	}

	.aof-primary-nav .sub-menu {
		position: static;
		display: block;
		padding: 0 0 8px 18px;
		border: 0;
		box-shadow: none;
	}

	.aof-primary-nav .sub-menu li {
		border: 0;
	}

	.aof-hero,
	.aof-questions-layout {
		grid-template-columns: 1fr;
	}

	.aof-hero-feature {
		min-height: 390px;
	}

	.aof-welcome {
		padding: 8px 0 2px;
	}

	.aof-pathways,
	.aof-post-grid {
		grid-template-columns: 1fr;
	}

	.aof-pathway {
		min-height: 0;
	}

	.aof-collections {
		grid-template-columns: 1fr 1fr;
	}

	.aof-gospel-invite {
		grid-template-columns: 82px 1fr;
	}

	.aof-gospel-invite img {
		width: 78px;
		height: 68px;
	}

	.aof-gospel-invite .aof-button {
		grid-column: 1 / -1;
	}

	.aof-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 34px;
	}
}

@media (max-width: 520px) {
	.aof-hero {
		padding-top: 26px;
		gap: 24px;
	}

	.aof-hero-feature {
		min-height: 360px;
		padding: 22px;
	}

	.aof-hero-copy h1 {
		font-size: 42px;
	}

	.aof-section-header {
		align-items: flex-start;
		flex-direction: column;
	}

	.aof-question-feature {
		min-height: 330px;
	}

	.aof-collections {
		grid-template-columns: 1fr;
	}

	.aof-footer-grid {
		grid-template-columns: 1fr;
		padding-block: 42px;
	}

	.aof-footer-bottom .aof-wrap {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		padding-block: 18px;
	}
}

/* Category exploration */
body.category.right-sidebar .neo-magazine-main-wrapper .neo-magazine-container-wrapper,
body.category.left-sidebar .neo-magazine-main-wrapper .neo-magazine-container-wrapper,
body.category.no-sidebar .neo-magazine-main-wrapper .neo-magazine-container-wrapper {
	display: block;
}

body.category.right-sidebar .neo-magazine-main-wrapper .neo-magazine-container-wrapper #primary.aof-category-main,
body.category.left-sidebar .neo-magazine-main-wrapper .neo-magazine-container-wrapper #primary.aof-category-main,
body.category.no-sidebar .neo-magazine-main-wrapper .neo-magazine-container-wrapper #primary.aof-category-main {
	width: 100%;
	max-width: none;
	padding-inline: 0;
}

.category .neo-magazine-main-wrapper > .section-wrapper {
	width: min(1420px, calc(100% - 72px));
	max-width: none;
	margin-inline: auto;
}

.aof-category-main {
	width: 100%;
	padding-block: 36px 64px;
}

.aof-category-hero {
	max-width: 900px;
	padding: 24px 0 42px;
}

.aof-category-hero h1 {
	margin: 8px 0 14px;
	color: var(--aof-ink);
	font-size: clamp(52px, 7vw, 86px);
	font-weight: 600;
	line-height: .96;
}

.aof-category-description {
	max-width: 740px;
	color: var(--aof-muted);
	font-family: var(--aof-heading);
	font-size: 22px;
	line-height: 1.45;
}

.aof-category-description p {
	margin: 0;
}

.aof-category-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 380px);
	align-items: start;
	gap: clamp(48px, 5vw, 78px);
}

.aof-category-heading {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 20px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--aof-line);
}

.aof-category-heading h2 {
	margin: 0;
	font-size: 35px;
	font-weight: 600;
}

.aof-category-heading span {
	color: var(--aof-muted);
	font-size: 13px;
}

.aof-archive-list {
	display: grid;
}

.aof-archive-card {
	display: grid;
	grid-template-columns: minmax(220px, 310px) minmax(0, 1fr);
	gap: 28px;
	margin: 0;
	padding-block: 30px;
	border-bottom: 1px solid var(--aof-line);
}

.aof-archive-image {
	display: block;
}

.aof-archive-image img {
	width: 100%;
	height: 100%;
	min-height: 210px;
	object-fit: cover;
}

.aof-archive-copy {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: center;
}

.aof-archive-copy h2 {
	margin: 5px 0 10px;
	font-size: clamp(27px, 3vw, 37px);
	font-weight: 600;
	line-height: 1.05;
}

.aof-archive-copy h2 a {
	color: var(--aof-ink);
	text-decoration: none;
}

.aof-archive-copy p {
	margin: 0 0 13px;
	color: var(--aof-muted);
}

.aof-category-results .navigation.pagination {
	margin-top: 30px;
}

.aof-category-sidebar-module {
	padding: 28px 0;
	border-top: 1px solid var(--aof-line);
}

.aof-category-sidebar-module:first-child {
	padding-top: 0;
	border-top: 0;
}

.aof-category-sidebar-module h2 {
	margin: 0 0 15px;
	font-size: 29px;
	font-weight: 600;
	line-height: 1.06;
}

.aof-topic-links {
	display: grid;
}

.aof-topic-links a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 11px 0;
	color: var(--aof-muted);
	border-bottom: 1px solid var(--aof-line);
	text-decoration: none;
}

.aof-topic-links a:hover,
.aof-topic-links a:focus {
	color: var(--aof-red);
}

.aof-topic-links small {
	min-width: 25px;
	padding: 2px 6px;
	color: var(--aof-muted);
	background: var(--aof-cream);
	text-align: center;
}

.aof-discovery-paths {
	display: grid;
	gap: 10px;
}

.aof-discovery-paths a {
	display: grid;
	gap: 4px;
	padding: 15px;
	color: var(--aof-ink);
	border: 1px solid var(--aof-line);
	text-decoration: none;
}

.aof-discovery-paths a:hover,
.aof-discovery-paths a:focus {
	border-color: var(--aof-red);
	background: rgba(201, 43, 43, .04);
}

.aof-discovery-paths strong {
	font-family: var(--aof-heading);
	font-size: 20px;
	font-weight: 600;
}

.aof-discovery-paths span {
	color: var(--aof-muted);
	font-size: 13px;
}

.aof-category-sidebar .aof-prayer-module {
	margin-top: 4px;
}

@media (max-width: 1100px) {
	.category .neo-magazine-main-wrapper > .section-wrapper {
		width: min(100% - 48px, 1060px);
	}

	.aof-category-layout {
		grid-template-columns: minmax(0, 1fr) 320px;
		gap: 38px;
	}

	.aof-archive-card {
		grid-template-columns: 230px minmax(0, 1fr);
		gap: 22px;
	}
}

@media (max-width: 820px) {
	.category .neo-magazine-main-wrapper > .section-wrapper {
		width: min(100% - 32px, 760px);
	}

	.aof-category-layout {
		grid-template-columns: 1fr;
	}

	.aof-category-sidebar {
		margin-top: 18px;
	}
}

@media (max-width: 580px) {
	.aof-category-hero {
		padding-bottom: 28px;
	}

	.aof-category-hero h1 {
		font-size: 52px;
	}

	.aof-archive-card {
		grid-template-columns: 1fr;
		gap: 17px;
	}

	.aof-archive-image img {
		min-height: 0;
		aspect-ratio: 16 / 10;
	}
}

/* Standard page exploration */
body.page.right-sidebar .neo-magazine-main-wrapper .neo-magazine-container-wrapper,
body.page.left-sidebar .neo-magazine-main-wrapper .neo-magazine-container-wrapper,
body.page.no-sidebar .neo-magazine-main-wrapper .neo-magazine-container-wrapper {
	display: block;
}

body.page.right-sidebar .neo-magazine-main-wrapper .neo-magazine-container-wrapper #primary.aof-page-main,
body.page.left-sidebar .neo-magazine-main-wrapper .neo-magazine-container-wrapper #primary.aof-page-main,
body.page.no-sidebar .neo-magazine-main-wrapper .neo-magazine-container-wrapper #primary.aof-page-main {
	width: 100%;
	max-width: none;
	padding-inline: 0;
}

.page .neo-magazine-main-wrapper > .section-wrapper {
	width: min(1420px, calc(100% - 72px));
	max-width: none;
	margin-inline: auto;
}

.aof-page-main {
	width: 100%;
	padding-block: 34px 64px;
}

.aof-page-layout {
	display: grid;
	grid-template-columns: minmax(0, 900px) minmax(340px, 380px);
	align-items: start;
	justify-content: space-between;
	gap: clamp(48px, 5vw, 80px);
}

.aof-content-page {
	min-width: 0;
	margin: 0;
}

.aof-page-header {
	margin-bottom: 30px;
}

.aof-page-header h1 {
	margin: 8px 0 0;
	color: var(--aof-ink);
	font-size: clamp(50px, 7vw, 82px);
	font-weight: 600;
	line-height: .97;
}

.aof-page-image {
	margin-bottom: 38px;
}

.aof-page-image img {
	display: block;
	width: 100%;
	height: auto;
}

.aof-page-sidebar .aof-sidebar-module {
	padding-block: 28px;
}

.aof-page-sidebar .aof-sidebar-module:first-child {
	padding-top: 0;
}

.aof-sidebar-posts {
	display: grid;
}

.aof-sidebar-posts > a {
	display: grid;
	grid-template-columns: 88px minmax(0, 1fr);
	align-items: center;
	gap: 13px;
	padding: 12px 0;
	color: var(--aof-ink);
	border-bottom: 1px solid var(--aof-line);
	text-decoration: none;
}

.aof-sidebar-posts img {
	width: 88px;
	height: 68px;
	object-fit: cover;
}

.aof-sidebar-posts span {
	display: grid;
	gap: 3px;
}

.aof-sidebar-posts small {
	color: var(--aof-red);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.aof-sidebar-posts strong {
	font-family: var(--aof-heading);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.15;
}

.aof-sidebar-posts > a:hover strong,
.aof-sidebar-posts > a:focus strong {
	color: var(--aof-red);
}

@media (max-width: 1100px) {
	.page .neo-magazine-main-wrapper > .section-wrapper {
		width: min(100% - 48px, 1040px);
	}

	.aof-page-layout {
		grid-template-columns: minmax(0, 1fr) 320px;
		gap: 38px;
	}
}

@media (max-width: 820px) {
	.page .neo-magazine-main-wrapper > .section-wrapper {
		width: min(100% - 32px, 760px);
	}

	.aof-page-layout {
		grid-template-columns: 1fr;
	}

	.aof-page-sidebar {
		margin-top: 18px;
	}

	.aof-page-sidebar .aof-toc-module {
		padding: 22px;
		background: var(--aof-cream);
	}
}

@media (max-width: 520px) {
	.aof-page-main {
		padding-top: 20px;
	}

	.aof-page-header h1 {
		font-size: 50px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.aof-pathway {
		transition: none;
	}
}

/* Article experience */
body.single.right-sidebar .neo-magazine-main-wrapper .neo-magazine-container-wrapper,
body.single.left-sidebar .neo-magazine-main-wrapper .neo-magazine-container-wrapper,
body.single.no-sidebar .neo-magazine-main-wrapper .neo-magazine-container-wrapper {
	display: block;
}

body.single.right-sidebar .neo-magazine-main-wrapper .neo-magazine-container-wrapper #primary.aof-single-main,
body.single.left-sidebar .neo-magazine-main-wrapper .neo-magazine-container-wrapper #primary.aof-single-main,
body.single.no-sidebar .neo-magazine-main-wrapper .neo-magazine-container-wrapper #primary.aof-single-main {
	width: 100%;
	max-width: none;
	padding-inline: 0;
}

.single .neo-magazine-main-wrapper > .section-wrapper {
	width: min(1460px, calc(100% - 72px));
	max-width: none;
	margin-inline: auto;
}

.aof-single-main {
	width: 100%;
	padding-block: 28px 60px;
}

.aof-article-layout {
	display: grid;
	grid-template-columns: minmax(0, 940px) minmax(340px, 380px);
	align-items: start;
	justify-content: space-between;
	gap: clamp(48px, 5vw, 82px);
}

.aof-article {
	min-width: 0;
	margin: 0;
}

.aof-article-header {
	max-width: 940px;
	margin-bottom: 34px;
}

.aof-article-header h1 {
	margin: 8px 0 16px;
	color: var(--aof-ink);
	font-size: clamp(44px, 6vw, 72px);
	font-weight: 600;
	line-height: .99;
}

.aof-article-header .aof-eyebrow {
	display: inline-block;
	text-decoration: none;
}

.aof-article-meta,
.aof-article-meta a {
	color: var(--aof-muted);
	font-size: 14px;
}

.aof-article-meta > span + span {
	margin-left: 12px;
}

.aof-article-image {
	margin-bottom: 42px;
}

.aof-article-image img {
	display: block;
	width: 100%;
	height: auto;
}

.aof-article-content {
	max-width: 850px;
	color: #312a27;
	font-family: Georgia, serif;
	font-size: 20px;
	line-height: 1.82;
}

.aof-article-content > *:first-child {
	margin-top: 0;
}

.aof-article-content h2,
.aof-article-content h3 {
	scroll-margin-top: 28px;
	color: var(--aof-ink);
	font-family: var(--aof-heading);
	font-weight: 600;
	line-height: 1.1;
}

.aof-article-content h2 {
	margin-top: 2.2em;
	font-size: 38px;
}

.aof-article-content h3 {
	margin-top: 1.8em;
	font-size: 29px;
}

.aof-article-content blockquote {
	margin: 2em 0;
	padding: 6px 0 6px 24px;
	color: var(--aof-muted);
	border-left: 3px solid var(--aof-red);
	font-family: var(--aof-heading);
	font-size: 25px;
}

.aof-article-footer {
	margin-top: 36px;
	padding-top: 20px;
	border-top: 1px solid var(--aof-line);
}

.aof-sidebar-sticky {
	position: sticky;
	top: 24px;
}

.aof-sidebar-module {
	padding: 30px 0;
	border-top: 1px solid var(--aof-line);
}

.aof-sidebar-module:first-child {
	padding-top: 0;
	border-top: 0;
}

.aof-sidebar-module h2 {
	margin: 0 0 14px;
	color: var(--aof-ink);
	font-family: var(--aof-heading);
	font-size: 27px;
	font-weight: 600;
	line-height: 1.08;
}

.aof-sidebar-kicker {
	display: block;
	margin-bottom: 7px;
	color: var(--aof-red);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.aof-article-toc,
.aof-next-steps {
	display: grid;
}

.aof-article-toc a,
.aof-next-steps a {
	color: var(--aof-muted);
	text-decoration: none;
}

.aof-article-toc a {
	padding: 7px 0;
	border-bottom: 1px solid var(--aof-line);
	font-size: 14px;
	line-height: 1.35;
}

.aof-article-toc a.is-subheading {
	padding-left: 15px;
	font-size: 13px;
}

.aof-article-toc a:hover,
.aof-article-toc a:focus,
.aof-next-steps a:hover,
.aof-next-steps a:focus {
	color: var(--aof-red);
}

.aof-next-steps a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 11px 0;
	border-bottom: 1px solid var(--aof-line);
	font-weight: 600;
}

.aof-prayer-module {
	margin-top: 10px;
	padding: 30px;
	background: var(--aof-cream);
	border-top: 3px solid var(--aof-red);
}

.aof-prayer-module p {
	margin: 0 0 18px;
	color: var(--aof-muted);
	font-size: 14px;
}

.aof-prayer-form {
	display: grid;
	gap: 13px;
}

.aof-prayer-form label:not(.aof-check):not(.aof-honeypot) {
	display: grid;
	gap: 5px;
	color: var(--aof-ink);
	font-size: 12px;
	font-weight: 600;
}

.aof-prayer-form input[type="text"],
.aof-prayer-form input[type="email"],
.aof-prayer-form textarea {
	width: 100%;
	padding: 10px;
	color: var(--aof-ink);
	background: var(--aof-paper);
	border: 1px solid var(--aof-line);
	border-radius: 0;
	font-family: var(--aof-sans);
	font-size: 14px;
}

.aof-check {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	color: var(--aof-muted);
	font-size: 12px;
}

.aof-check input {
	margin-top: 3px;
}

.aof-prayer-form button {
	padding: 12px 15px;
	color: #fff;
	background: var(--aof-red);
	border: 1px solid var(--aof-red);
	border-radius: 0;
	font-weight: 600;
}

.aof-prayer-form button:hover,
.aof-prayer-form button:focus {
	background: #a91f1f;
}

.aof-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.aof-form-message {
	padding: 10px;
	border-left: 3px solid var(--aof-blue);
	background: var(--aof-paper);
}

.aof-form-message.is-error {
	border-left-color: var(--aof-red);
}

.aof-related-reading {
	margin-top: 58px;
	padding-top: 42px;
	border-top: 1px solid var(--aof-line);
}

.aof-related-reading header {
	margin-bottom: 22px;
}

.aof-related-reading h2 {
	margin: 0;
	font-size: 42px;
	font-weight: 600;
}

@media (max-width: 1240px) {
	.single .neo-magazine-main-wrapper > .section-wrapper {
		width: min(100% - 48px, 1180px);
	}

	.aof-article-layout {
		grid-template-columns: minmax(0, 1fr) 320px;
		gap: 42px;
	}
}

@media (max-width: 960px) {
	.single .neo-magazine-main-wrapper > .section-wrapper {
		width: min(100% - 32px, 900px);
	}

	.aof-article-layout {
		grid-template-columns: minmax(0, 1fr) 280px;
		gap: 30px;
	}

	.aof-article-content {
		font-size: 19px;
	}

	.aof-prayer-module {
		padding: 22px;
	}
}

@media (max-width: 760px) {
	.aof-article-layout {
		grid-template-columns: 1fr;
	}

	.aof-article-sidebar {
		order: 2;
	}

	.aof-sidebar-sticky {
		position: static;
	}

	.aof-toc-module {
		margin-top: 12px;
		padding: 22px;
		background: var(--aof-cream);
	}

	.aof-prayer-module {
		margin-top: 10px;
	}

	.aof-article-content {
		font-size: 18px;
	}
}

@media (max-width: 520px) {
	.aof-single-main {
		padding-top: 18px;
	}

	.aof-article-header h1 {
		font-size: 42px;
	}

	.aof-article-content h2 {
		font-size: 32px;
	}

	.aof-article-content h3 {
		font-size: 26px;
	}
}
