/**
 * DailyBible Theme — Design 4B Refined
 * Matches mockup: design-4b-refined.html
 * Audience: 45+ US, devotional readers
 * Mobile-first, readable, clean
 */

/* =============================================
   FOUNDATION
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: #fff;
	color: #2D2D2D;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

/* WP template part wrappers — transparent, no interference */
.wp-block-template-part {
	display: contents;
}

/* Remove WP's automatic block-gap margins on our custom elements */
.wp-site-blocks > * {
	margin-block-start: 0 !important;
}

.wp-site-blocks {
	min-height: 100vh;
}

/* =============================================
   HEADER — Burger | Logo center | Donate gold
   Exact match: mockup lines 17-80
   ============================================= */

.site-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.75rem 1.25rem;
	background: #6f1611;
	position: sticky;
	top: 0;
	z-index: 100;
}

.burger {
	width: 40px;
	height: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
	flex-shrink: 0;
	min-width: 40px;
}

.burger span {
	display: block;
	width: 22px;
	height: 2px;
	background: rgba(255, 255, 255, 0.85);
	border-radius: 1px;
}

.burger span:first-child {
	width: 16px;
	align-self: flex-start;
	margin-left: 9px;
}

.header-logo {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.header-logo img {
	height: 30px;
	width: auto;
}

.donate-btn {
	background: linear-gradient(135deg, #F5C518 0%, #E8B400 100%);
	color: #1a1a1a;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.375rem 1.1rem;
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.2s;
	white-space: nowrap;
	letter-spacing: 0.03em;
	box-shadow: 0 1px 4px rgba(245, 197, 24, 0.3);
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	flex-shrink: 0;
}

.donate-btn svg { flex-shrink: 0; }

.donate-btn:hover {
	background: linear-gradient(135deg, #ffd633 0%, #F5C518 100%);
	transform: translateY(-1px);
	box-shadow: 0 3px 12px rgba(245, 197, 24, 0.4);
}

/* =============================================
   MOBILE MENU — Slide-in from left
   Exact match: mockup lines 492-538
   ============================================= */

.mobile-overlay {
	display: none;
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 199;
}

.mobile-overlay.open { display: block; }

.mobile-menu {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 280px;
	height: 100%;
	background: #fff;
	z-index: 200;
	padding: 0 1.5rem 1.75rem;
	box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
	overflow-y: auto;
}

.mobile-menu.open { display: block; }

.mobile-menu .mm-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.25rem 0 1rem;
	margin-bottom: 0.75rem;
	border-bottom: 1px solid #f0ebe4;
}

.mobile-menu .mm-brand {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: #6f1611;
}

.mobile-menu .mm-close {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: #999;
	cursor: pointer;
	border-radius: 6px;
	transition: 0.15s;
}

.mobile-menu .mm-close:hover {
	background: #f5f0eb;
	color: #333;
}

.mobile-menu a {
	display: block;
	font-size: 1rem;
	color: #2D2D2D;
	text-decoration: none;
	padding: 0.75rem 0;
	border-bottom: 1px solid #f5f0eb;
	transition: color 0.15s;
}

.mobile-menu a:hover { color: #6f1611; }
.mobile-menu a:last-child { border-bottom: none; }

.mobile-menu .mm-donate {
	color: #6f1611;
	font-weight: 700;
	letter-spacing: 0.03em;
}

/* =============================================
   VERSE HERO — Burgundy, seamless with header
   Exact match: mockup lines 82-129
   ============================================= */

.verse-hero {
	background: #6f1611;
	color: #fff;
	padding: 2rem 1.5rem 2.5rem;
}

.verse-hero__inner {
	max-width: 720px;
	margin: 0 auto;
}

.verse-hero__title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.875rem, 5vw, 2.75rem);
	font-weight: 700;
	line-height: 1.1;
	color: #fff;
	margin: 0 0 1.75rem;
}

.verse-hero__text {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.1875rem, 3vw, 1.5rem);
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.92);
	font-style: italic;
	margin-bottom: 1.75rem;
}

.verse-hero__bottom {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 1rem;
}

.verse-hero__ref-book {
	font-size: 1.0625rem;
	font-weight: 700;
	color: #F5C518;
}

.verse-hero__ref-detail {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.45);
}

/* =============================================
   SHARE DROPDOWN
   Exact match: mockup lines 131-220
   ============================================= */

.share-toggle {
	position: relative;
}

.share-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0.5rem 0.875rem;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: rgba(255, 255, 255, 0.75);
	cursor: pointer;
	transition: 0.15s;
	font-size: 0.8125rem;
	font-weight: 500;
	font-family: inherit;
	letter-spacing: 0.01em;
}

.share-btn:hover {
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.25);
}

.share-dropdown {
	position: absolute;
	top: calc(100% + 0.625rem);
	right: 0;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
	padding: 0.375rem;
	min-width: 200px;
	z-index: 60;
	opacity: 0;
	transform: translateY(-6px) scale(0.96);
	pointer-events: none;
	transition: opacity 0.18s, transform 0.18s;
}

.share-dropdown::after {
	content: "";
	position: absolute;
	top: -6px;
	right: 18px;
	width: 12px;
	height: 12px;
	background: #fff;
	transform: rotate(45deg);
	box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.06);
}

.share-dropdown.open {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}

.share-dropdown a {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.625rem 0.875rem;
	color: #2D2D2D;
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 500;
	border-radius: 8px;
	transition: 0.12s;
}

.share-dropdown a:hover {
	background: #F5EDE6;
}

.share-icon {
	width: 30px;
	height: 30px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	flex-shrink: 0;
}

.si-fb { background: #1877F2; }
.si-x { background: #000; }
.si-wa { background: #25D366; }
.si-em { background: #6f1611; }

/* =============================================
   SKIP-TO NAV — Sticky bar, full-width
   Exact match: mockup lines 222-259
   ============================================= */

.skip-nav {
	background: #f7f3ee;
	border-bottom: 1px solid #E8E0D8;
	padding: 0.5rem 0;
	position: sticky;
	top: 64px;
	z-index: 50;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.skip-nav::-webkit-scrollbar {
	display: none;
}

.skip-nav__inner {
	display: flex;
	gap: 0.25rem;
	justify-content: center;
	padding: 0 1rem;
	min-width: max-content;
}

.skip-nav a {
	flex-shrink: 0;
	font-size: 0.8125rem;
	font-weight: 600;
	color: #6f1611;
	text-decoration: none;
	padding: 0.5rem 0.875rem;
	border-radius: 6px;
	transition: 0.15s;
	white-space: nowrap;
}

.skip-nav a:hover,
.skip-nav a:focus-visible {
	background: #6f1611;
	color: #fff;
}

.skip-nav a.active {
	background: rgba(111, 22, 17, 0.1);
}

/* =============================================
   POST CONTENT — Sections with typography
   Exact match: mockup lines 261-340
   ============================================= */

.post-content-wrap {
	width: 100%;
}

/* Content area constrained */
.wp-block-post-content {
	max-width: 680px;
	margin: 0 auto;
	padding: 0 1.5rem;
	counter-reset: section-counter;
}

/* Remove spacers in post content */
.wp-block-post-content .wp-block-spacer {
	height: 0.5rem !important;
}

/* Section headings — numbered, unified style */
.wp-block-post-content .wp-block-heading {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.25rem, 3vw, 1.5rem) !important;
	color: #6f1611 !important;
	line-height: 1.3;
	margin-top: 0;
	margin-bottom: 1.25rem;
	padding-top: 1.25rem;
	border-top: none;
	text-align: left !important;
}

.wp-block-post-content .wp-block-heading[id] {
	display: flex;
	align-items: baseline;
	scroll-margin-top: 7.5rem;
}

.wp-block-post-content .wp-block-heading[id]::before {
	counter-increment: section-counter;
	content: counter(section-counter, decimal-leading-zero);
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 1.5em;
	font-weight: 300;
	color: #C4A882;
	margin-right: 0.75rem;
	padding-right: 0.75rem;
	border-right: 1.5px solid #E8D5C4;
	line-height: 1;
	flex-shrink: 0;
}

.wp-block-post-content .wp-block-heading[id]::after {
	content: "";
	flex: 1;
	height: 1px;
	background: linear-gradient(to right, #E8D5C4, transparent);
	margin-left: 1rem;
	align-self: center;
}

/* First heading after skip-nav */
.wp-block-post-content .wp-block-heading[id="todays-devotional"] {
	padding-top: 1rem;
}

/* Paragraphs */
.wp-block-post-content p {
	font-size: 1.0625rem;
	line-height: 1.85;
	color: #333;
	margin-bottom: 1rem;
}

.wp-block-post-content p:last-child {
	margin-bottom: 0;
}

/* Lists */
.wp-block-post-content ul,
.wp-block-post-content ol {
	list-style: none;
	padding-left: 0;
}

.wp-block-post-content li {
	font-size: 1.0625rem;
	line-height: 1.75;
	color: #333;
	margin-bottom: 1rem;
	padding-left: 1.75rem;
	position: relative;
}

.wp-block-post-content li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55rem;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 2px solid #D4A59A;
}

/* =============================================
   PRAYER — Italic serif card
   Exact match: mockup lines 316-328
   ============================================= */

.wp-block-post-content .wp-block-heading[id="prayer-of-the-day"] + .wp-block-spacer + p,
.wp-block-post-content .wp-block-heading[id="prayer-of-the-day"] + p {
	font-family: Georgia, 'Times New Roman', serif;
	font-style: italic;
	font-size: 1.0625rem;
	line-height: 1.85;
	color: #555;
	padding: 1.75rem 1.5rem;
	background: #FDF8F4;
	border-radius: 12px;
	border-left: 4px solid #D4A59A;
}

/* =============================================
   WISDOM — Centered
   Exact match: mockup lines 330-340
   ============================================= */

.wp-block-post-content .wp-block-heading[id="today-wisdom"] + .wp-block-spacer + p,
.wp-block-post-content .wp-block-heading[id="today-wisdom"] + p,
.wp-block-post-content .wp-block-heading[id="todays-wisdom"] + .wp-block-spacer + p,
.wp-block-post-content .wp-block-heading[id="todays-wisdom"] + p {
	font-size: 1.125rem;
	line-height: 1.8;
	color: #555;
}

/* =============================================
   ADS
   ============================================= */

.dailybible-ad {
	margin: 1.5rem auto;
	max-width: 100%;
	overflow: hidden;
}

/* =============================================
   CTA — Full-width burgundy
   Exact match: mockup lines 356-395
   ============================================= */

.cta {
	background: #6f1611;
	padding: 3.5rem 1.5rem;
	text-align: center;
}

.cta h3 {
	font-family: Georgia, 'Times New Roman', serif;
	color: #fff;
	font-size: clamp(1.375rem, 3vw, 1.75rem);
	margin-bottom: 0.5rem;
}

.cta p {
	color: rgba(255, 255, 255, 0.65);
	font-size: 1rem;
	margin-bottom: 1.75rem;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}

.cta-buttons {
	display: flex;
	gap: 0.75rem;
	justify-content: center;
	flex-wrap: wrap;
}

.btn {
	padding: 0.875rem 2rem;
	font-size: 0.9375rem;
	font-weight: 600;
	text-decoration: none;
	transition: 0.2s;
	border: none;
	cursor: pointer;
	border-radius: 4px;
	display: inline-block;
}

.btn-gold {
	background: linear-gradient(135deg, #F5C518 0%, #E8B400 100%);
	color: #1a1a1a;
	box-shadow: 0 2px 8px rgba(245, 197, 24, 0.3);
}

.btn-gold:hover {
	background: linear-gradient(135deg, #ffd633 0%, #F5C518 100%);
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(245, 197, 24, 0.4);
}

.btn-outline-light {
	background: none;
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, 0.3);
	border-radius: 4px;
}

.btn-outline-light:hover {
	border-color: rgba(255, 255, 255, 0.6);
}

/* =============================================
   CONTINUE READING — Card grid
   ============================================= */

/* --- Exploring Faith (random article in devotionals) --- */

.devotional-article {
	padding: 2rem 1.5rem;
	background: #f7f3ee;
	border-top: 1px solid #E8E0D8;
}

.devotional-article__inner {
	max-width: 680px;
	margin: 0 auto;
}

.devotional-article__label {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #999;
	margin-bottom: 1rem;
}

.devotional-article__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.devotional-article__card {
	display: block;
	text-decoration: none;
	transition: transform 0.2s;
}

.devotional-article__card:hover {
	transform: translateY(-2px);
}

.devotional-article__thumb {
	width: 100%;
	aspect-ratio: 3 / 2;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 0.625rem;
}

.devotional-article__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.devotional-article__card h3 {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 0.8125rem;
	color: #2D2D2D;
	font-weight: 600;
	line-height: 1.4;
}

.devotional-article__card:hover h3 {
	color: #6f1611;
}

/* --- Continue Reading --- */

.more-devotionals {
	max-width: 760px;
	margin: 0 auto;
}

.more-devotionals .wp-block-heading {
	border-top: none !important;
	padding-top: 0 !important;
	margin-top: 0 !important;
}

.more-devotionals .wp-block-heading::before {
	display: none !important;
}

/* List + counter for numbering */
.continue-grid {
	list-style: none;
	padding: 0;
	margin: 0;
	counter-reset: continue-counter;
}

.continue-grid .wp-block-post {
	counter-increment: continue-counter;
}

/* Each row — number left, title+excerpt right */
.continue-card {
	padding: 1.125rem 0;
	border-bottom: 1px solid #E8E0D8;
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-rows: auto auto;
	column-gap: 0.75rem;
	row-gap: 0.125rem;
}

.continue-grid .wp-block-post:last-child .continue-card {
	border-bottom: none;
}

/* Number spans both rows, centered vertically */
.continue-card::before {
	content: counter(continue-counter, decimal-leading-zero);
	grid-row: 1 / -1;
	align-self: center;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 1.375rem;
	font-weight: 300;
	color: #C4A882;
	padding-right: 0.75rem;
	border-right: 1.5px solid #E8D5C4;
	line-height: 1;
}

/* Title — row 1 */
.continue-card .wp-block-post-title {
	grid-column: 2;
	grid-row: 1;
	text-align: left !important;
	margin-bottom: 0;
}

.continue-card .wp-block-post-title a {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 1.0625rem;
	color: #6f1611;
	font-weight: 600;
	text-decoration: none;
	line-height: 1.35;
}

.continue-card .wp-block-post-title a:hover {
	color: #8B2920;
}

/* Excerpt — row 2 */
.continue-card .wp-block-post-excerpt {
	grid-column: 2;
	grid-row: 2;
	margin-top: 0;
	text-align: left !important;
}

.continue-card .wp-block-post-excerpt__excerpt {
	font-size: 0.8125rem;
	color: #999;
	line-height: 1.45;
}

.continue-card .wp-block-post-excerpt__more-link {
	display: none;
}

/* =============================================
   FOOTER
   Exact match: mockup lines 453-490
   ============================================= */

.site-footer {
	background: #6f1611;
	color: rgba(255, 255, 255, 0.6);
	text-align: center;
	padding: 2.5rem 1.5rem 1.5rem;
}

.footer-logo img {
	height: 28px;
	width: auto;
	margin: 0 auto 0.5rem;
}

.footer-tagline {
	font-style: italic;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.35);
	margin-bottom: 1.5rem;
}

.footer-nav {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.25rem;
}

.footer-nav a {
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	font-size: 0.8125rem;
	padding: 0.375rem 0.5rem;
	border-radius: 4px;
	transition: 0.15s;
}

.footer-nav a:hover {
	color: #fff;
}

.footer-copy {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.25);
	margin-top: 1.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* =============================================
   HOMEPAGE / ARCHIVE
   ============================================= */

.wp-block-post-template {
	list-style: none;
	padding: 0;
	margin: 0;
}

.wp-block-post-template .wp-block-post-title {
	text-align: left;
	margin-bottom: 0;
}

.wp-block-post-template .wp-block-post-title a {
	text-decoration: none;
	color: #6f1611;
}

.wp-block-post-template .wp-block-post-title a:hover {
	color: #8B2920;
}

.wp-block-query-pagination {
	margin-top: 2rem;
	gap: 0.5rem;
	justify-content: center;
}

.wp-block-query-pagination a {
	padding: 0.5rem 1rem;
	border-radius: 6px;
	text-decoration: none;
	font-size: 0.875rem;
}

.wp-block-query-pagination a:hover {
	background: #F5EDE6;
}

/* =============================================
   ACCESSIBILITY
   ============================================= */

:focus-visible {
	outline: 2px solid #6f1611;
	outline-offset: 2px;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
}

/* =============================================
   TABLET (768px)
   Exact match: mockup lines 541-548
   ============================================= */

@media (min-width: 768px) {
	.site-header {
		padding: 0.875rem 2rem;
	}

	.header-logo img {
		height: 34px;
	}

	.verse-hero {
		padding: 2.5rem 2rem 3rem;
	}

	.verse-hero__text {
		font-size: 1.4375rem;
	}

	.wp-block-post-content {
		padding: 0 2rem;
	}

	.skip-nav {
		padding: 0.75rem 2rem;
		top: 68px;
	}

	.skip-nav a {
		font-size: 0.9375rem;
		padding: 0.5rem 1.125rem;
	}

}

/* =============================================
   DESKTOP (1024px)
   Exact match: mockup lines 550-554
   ============================================= */

@media (min-width: 1024px) {
	.verse-hero {
		padding: 3rem 2rem 3.5rem;
	}

	.verse-hero__text {
		font-size: 1.5rem;
	}

	.donate-btn {
		padding: 0.5rem 1.5rem;
		font-size: 0.875rem;
	}

	.wp-block-post-content p {
		font-size: 1.125rem;
	}
}

/* =============================================
   DONATE LANDING PAGE
   ============================================= */

/* Hide header donate button on the donate page */
.page-template-page-donate .wp-site-blocks > *,
.page-template-page-donor-recognition .wp-site-blocks > * {
	margin-block-start: 0 !important;
}

.page-template-page-donate .donate-btn {
	display: none;
}

/* --- Sticky support bar (fixed, shown on scroll via JS) --- */
.donate-sticky-bar {
	position: fixed;
	top: 64px;
	left: 0;
	right: 0;
	z-index: 90;
	background: rgba(253, 248, 244, 0.97);
	border-bottom: 1px solid #E8E0D8;
	padding: 0.5rem 1.5rem;
	text-align: center;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	transform: translateY(-100%);
	opacity: 0;
	pointer-events: none;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.donate-sticky-bar.visible {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}

.donate-sticky-bar .btn {
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 0.8125rem;
	padding: 0.625rem 2rem;
}

/* --- Hero --- */
.donate-hero {
	background: #6f1611;
	color: #fff;
	padding: 4rem 1.5rem 4.5rem;
	text-align: center;
}

.donate-hero__inner {
	max-width: 600px;
	margin: 0 auto;
}

.donate-hero__title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.625rem, 5vw, 2.375rem);
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	margin: 0 0 1.25rem;
}

.donate-hero__sub {
	font-size: 1.0625rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 2.25rem;
}

.btn-lg {
	padding: 1rem 2.5rem;
	font-size: 1.0625rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

/* Hero CTA — full width on mobile */
.donate-hero__btn {
	width: 100%;
	justify-content: center;
}

.donate-hero__trust {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.375rem;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.35);
	margin-top: 1rem;
}

/* --- Stats counters --- */
.donate-stats {
	display: flex;
	justify-content: center;
	gap: 2rem;
	padding: 2.25rem 1.5rem;
	background: #FDF8F4;
	border-bottom: 1px solid #E8E0D8;
	flex-wrap: wrap;
}

.donate-stat {
	text-align: center;
	min-width: 110px;
}

.donate-stat__num {
	display: block;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 700;
	color: #6f1611;
	line-height: 1;
	margin-bottom: 0.375rem;
}

.donate-stat__label {
	font-size: 0.75rem;
	color: #999;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

/* --- Story section --- */
.donate-story {
	padding: 3.5rem 1.5rem;
	background: #fff;
}

.donate-story__inner {
	max-width: 600px;
	margin: 0 auto;
}

.donate-story__lead {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #C4A882;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.donate-story h2 {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.25rem, 3vw, 1.5rem);
	color: #6f1611;
	line-height: 1.35;
	margin-bottom: 1.5rem;
}

.donate-story p {
	font-size: 1rem;
	line-height: 1.8;
	color: #555;
	margin-bottom: 1rem;
}

.donate-story p:last-child {
	margin-bottom: 0;
}

/* --- Impact section --- */
.donate-impact {
	padding: 3.5rem 1.5rem;
	background: #FDF8F4;
}

.donate-impact__inner {
	max-width: 680px;
	margin: 0 auto;
}

.donate-section-title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.25rem, 3vw, 1.5rem);
	color: #6f1611;
	text-align: center;
	margin-bottom: 2rem;
}

.donate-impact__grid {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.donate-impact__item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.donate-impact__icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	background: #fff;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #C4A882;
}

.donate-impact__item h3 {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 1rem;
	color: #6f1611;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.donate-impact__item p {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: #666;
	margin: 0;
}

/* --- Main CTA --- */
.donate-cta {
	padding: 3.5rem 1.5rem;
	background: #6f1611;
	text-align: center;
}

.donate-cta__inner {
	max-width: 560px;
	margin: 0 auto;
}

.donate-cta h2 {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.25rem, 3vw, 1.625rem);
	color: #fff;
	margin-bottom: 0.75rem;
	line-height: 1.3;
}

.donate-cta p {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.65;
	margin-bottom: 2rem;
}

/* CTA button — full width on mobile */
.donate-cta__btn {
	width: 100%;
	justify-content: center;
	margin-bottom: 1rem;
}

.donate-cta__secure {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.375rem;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.35);
	margin: 0 0 1.25rem;
}

.donate-cta__recognition {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.5);
	margin: 0;
}

.donate-cta__recognition a {
	color: #F5C518;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.donate-cta__recognition a:hover {
	color: #ffd633;
}

/* --- Scripture quote --- */
.donate-founder {
	padding: 3rem 1.5rem;
	background: #fff;
	text-align: center;
}

.donate-founder__inner {
	max-width: 560px;
	margin: 0 auto;
}

.donate-founder__content {
	border-left: none;
	padding-left: 0;
}

.donate-founder__quote {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.125rem, 3vw, 1.375rem);
	font-style: italic;
	line-height: 1.6;
	color: #6f1611;
	margin-bottom: 0.75rem;
}

.donate-founder__ref {
	font-size: 0.8125rem;
	color: #C4A882;
	font-weight: 600;
	letter-spacing: 0.03em;
}

/* --- Other ways to help — list style --- */
.donate-alt {
	padding: 3.5rem 1.5rem;
	background: #FDF8F4;
}

.donate-alt__inner {
	max-width: 640px;
	margin: 0 auto;
}

.donate-alt__list {
	margin-top: 1.75rem;
}

.donate-alt__item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.125rem 1.25rem;
	background: #fff;
	border-radius: 10px;
	text-decoration: none;
	margin-bottom: 0.625rem;
	transition: transform 0.2s, box-shadow 0.2s;
}

.donate-alt__item:last-child {
	margin-bottom: 0;
}

.donate-alt__item:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.donate-alt__item-icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	background: #FDF8F4;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #C4A882;
}

.donate-alt__item-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
}

.donate-alt__item-text strong {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 0.9375rem;
	color: #6f1611;
	font-weight: 600;
}

.donate-alt__item-text span {
	font-size: 0.8125rem;
	color: #999;
	line-height: 1.4;
}

.donate-alt__arrow {
	flex-shrink: 0;
	font-size: 1.5rem;
	color: #E8D5C4;
	font-weight: 300;
	line-height: 1;
}

/* --- Donate responsive --- */
@media (min-width: 768px) {
	.donate-hero {
		padding: 5rem 2rem 5.5rem;
	}

	.donate-hero__btn,
	.donate-cta__btn {
		width: auto;
	}

	.donate-stats {
		gap: 3.5rem;
	}

	.donate-sticky-bar {
		top: 68px;
	}
}

/* =========================================================================
   DONOR RECOGNITION / SUPPORTERS WALL
   ========================================================================= */

/* --- Hero --- */
.recognition-hero {
	background: #6f1611;
	padding: 4rem 1.5rem 3.5rem;
	text-align: center;
}

.recognition-hero__inner {
	max-width: 600px;
	margin: 0 auto;
}

.recognition-hero__label {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #C4A882;
	margin-bottom: 0.75rem;
}

.recognition-hero__title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.625rem, 4vw, 2.25rem);
	color: #fff;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
}

.recognition-hero__sub {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.7;
	margin: 0;
}

/* --- Counter strip --- */
.recognition-count {
	background: #fff;
	padding: 1.75rem 1.5rem;
	text-align: center;
	border-bottom: 1px solid #E8E0D8;
}

.recognition-count__inner {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 0.5rem;
}

.recognition-count__num {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 2rem;
	font-weight: 700;
	color: #6f1611;
}

.recognition-count__label {
	font-size: 0.9375rem;
	color: #999;
}

/* --- Supporters wall grid --- */
.supporters-wall {
	max-width: 900px;
	margin: 0 auto;
	padding: 2.5rem 1.5rem 3rem;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

.supporter-card {
	padding: 1.375rem 1.5rem 1.375rem 1.75rem;
	background: #fff;
	border-radius: 4px;
	border: 1px solid #F0EBE6;
	border-left: 3px solid #C4A882;
	position: relative;
}

.supporter-card__name {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 1.0625rem;
	font-weight: 700;
	color: #6f1611;
	margin-bottom: 0.25rem;
	letter-spacing: 0.01em;
}

.supporter-card__meta {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.6875rem;
	color: #C4A882;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 0.75rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid #F0EBE6;
}

.supporter-card__meta svg {
	flex-shrink: 0;
}

.supporter-card__msg {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 0.9375rem;
	font-style: italic;
	line-height: 1.65;
	color: #777;
	margin: 0;
}

.supporter-card__msg::before {
	content: "\201C";
	color: #E8D5C4;
	font-size: 1.5em;
	line-height: 0;
	vertical-align: -0.25em;
	margin-right: 0.125rem;
}

.supporter-card__msg::after {
	content: "\201D";
	color: #E8D5C4;
	font-size: 1.5em;
	line-height: 0;
	vertical-align: -0.25em;
	margin-left: 0.0625rem;
}

/* --- CTA --- */
.recognition-cta {
	padding: 3.5rem 1.5rem;
	background: #6f1611;
	text-align: center;
}

.recognition-cta__inner {
	max-width: 500px;
	margin: 0 auto;
}

.recognition-cta h2 {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.25rem, 3vw, 1.625rem);
	color: #fff;
	margin-bottom: 0.75rem;
	line-height: 1.3;
}

.recognition-cta p {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.65;
	margin-bottom: 2rem;
}

.recognition-cta .btn-gold {
	margin-bottom: 1rem;
	width: 100%;
	justify-content: center;
}

.recognition-cta__secure {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.375rem;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.35);
	margin: 0;
}

/* --- Scripture --- */
.recognition-scripture {
	padding: 3rem 1.5rem;
	background: #FDF8F4;
	text-align: center;
}

.recognition-scripture__inner {
	max-width: 560px;
	margin: 0 auto;
}

.recognition-scripture__quote {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.125rem, 3vw, 1.375rem);
	font-style: italic;
	line-height: 1.6;
	color: #6f1611;
	margin-bottom: 0.75rem;
}

.recognition-scripture__ref {
	font-size: 0.8125rem;
	color: #C4A882;
	font-weight: 600;
	letter-spacing: 0.03em;
}

/* --- Recognition responsive --- */
@media (min-width: 640px) {
	.supporters-wall {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 768px) {
	.recognition-hero {
		padding: 5rem 2rem 4.5rem;
	}

	.recognition-cta .btn-gold {
		width: auto;
	}
}

/* =========================================================================
   LEGAL PAGES — Privacy Policy & Terms & Conditions
   ========================================================================= */

.page-template-page-legal .wp-site-blocks > * {
	margin-block-start: 0 !important;
}

.legal-hero {
	background: #6f1611;
	color: #fff;
	padding: 3.5rem 1.5rem 3rem;
	text-align: center;
}

.legal-hero__inner {
	max-width: 600px;
	margin: 0 auto;
}

.legal-hero__title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.5rem, 4vw, 2.25rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	margin: 0 0 0.75rem;
}

.legal-hero__date {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.45);
	margin: 0;
}

.legal-body {
	max-width: 960px;
	margin: 0 auto;
	padding: 2.5rem 1.5rem 3rem;
}

.legal-body__inner {
	display: flex;
	gap: 3rem;
}

/* TOC sidebar */
.legal-toc {
	display: none;
}

.legal-toc__title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #C4A882;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.legal-toc__nav {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
}

.legal-toc__nav a {
	font-size: 0.8125rem;
	color: #666;
	text-decoration: none;
	padding: 0.375rem 0.75rem;
	border-left: 2px solid transparent;
	border-radius: 0 4px 4px 0;
	transition: all 0.15s;
	line-height: 1.4;
}

.legal-toc__nav a:hover {
	color: #6f1611;
	background: #FDF8F4;
}

.legal-toc__nav a.active {
	color: #6f1611;
	border-left-color: #6f1611;
	background: #FDF8F4;
	font-weight: 600;
}

/* Legal content */
.legal-content {
	flex: 1;
	min-width: 0;
}

.legal-content h2 {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.125rem, 2.5vw, 1.375rem);
	color: #6f1611;
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	padding-top: 1.5rem;
	border-top: 1px solid #E8E0D8;
	line-height: 1.3;
}

.legal-content h2:first-child {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

.legal-content p {
	font-size: 0.9375rem;
	line-height: 1.8;
	color: #555;
	margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
	padding-left: 1.5rem;
	margin-bottom: 1rem;
}

.legal-content li {
	font-size: 0.9375rem;
	line-height: 1.75;
	color: #555;
	margin-bottom: 0.5rem;
}

.legal-content a {
	color: #6f1611;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.legal-content a:hover {
	color: #8B2920;
}

@media (min-width: 768px) {
	.legal-hero {
		padding: 4.5rem 2rem 3.5rem;
	}

	.legal-body {
		padding: 3rem 2rem 4rem;
	}

	.legal-toc {
		display: block;
		position: sticky;
		top: 100px;
		align-self: flex-start;
		width: 220px;
		flex-shrink: 0;
	}
}

/* =========================================================================
   ABOUT US PAGE
   ========================================================================= */

.page-template-page-about .wp-site-blocks > * {
	margin-block-start: 0 !important;
}

.about-hero {
	background: #6f1611;
	color: #fff;
	padding: 3rem 1.5rem 3.5rem;
}

.about-portrait {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	object-position: center 15%;
	border: 3px solid rgba(255, 255, 255, 0.2);
	flex-shrink: 0;
}

.about-hero__inner {
	max-width: 680px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.about-hero__text {
	flex: 1;
	min-width: 280px;
}

.about-hero__title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.625rem, 5vw, 2.375rem);
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	margin: 0 0 1.25rem;
}

.about-hero__sub {
	font-size: 1.0625rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
}

.about-mission {
	padding: 3.5rem 1.5rem;
	background: #fff;
}

.about-mission__inner {
	max-width: 600px;
	margin: 0 auto;
}

.about-mission h2 {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.25rem, 3vw, 1.5rem);
	color: #6f1611;
	line-height: 1.35;
	margin-bottom: 1.5rem;
}

.about-mission p {
	font-size: 1rem;
	line-height: 1.8;
	color: #555;
	margin-bottom: 1rem;
}

.about-mission p:last-child {
	margin-bottom: 0;
}

.about-values {
	padding: 3.5rem 1.5rem;
	background: #FDF8F4;
}

.about-values__inner {
	max-width: 680px;
	margin: 0 auto;
}

.about-section-title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.25rem, 3vw, 1.5rem);
	color: #6f1611;
	text-align: center;
	margin-bottom: 2rem;
}

.about-values__grid {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.about-values__item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.about-values__icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	background: #fff;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #C4A882;
}

.about-values__item h3 {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 1rem;
	color: #6f1611;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.about-values__item p {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: #666;
	margin: 0;
}

.about-community {
	padding: 3.5rem 1.5rem;
	background: #fff;
}

.about-community__inner {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}

.about-community h2 {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.25rem, 3vw, 1.5rem);
	color: #6f1611;
	line-height: 1.35;
	margin-bottom: 1.5rem;
}

.about-community p {
	font-size: 1rem;
	line-height: 1.8;
	color: #555;
	margin-bottom: 1rem;
}

.about-cta {
	padding: 3.5rem 1.5rem;
	background: #6f1611;
	text-align: center;
}

.about-cta__inner {
	max-width: 560px;
	margin: 0 auto;
}

.about-cta h2 {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.25rem, 3vw, 1.625rem);
	color: #fff;
	margin-bottom: 0.75rem;
	line-height: 1.3;
}

.about-cta p {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.65;
	margin-bottom: 2rem;
}

.about-cta__buttons {
	display: flex;
	gap: 0.75rem;
	justify-content: center;
	flex-wrap: wrap;
}

.about-cta__buttons .btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

@media (min-width: 768px) {
	.about-hero {
		padding: 5rem 2rem 5.5rem;
	}
}

/* =========================================================================
   CONTACT PAGE
   ========================================================================= */

.page-template-page-contact .wp-site-blocks > * {
	margin-block-start: 0 !important;
}

.contact-hero {
	background: #6f1611;
	color: #fff;
	padding: 3.5rem 1.5rem 3rem;
	text-align: center;
}

.contact-hero__inner {
	max-width: 600px;
	margin: 0 auto;
}

.contact-hero__title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.5rem, 4vw, 2.25rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	margin: 0 0 1rem;
}

.contact-hero__sub {
	font-size: 1.0625rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
}

.contact-info {
	padding: 2.5rem 1.5rem;
	background: #FDF8F4;
	border-bottom: 1px solid #E8E0D8;
}

.contact-info__inner {
	max-width: 740px;
	margin: 0 auto;
}

.contact-info__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.contact-info__card {
	background: #fff;
	border-radius: 10px;
	padding: 1.75rem 1.5rem;
	text-align: center;
	border: 1px solid #F0EBE6;
}

.contact-info__icon {
	width: 52px;
	height: 52px;
	background: #FDF8F4;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #C4A882;
	margin: 0 auto 1rem;
}

.contact-info__card h3 {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 1.0625rem;
	color: #6f1611;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.contact-info__card p {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: #666;
	margin: 0;
}

.contact-form {
	padding: 3rem 1.5rem 3.5rem;
	background: #fff;
}

.contact-form__inner {
	max-width: 600px;
	margin: 0 auto;
}

.contact-form h2 {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.25rem, 3vw, 1.5rem);
	color: #6f1611;
	text-align: center;
	margin-bottom: 0.75rem;
}

.contact-form > .contact-form__inner > p {
	font-size: 0.9375rem;
	color: #666;
	text-align: center;
	line-height: 1.7;
	margin-bottom: 2rem;
}

@media (min-width: 640px) {
	.contact-info__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 768px) {
	.contact-hero {
		padding: 4.5rem 2rem 3.5rem;
	}
}

/* =========================================================================
   SUBSCRIBE PAGE
   ========================================================================= */

.page-template-page-subscribe .wp-site-blocks > * {
	margin-block-start: 0 !important;
}

.subscribe-hero {
	background: #6f1611;
	color: #fff;
	padding: 4rem 1.5rem 4.5rem;
	text-align: center;
}

.subscribe-hero__inner {
	max-width: 600px;
	margin: 0 auto;
}

.subscribe-hero__title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.625rem, 5vw, 2.375rem);
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	margin: 0 0 1.25rem;
}

.subscribe-hero__sub {
	font-size: 1.0625rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
}

.subscribe-benefits {
	padding: 3.5rem 1.5rem;
	background: #FDF8F4;
}

.subscribe-benefits__inner {
	max-width: 680px;
	margin: 0 auto;
}

.subscribe-section-title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.25rem, 3vw, 1.5rem);
	color: #6f1611;
	text-align: center;
	margin-bottom: 2rem;
}

.subscribe-benefits__grid {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.subscribe-benefits__item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.subscribe-benefits__icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	background: #fff;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #C4A882;
}

.subscribe-benefits__item h3 {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 1rem;
	color: #6f1611;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.subscribe-benefits__item p {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: #666;
	margin: 0;
}

.subscribe-form {
	padding: 3rem 1.5rem 3.5rem;
	background: #fff;
}

.subscribe-form__inner {
	max-width: 560px;
	margin: 0 auto;
	text-align: center;
}

.subscribe-form h2 {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.25rem, 3vw, 1.5rem);
	color: #6f1611;
	margin-bottom: 0.75rem;
}

.subscribe-form p {
	font-size: 0.9375rem;
	color: #666;
	margin-bottom: 1.5rem;
}

.subscribe-privacy {
	padding: 1.5rem;
	background: #FDF8F4;
	text-align: center;
	border-top: 1px solid #E8E0D8;
}

.subscribe-privacy__inner {
	max-width: 560px;
	margin: 0 auto;
}

.subscribe-privacy p {
	font-size: 0.8125rem;
	color: #999;
	margin: 0;
}

.subscribe-privacy a {
	color: #6f1611;
	text-decoration: underline;
	text-underline-offset: 2px;
}

@media (min-width: 768px) {
	.subscribe-hero {
		padding: 5rem 2rem 5.5rem;
	}
}

/* =========================================================================
   EMAIL OPT-OUT PAGE
   ========================================================================= */

.page-template-page-optout .wp-site-blocks > * {
	margin-block-start: 0 !important;
}

.optout-hero {
	background: #6f1611;
	color: #fff;
	padding: 3.5rem 1.5rem 3rem;
	text-align: center;
}

.optout-hero__inner {
	max-width: 560px;
	margin: 0 auto;
}

.optout-hero__title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.5rem, 4vw, 2rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	margin: 0 0 1rem;
}

.optout-hero__sub {
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.65);
	margin: 0;
}

.optout-form {
	padding: 3rem 1.5rem 3.5rem;
	background: #fff;
}

.optout-form__inner {
	max-width: 520px;
	margin: 0 auto;
	background: #FDF8F4;
	border-radius: 12px;
	padding: 2.5rem 2rem;
	border: 1px solid #E8E0D8;
}

.optout-form p {
	font-size: 0.9375rem;
	color: #666;
	text-align: center;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.optout-form p:last-child {
	margin-bottom: 0;
	font-size: 0.8125rem;
	color: #999;
}

.optout-form p:last-child a {
	color: #6f1611;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.optout-form p:last-child a:hover {
	color: #8B2920;
}

/* =========================================================================
   THANK YOU FOR SUPPORT PAGE
   ========================================================================= */

.page-template-page-thankyou .wp-site-blocks > * {
	margin-block-start: 0 !important;
}

.thankyou-hero {
	background: #6f1611;
	color: #fff;
	padding: 4rem 1.5rem 4.5rem;
	text-align: center;
}

.thankyou-hero__inner {
	max-width: 560px;
	margin: 0 auto;
}

.thankyou-hero__icon {
	color: #F5C518;
	margin-bottom: 1.5rem;
}

.thankyou-hero__title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.625rem, 5vw, 2.375rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	margin: 0 0 1.25rem;
}

.thankyou-hero__sub {
	font-size: 1.0625rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
}

.thankyou-message {
	padding: 3.5rem 1.5rem;
	background: #fff;
}

.thankyou-message__inner {
	max-width: 600px;
	margin: 0 auto;
}

.thankyou-message p {
	font-size: 1rem;
	line-height: 1.8;
	color: #555;
	margin-bottom: 1rem;
}

.thankyou-message p:last-child {
	margin-bottom: 0;
}

.thankyou-next {
	padding: 3.5rem 1.5rem;
	background: #FDF8F4;
}

.thankyou-next__inner {
	max-width: 640px;
	margin: 0 auto;
}

.thankyou-next h2 {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.25rem, 3vw, 1.5rem);
	color: #6f1611;
	text-align: center;
	margin-bottom: 1.75rem;
}

.thankyou-next__list {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.thankyou-next__item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.125rem 1.25rem;
	background: #fff;
	border-radius: 10px;
	text-decoration: none;
	transition: transform 0.2s, box-shadow 0.2s;
}

.thankyou-next__item:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.thankyou-next__icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	background: #FDF8F4;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #C4A882;
}

.thankyou-next__text {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
}

.thankyou-next__text strong {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 0.9375rem;
	color: #6f1611;
	font-weight: 600;
}

.thankyou-next__text span {
	font-size: 0.8125rem;
	color: #999;
	line-height: 1.4;
}

.thankyou-next__arrow {
	flex-shrink: 0;
	font-size: 1.5rem;
	color: #E8D5C4;
	font-weight: 300;
	line-height: 1;
}

.thankyou-scripture {
	padding: 3rem 1.5rem;
	background: #fff;
	text-align: center;
}

.thankyou-scripture__inner {
	max-width: 560px;
	margin: 0 auto;
}

.thankyou-scripture__quote {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.125rem, 3vw, 1.375rem);
	font-style: italic;
	line-height: 1.6;
	color: #6f1611;
	margin-bottom: 0.75rem;
}

.thankyou-scripture__ref {
	font-size: 0.8125rem;
	color: #C4A882;
	font-weight: 600;
	letter-spacing: 0.03em;
}

@media (min-width: 768px) {
	.thankyou-hero {
		padding: 5rem 2rem 5.5rem;
	}
}

/* =========================================================================
   ARCHIVE ENHANCEMENT
   ========================================================================= */

.archive-hero {
	background: #6f1611;
	color: #fff;
	padding: 3rem 1.5rem 2.5rem;
	text-align: center;
}

.archive-hero__inner {
	max-width: 600px;
	margin: 0 auto;
}

.archive-hero__title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.5rem, 4vw, 2.25rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	margin: 0 0 0.75rem;
}

.archive-hero__sub {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
}

/* =========================================================================
   SINGLE ARTICLE TEMPLATE
   Different from devotionals: no skip-nav, no section numbering,
   article hero, donation CTA, related articles
   ========================================================================= */

/* Remove block-gap margin */
.single-article .wp-site-blocks > * {
	margin-block-start: 0 !important;
}

/* Disable section numbering on articles */
.single-article .wp-block-post-content {
	counter-reset: none;
}

.single-article .wp-block-post-content .wp-block-heading[id] {
	display: block;
}

.single-article .wp-block-post-content .wp-block-heading[id]::before,
.single-article .wp-block-post-content .wp-block-heading[id]::after {
	display: none;
}

/* Article H2 — main section headings, bold & decorative */
.single-article .wp-block-post-content h2.wp-block-heading {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.375rem, 3.5vw, 1.75rem) !important;
	color: #6f1611 !important;
	font-weight: 700;
	line-height: 1.25;
	margin-top: 0;
	margin-bottom: 1rem;
	padding-top: 2.5rem;
	padding-bottom: 0.75rem;
	border-top: none;
	text-align: left !important;
	position: relative;
}

/* Gold underline accent on H2 */
.single-article .wp-block-post-content h2.wp-block-heading::after {
	content: '';
	display: block;
	width: 40px;
	height: 2px;
	background: #C4A882;
	margin-top: 0.625rem;
}

/* Article H3 — subsection headings, elegant */
.single-article .wp-block-post-content h3.wp-block-heading {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.125rem, 2.8vw, 1.3125rem) !important;
	color: #8b3a2f !important;
	font-weight: 600;
	font-style: italic;
	line-height: 1.35;
	margin-top: 0;
	margin-bottom: 1rem;
	padding-top: 1.5rem;
	padding-left: 1rem;
	border-top: none;
	border-left: 2px solid #C4A882;
	text-align: left !important;
}

/* Generic heading reset (h4, h5, h6) */
.single-article .wp-block-post-content .wp-block-heading {
	font-family: Georgia, 'Times New Roman', serif;
	color: #6f1611 !important;
	line-height: 1.3;
	margin-top: 0;
	border-top: none;
	text-align: left !important;
}

/* First heading — intro subtitle */
.single-article .wp-block-post-content > .wp-block-heading:first-child {
	font-size: clamp(1.0625rem, 2.5vw, 1.25rem) !important;
	color: #666 !important;
	font-weight: 400;
	font-style: italic;
	padding-top: 0;
	padding-left: 0;
	border-left: none;
	line-height: 1.65;
}

.single-article .wp-block-post-content > .wp-block-heading:first-child::after {
	display: none;
}

/* Article images */
.single-article .wp-block-post-content .wp-block-image {
	margin: 2rem 0;
	border-radius: 8px;
	overflow: hidden;
}

.single-article .wp-block-post-content .wp-block-image img {
	border-radius: 8px;
}

/* --- Inline Support CTA (shortcode: [dailybible_support]) --- */
.inline-support {
	margin: 2rem 0;
}

.inline-support p {
	font-size: 0.875rem;
	font-style: italic;
	line-height: 1.7;
	color: #999;
	border-left: 2px solid #E8E0D8;
	padding-left: 1rem;
	margin: 0;
}

.inline-support svg {
	color: #C4A882;
	vertical-align: -2px;
	margin-right: 1px;
}

.inline-support a {
	color: #6f1611;
	font-weight: 600;
	font-style: normal;
	text-decoration: none;
	white-space: nowrap;
}

.inline-support a:hover {
	color: #C4A882;
}

/* --- Article Hero --- */
.article-hero {
	background: #6f1611;
	color: #fff;
	padding: 2.5rem 1.5rem 2rem;
}

.article-hero__inner {
	max-width: 680px;
	margin: 0 auto;
}

.article-hero__title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.75rem, 5vw, 2.5rem);
	font-weight: 700;
	line-height: 1.15;
	color: #fff;
	margin: 0 0 1.5rem;
}

.article-hero__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.article-hero__reading-time {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 0.02em;
}

.article-hero__reading-time svg {
	opacity: 0.6;
}

/* Share dropdown in article hero — override colors for dark bg */
.article-hero .share-btn {
	color: rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.12);
}

.article-hero .share-btn:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.2);
}

/* --- Article Content Wrap --- */
.article-content-wrap {
	width: 100%;
	background: #FDFBF9;
}

.article-content-wrap .wp-block-post-content {
	max-width: 680px;
	margin: 0 auto;
	padding: 2.5rem 1.5rem 3rem;
}

/* Article paragraphs and divs (many articles use <div> instead of <p>) */
.single-article .wp-block-post-content p,
.single-article .wp-block-post-content div:not([class]) {
	font-size: 1.0625rem;
	line-height: 1.9;
	color: #3a3a3a;
	margin-bottom: 1.25rem;
}

/* Drop cap on first paragraph */
.single-article .wp-block-post-content > p:first-of-type::first-letter,
.single-article .wp-block-post-content > div:first-of-type::first-letter {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 4.2em;
	float: left;
	line-height: 0.68;
	margin: 0.08em 0.12em 0 0;
	color: #6f1611;
	font-weight: 700;
}

/* Blockquotes and pullquotes inside articles */
.single-article .wp-block-post-content blockquote,
.single-article .wp-block-post-content .wp-block-quote,
.single-article .wp-block-post-content .wp-block-pullquote {
	margin: 2rem 0;
	padding: 1.5rem 1.5rem 1.5rem 1.75rem;
	border-left: 3px solid #C4A882;
	border-right: none;
	border-top: none;
	border-bottom: none;
	background: #fff;
	border-radius: 0 8px 8px 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-style: italic;
	font-size: 1.0625rem;
	line-height: 1.7;
	color: #6f1611;
	text-align: left;
}

.single-article .wp-block-post-content .wp-block-pullquote blockquote {
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
	border-radius: 0;
}

.single-article .wp-block-post-content .wp-block-pullquote cite,
.single-article .wp-block-post-content blockquote cite {
	display: block;
	font-size: 0.8125rem;
	font-style: normal;
	font-weight: 600;
	color: #C4A882;
	margin-top: 0.75rem;
	letter-spacing: 0.02em;
}

/* Horizontal separator in articles */
.single-article .wp-block-post-content hr,
.single-article .wp-block-post-content .wp-block-separator {
	border: none;
	height: 1px;
	background: linear-gradient(90deg, transparent, #C4A882, transparent);
	margin: 2.5rem auto;
	max-width: 120px;
}

/* Lists in articles */
.single-article .wp-block-post-content ul,
.single-article .wp-block-post-content ol {
	padding-left: 1.5rem;
	margin-bottom: 1.5rem;
}

.single-article .wp-block-post-content li {
	font-size: 1.0625rem;
	line-height: 1.8;
	color: #3a3a3a;
	margin-bottom: 0.5rem;
}

/* Strong text accent */
.single-article .wp-block-post-content strong {
	color: #2a2a2a;
	font-weight: 700;
}

/* --- Support CTA Section --- */
.article-support {
	padding: 3.5rem 1.5rem;
	background: #FDF8F4;
	text-align: center;
	border-top: 1px solid #E8E0D8;
}

.article-support__inner {
	max-width: 540px;
	margin: 0 auto;
}

.article-support__icon {
	color: #C4A882;
	margin-bottom: 1.25rem;
}

.article-support__title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.25rem, 3vw, 1.625rem);
	color: #6f1611;
	line-height: 1.3;
	margin-bottom: 1rem;
}

.article-support__text {
	font-size: 0.9375rem;
	line-height: 1.75;
	color: #666;
	margin-bottom: 2rem;
}

.article-support__btn {
	width: 100%;
	justify-content: center;
	margin-bottom: 1rem;
}

.article-support__trust {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.375rem;
	font-size: 0.75rem;
	color: #999;
	margin: 0;
}

/* --- Scripture quote --- */
.article-scripture {
	padding: 2.5rem 1.5rem;
	background: #fff;
	text-align: center;
}

.article-scripture__inner {
	max-width: 560px;
	margin: 0 auto;
}

.article-scripture__quote {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.0625rem, 3vw, 1.25rem);
	font-style: italic;
	line-height: 1.6;
	color: #6f1611;
	margin-bottom: 0.5rem;
}

.article-scripture__ref {
	font-size: 0.8125rem;
	color: #C4A882;
	font-weight: 600;
	letter-spacing: 0.03em;
}

/* --- Today's Devotional --- */
.article-devotional {
	padding: 2.5rem 1.5rem;
	background: #fff;
	border-top: 1px solid #E8E0D8;
}

.article-devotional__inner {
	max-width: 680px;
	margin: 0 auto;
}

.article-devotional__label {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #999;
	margin-bottom: 1rem;
}

.article-devotional__card {
	display: block;
	padding: 1.5rem;
	background: linear-gradient(135deg, #6f1611 0%, #8b2920 100%);
	border-radius: 10px;
	text-decoration: none;
	transition: transform 0.2s, box-shadow 0.2s;
}

.article-devotional__card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(111, 22, 17, 0.2);
}

.article-devotional__content h3 {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.125rem, 3vw, 1.3125rem);
	color: #fff;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 0.625rem;
}

.article-devotional__verse {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 0.9375rem;
	font-style: italic;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.65);
	margin-bottom: 0.75rem;
}

.article-devotional__read {
	font-size: 0.8125rem;
	font-weight: 600;
	color: #C4A882;
	letter-spacing: 0.02em;
}

/* --- Related Articles --- */
.article-related {
	padding: 2.5rem 1.5rem 3rem;
	background: #fff;
	border-top: 1px solid #E8E0D8;
}

.article-related__inner {
	max-width: 680px;
	margin: 0 auto;
}

.article-related__label {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #999;
	margin-bottom: 1.25rem;
}

.article-related__list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.article-related__card {
	display: flex;
	gap: 1rem;
	padding: 1rem;
	background: #FDF8F4;
	border-radius: 10px;
	text-decoration: none;
	border: 1px solid #F0EBE6;
	transition: transform 0.2s, box-shadow 0.2s;
}

.article-related__card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.article-related__thumb {
	flex-shrink: 0;
	width: 100px;
	height: 80px;
	border-radius: 6px;
	overflow: hidden;
}

.article-related__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.article-related__text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.article-related__card h3 {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 1rem;
	color: #6f1611;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 0.375rem;
}

.article-related__card p {
	font-size: 0.8125rem;
	color: #888;
	line-height: 1.55;
	margin-bottom: 0.375rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.article-related__read {
	font-size: 0.8125rem;
	font-weight: 600;
	color: #C4A882;
}

/* --- Final CTA bar --- */
.article-final-cta {
	padding: 1.5rem;
	background: #6f1611;
	text-align: center;
}

.article-final-cta__inner {
	max-width: 600px;
	margin: 0 auto;
}

.article-final-cta p {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
}

.article-final-cta a {
	color: #F5C518;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.article-final-cta a:hover {
	color: #ffd633;
}

/* --- Article responsive --- */
@media (min-width: 640px) {
	.article-related__thumb {
		width: 130px;
		height: 90px;
	}

	.article-related__card {
		padding: 1.25rem;
		gap: 1.25rem;
	}
}

@media (min-width: 768px) {
	.article-hero {
		padding: 3rem 2rem 2.5rem;
	}

	.article-content-wrap .wp-block-post-content {
		padding: 3rem 2rem 3.5rem;
	}

	.article-support__btn {
		width: auto;
	}

	.article-devotional__card {
		padding: 1.75rem;
	}
}

/* =========================================================================
   HOMEPAGE
   ========================================================================= */

/* Remove block-gap margin on homepage */
body.home .wp-site-blocks > * {
	margin-block-start: 0 !important;
}

/* --- Hero: Today's Devotional --- */
.home-hero {
	background: #6f1611;
	color: #fff;
	padding: 2rem 1.5rem 2.5rem;
}

.home-hero__inner {
	max-width: 720px;
	margin: 0 auto;
}

.home-hero__label {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #C4A882;
	margin-bottom: 1rem;
}

.home-hero__title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.875rem, 5vw, 2.75rem);
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 1.25rem;
}

.home-hero__title a {
	color: #fff;
	text-decoration: none;
}

.home-hero__title a:hover {
	color: #F5EDE6;
}

.home-hero__verse {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
	font-style: italic;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 1.75rem;
}

.home-hero__btn {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 600;
	color: #6f1611;
	background: #F5C518;
	padding: 0.75rem 2rem;
	border-radius: 6px;
	text-decoration: none;
	transition: background 0.15s, transform 0.15s;
}

.home-hero__btn:hover {
	background: #ffd633;
	transform: translateY(-1px);
}

/* --- Shared section label --- */
.home-section__label {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #999;
	text-align: center;
	margin-bottom: 1.5rem;
}

.home-section__more {
	text-align: center;
	margin-top: 1.5rem;
}

.home-section__more a {
	font-size: 0.875rem;
	font-weight: 600;
	color: #6f1611;
	text-decoration: none;
}

.home-section__more a:hover {
	color: #C4A882;
}

/* --- Recent Devotionals --- */
.home-devotionals {
	padding: 3rem 1.5rem;
	background: #fff;
}

.home-devotionals__inner {
	max-width: 640px;
	margin: 0 auto;
}

.home-devotionals__list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.home-devotional__item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem 0 1.25rem 1.25rem;
	border-left: 3px solid #F0EBE6;
	text-decoration: none;
	transition: border-color 0.2s;
}

.home-devotional__item:hover {
	border-left-color: #C4A882;
}

.home-devotional__text {
	flex: 1;
	min-width: 0;
}

.home-devotional__item h3 {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1rem, 2.5vw, 1.125rem);
	color: #6f1611;
	font-weight: 700;
	line-height: 1.35;
	margin: 0 0 0.25rem;
}

.home-devotional__item p {
	font-size: 0.875rem;
	color: #999;
	line-height: 1.55;
	margin: 0;
}

.home-devotional__arrow {
	flex-shrink: 0;
	font-size: 1.125rem;
	color: #E8E0D8;
	transition: color 0.2s, transform 0.2s;
}

.home-devotional__item:hover .home-devotional__arrow {
	color: #C4A882;
	transform: translateX(3px);
}

/* --- Subscribe CTA --- */
.home-subscribe {
	padding: 3.5rem 1.5rem;
	background: #F5EDE6;
	text-align: center;
}

.home-subscribe__inner {
	max-width: 480px;
	margin: 0 auto;
}

.home-subscribe__icon {
	color: #C4A882;
	margin-bottom: 1rem;
}

.home-subscribe__title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.25rem, 3vw, 1.625rem);
	color: #6f1611;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 0.75rem;
}

.home-subscribe__text {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: #666;
	margin-bottom: 1.5rem;
}

.home-subscribe__btn {
	width: 100%;
	justify-content: center;
}

/* --- Featured Articles --- */
.home-articles {
	padding: 3rem 1.5rem;
	background: #fff;
}

.home-articles__inner {
	max-width: 800px;
	margin: 0 auto;
}

.home-articles__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.home-article__card {
	display: flex;
	gap: 1rem;
	padding: 1rem;
	background: #FDF8F4;
	border-radius: 10px;
	text-decoration: none;
	border: 1px solid #F0EBE6;
	transition: transform 0.2s, box-shadow 0.2s;
}

.home-article__card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.home-article__thumb {
	flex-shrink: 0;
	width: 110px;
	height: 85px;
	border-radius: 6px;
	overflow: hidden;
}

.home-article__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-article__text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.home-article__card h3 {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 1rem;
	color: #6f1611;
	font-weight: 700;
	line-height: 1.35;
	margin: 0 0 0.375rem;
}

.home-article__card p {
	font-size: 0.8125rem;
	color: #888;
	line-height: 1.55;
	margin: 0 0 0.375rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.home-article__read {
	font-size: 0.8125rem;
	font-weight: 600;
	color: #C4A882;
}

/* --- Support CTA --- */
.home-support {
	padding: 3.5rem 1.5rem;
	background: #6f1611;
	color: #fff;
	text-align: center;
}

.home-support__inner {
	max-width: 520px;
	margin: 0 auto;
}

.home-support__icon {
	color: #C4A882;
	margin-bottom: 1rem;
}

.home-support__title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.25rem, 3vw, 1.625rem);
	font-weight: 700;
	line-height: 1.3;
	color: #fff;
	margin-bottom: 0.75rem;
}

.home-support__text {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 2rem;
}

.home-support__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.home-support__wall-link {
	font-size: 0.8125rem;
	font-weight: 600;
	color: #C4A882;
	text-decoration: none;
}

.home-support__wall-link:hover {
	color: #F5C518;
}

/* --- Homepage responsive --- */
@media (min-width: 640px) {
	.home-articles__grid {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.home-article__card {
		flex-direction: column;
		gap: 0;
	}

	.home-article__thumb {
		width: 100%;
		height: 120px;
		border-radius: 6px 6px 0 0;
	}

	.home-article__text {
		padding: 1rem;
	}

	.home-subscribe__btn {
		width: auto;
	}
}

@media (min-width: 768px) {
	.home-hero {
		padding: 4.5rem 2rem 4rem;
	}

	.home-devotionals,
	.home-articles {
		padding: 3.5rem 2rem;
	}

	.home-subscribe,
	.home-support {
		padding: 4rem 2rem;
	}
}

/* =========================================================================
   CATEGORY ARCHIVE
   ========================================================================= */

/* Remove block-gap margin */
body.category .wp-site-blocks > * {
	margin-block-start: 0 !important;
}

/* --- Hero --- */
.cat-hero {
	background: #6f1611;
	color: #fff;
	padding: 3rem 1.5rem 2.5rem;
	text-align: center;
}

.cat-hero__inner {
	max-width: 560px;
	margin: 0 auto;
}

.cat-hero__title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.5rem, 4vw, 2.25rem);
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	margin: 0 0 0.75rem;
}

.cat-hero__desc {
	font-size: 0.9375rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.55);
	margin: 0;
}

/* --- Posts list --- */
.cat-posts {
	padding: 2.5rem 1.5rem 3rem;
	background: #fff;
}

.cat-posts__inner {
	max-width: 680px;
	margin: 0 auto;
}

.cat-posts__list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* Devotional card — border-left list style */
.cat-post__card {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem 0 1.25rem 1.25rem;
	border-left: 3px solid #F0EBE6;
	text-decoration: none;
	transition: border-color 0.2s;
}

.cat-post__card:hover {
	border-left-color: #C4A882;
}

.cat-post__text {
	flex: 1;
	min-width: 0;
}

.cat-post__card h3 {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1rem, 2.5vw, 1.125rem);
	color: #6f1611;
	font-weight: 700;
	line-height: 1.35;
	margin: 0 0 0.25rem;
}

.cat-post__card p {
	font-size: 0.875rem;
	color: #999;
	line-height: 1.55;
	margin: 0;
}

.cat-post__arrow {
	flex-shrink: 0;
	font-size: 1.125rem;
	color: #E8E0D8;
	transition: color 0.2s, transform 0.2s;
}

.cat-post__card:hover .cat-post__arrow {
	color: #C4A882;
	transform: translateX(3px);
}

.cat-post__read {
	font-size: 0.8125rem;
	font-weight: 600;
	color: #C4A882;
}

/* Article card with thumbnail */
.cat-post__card--has-thumb {
	padding: 1rem;
	border-left: none;
	background: #FDF8F4;
	border-radius: 10px;
	border: 1px solid #F0EBE6;
	margin-bottom: 1rem;
	transition: transform 0.2s, box-shadow 0.2s;
}

.cat-post__card--has-thumb:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.cat-post__thumb {
	flex-shrink: 0;
	width: 110px;
	height: 85px;
	border-radius: 6px;
	overflow: hidden;
}

.cat-post__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cat-post__card--has-thumb p {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* --- Pagination --- */
.cat-pagination {
	margin-top: 2.5rem;
	text-align: center;
}

.cat-pagination__links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.25rem;
	flex-wrap: wrap;
}

.cat-pagination__links a,
.cat-pagination__links span {
	display: inline-block;
	padding: 0.5rem 0.875rem;
	font-size: 0.875rem;
	border-radius: 6px;
	text-decoration: none;
	transition: background 0.15s, color 0.15s;
}

.cat-pagination__links a {
	color: #6f1611;
}

.cat-pagination__links a:hover {
	background: #FDF8F4;
}

.cat-pagination__links .current {
	background: #6f1611;
	color: #fff;
	font-weight: 600;
}

.cat-pagination__links .dots {
	color: #ccc;
}

/* --- Category responsive --- */
@media (min-width: 768px) {
	.cat-hero {
		padding: 3.5rem 2rem 3rem;
	}

	.cat-posts {
		padding: 3rem 2rem 3.5rem;
	}
}
