/**
 * Yemen4Christ — Main Design CSS
 *
 * Design tokens converted from the React/Tailwind app (index.css + tailwind.config.ts).
 * Color palette: Yemeni flag red, black, gold accent.
 *
 * @package Yemen4Christ
 */

/* ==========================================================================
   1. CSS Custom Properties (Design Tokens)
   ========================================================================== */

:root {
	/*
	 * "Light of Yemen" — Yemeni + Spiritual Identity
	 *
	 * Inspired by: Old Sana'a sandstone, Yemeni honey gold,
	 * deep spiritual navy, warm desert earth tones.
	 */

	/* Primary: Warm Amber/Brown — Yemeni sandstone */
	--y4c-primary: hsl(28, 65%, 45%);
	--y4c-primary-light: hsl(28, 60%, 60%);
	--y4c-primary-dark: hsl(28, 70%, 32%);
	--y4c-primary-fg: hsl(0, 0%, 100%);

	/* Secondary: Deep Navy — spiritual depth */
	--y4c-secondary: hsl(220, 35%, 20%);
	--y4c-secondary-fg: hsl(0, 0%, 100%);

	/* Accent: Warm Gold — Yemeni honey, divine light */
	--y4c-accent: hsl(38, 85%, 55%);
	--y4c-accent-fg: hsl(0, 0%, 100%);

	/* Background: Warm off-white — cream/parchment */
	--y4c-background: hsl(35, 30%, 98%);
	--y4c-foreground: hsl(220, 25%, 18%);

	/* Cards */
	--y4c-card: hsl(0, 0%, 100%);
	--y4c-card-fg: hsl(220, 25%, 18%);

	/* Muted: Warm cream */
	--y4c-muted: hsl(35, 20%, 95%);
	--y4c-muted-fg: hsl(220, 10%, 45%);

	/* Border: Warm */
	--y4c-border: hsl(35, 15%, 88%);

	/* Gradients */
	--y4c-gradient-heaven: linear-gradient(135deg, hsl(220, 35%, 22%), hsl(220, 40%, 15%));
	--y4c-gradient-divine: linear-gradient(135deg, hsl(35, 40%, 97%), hsl(35, 30%, 93%));
	--y4c-gradient-light: linear-gradient(180deg, hsl(35, 30%, 99%), hsl(35, 25%, 96%));

	/* Shadows — warm amber glow */
	--y4c-shadow-divine: 0 10px 40px -10px hsla(28, 65%, 45%, 0.2);
	--y4c-shadow-heavenly: 0 10px 40px -10px hsla(28, 65%, 45%, 0.15);
	--y4c-shadow-card: 0 1px 4px rgba(28, 20, 10, 0.08), 0 1px 2px rgba(28, 20, 10, 0.04);
	--y4c-shadow-card-hover: 0 10px 30px -5px rgba(28, 20, 10, 0.12), 0 4px 10px -5px rgba(28, 20, 10, 0.06);

	/* Typography */
	--y4c-font-body: 'Noto Kufi Arabic', 'Segoe UI', Tahoma, Arial, sans-serif;
	--y4c-font-heading: 'Noto Kufi Arabic', 'Segoe UI', Tahoma, Arial, sans-serif;

	/* Layout */
	--y4c-container-max: 1400px;
	--y4c-container-padding: 2rem;
	--y4c-radius: 0.5rem;
	--y4c-radius-lg: 0.75rem;
}

/* ==========================================================================
   2. Reset & Base
   ========================================================================== */

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

body {
	font-family: var(--y4c-font-body);
	font-size: 1rem;
	line-height: 1.7;
	color: var(--y4c-foreground);
	background: var(--y4c-background);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

a {
	color: var(--y4c-primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--y4c-primary-dark);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--y4c-font-heading);
	font-weight: 700;
	line-height: 1.3;
	color: var(--y4c-foreground);
}

/* ==========================================================================
   3. Layout
   ========================================================================== */

.y4c-container {
	max-width: var(--y4c-container-max);
	margin-inline: auto;
	padding-inline: var(--y4c-container-padding);
}

.y4c-site {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.y4c-site > main {
	flex: 1;
}

/* ==========================================================================
   4. Header
   ========================================================================== */

.y4c-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: hsla(35, 30%, 99%, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--y4c-border);
	box-shadow: 0 1px 3px rgba(28, 20, 10, 0.06);
}

.y4c-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 5rem;
}

.y4c-header__brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-shrink: 0;
}

.y4c-header__brand .y4c-logo__link,
.y4c-header__brand .custom-logo-link {
	display: flex;
	align-items: center;
}

.y4c-header__brand .y4c-logo__img,
.y4c-header__brand .custom-logo {
	height: 3.5rem;
	width: 3.5rem;
	object-fit: contain;
	border-radius: 50%;
}

.y4c-header__titles {
	display: none;
}

@media (min-width: 640px) {
	.y4c-header__titles {
		display: flex;
		flex-direction: column;
	}
}

.y4c-header__site-name {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--y4c-foreground);
	line-height: 1.2;
}

.y4c-header__site-name:hover {
	color: var(--y4c-foreground);
}

.y4c-header__tagline {
	font-size: 0.75rem;
	color: var(--y4c-muted-fg);
}

/* Desktop Nav */
.y4c-nav--desktop {
	display: none;
}

@media (min-width: 1024px) {
	.y4c-nav--desktop {
		display: flex;
		align-items: center;
	}
}

.y4c-nav__list {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 0.125rem;
}

.y4c-nav__list a {
	display: block;
	padding: 0.5rem 0.75rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--y4c-foreground);
	border-radius: var(--y4c-radius);
	transition: all 0.2s ease;
	white-space: nowrap;
}

.y4c-nav__list a:hover,
.y4c-nav__list .current-menu-item > a,
.y4c-nav__list .current_page_item > a {
	color: var(--y4c-primary);
	background: hsla(28, 65%, 45%, 0.06);
}

/* Dropdown Submenus */
.y4c-nav__list > li {
	position: relative;
}

.y4c-nav__list .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	inset-inline-end: 0;
	min-width: 200px;
	background: var(--y4c-card);
	border: 1px solid var(--y4c-border);
	border-radius: var(--y4c-radius-lg);
	box-shadow: var(--y4c-shadow-card-hover);
	padding: 0.25rem 0;
	z-index: 100;
	list-style: none;
}

.y4c-nav__list > li:hover > .sub-menu {
	display: block;
	animation: y4c-fade-in 0.15s ease;
}

.y4c-nav__list .sub-menu a {
	padding: 0.625rem 1rem;
	font-size: 0.875rem;
}

/* Mobile Toggle */
.y4c-header__toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--y4c-foreground);
	border-radius: var(--y4c-radius);
}

.y4c-header__toggle:hover {
	background: var(--y4c-muted);
}

@media (min-width: 1024px) {
	.y4c-header__toggle {
		display: none;
	}
}

.y4c-header__toggle .y4c-icon--close {
	display: none;
}

.y4c-header__toggle[aria-expanded="true"] .y4c-icon--menu {
	display: none;
}

.y4c-header__toggle[aria-expanded="true"] .y4c-icon--close {
	display: block;
}

/* Mobile Nav */
.y4c-nav--mobile {
	display: none;
	padding-bottom: 1rem;
}

.y4c-nav--mobile.is-open {
	display: block;
	animation: y4c-slide-down 0.3s ease;
}

@media (min-width: 1024px) {
	.y4c-nav--mobile {
		display: none !important;
	}
}

.y4c-nav__list--mobile {
	flex-direction: column;
	gap: 0;
}

.y4c-nav__list--mobile a {
	padding: 0.75rem 1rem;
	width: 100%;
}

.y4c-nav__list--mobile .sub-menu {
	position: static;
	display: none;
	box-shadow: none;
	border: none;
	border-radius: 0;
	padding: 0;
	padding-inline-start: 1rem;
}

.y4c-nav__list--mobile > li.y4c-submenu-open > .sub-menu {
	display: block;
}

/* ==========================================================================
   5. Icons
   ========================================================================== */

.y4c-icon {
	width: 1.5rem;
	height: 1.5rem;
	flex-shrink: 0;
}

.y4c-icon--sm {
	width: 1rem;
	height: 1rem;
}

.y4c-icon--lg {
	width: 2rem;
	height: 2rem;
}

.y4c-icon--xl {
	width: 3rem;
	height: 3rem;
}

.y4c-icon--hero {
	width: 4rem;
	height: 4rem;
}

/* ==========================================================================
   6. Buttons
   ========================================================================== */

.y4c-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 2rem;
	font-family: var(--y4c-font-body);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5;
	border: 2px solid transparent;
	border-radius: var(--y4c-radius);
	cursor: pointer;
	transition: all 0.2s ease;
	text-decoration: none;
	white-space: nowrap;
}

.y4c-btn--lg {
	padding: 1rem 2.5rem;
	font-size: 1.125rem;
}

.y4c-btn--primary {
	background: var(--y4c-gradient-heaven);
	color: var(--y4c-primary-fg);
	box-shadow: var(--y4c-shadow-heavenly);
}

.y4c-btn--primary:hover {
	opacity: 0.9;
	color: var(--y4c-primary-fg);
}

.y4c-btn--secondary {
	background: var(--y4c-secondary);
	color: var(--y4c-secondary-fg);
	box-shadow: var(--y4c-shadow-divine);
}

.y4c-btn--secondary:hover {
	opacity: 0.9;
	color: var(--y4c-secondary-fg);
}

.y4c-btn--outline {
	background: transparent;
	color: var(--y4c-primary);
	border-color: var(--y4c-primary);
}

.y4c-btn--outline:hover {
	background: var(--y4c-primary);
	color: var(--y4c-primary-fg);
}

.y4c-btn--outline-white {
	background: transparent;
	color: var(--y4c-primary-fg);
	border-color: var(--y4c-primary-fg);
}

.y4c-btn--outline-white:hover {
	background: var(--y4c-primary-fg);
	color: var(--y4c-primary);
}

.y4c-btn--ghost {
	background: transparent;
	color: var(--y4c-primary);
	border-color: transparent;
}

.y4c-btn--ghost:hover {
	background: hsla(28, 65%, 45%, 0.06);
}

.y4c-btn--block {
	width: 100%;
}

.y4c-btn--link {
	background: none;
	border: none;
	padding: 0;
	color: var(--y4c-primary);
	font-weight: 500;
}

.y4c-btn--link:hover {
	text-decoration: underline;
}

/* ==========================================================================
   7. Cards
   ========================================================================== */

.y4c-card {
	background: var(--y4c-card);
	border: 2px solid var(--y4c-border);
	border-radius: var(--y4c-radius-lg);
	box-shadow: var(--y4c-shadow-card);
	transition: box-shadow 0.3s ease;
	overflow: hidden;
}

.y4c-card:hover {
	box-shadow: var(--y4c-shadow-heavenly);
}

.y4c-card__body {
	padding: 1.5rem;
}

.y4c-card__icon-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem;
	border-radius: var(--y4c-radius);
	margin-bottom: 1rem;
}

.y4c-card__icon-wrap--primary {
	background: hsla(28, 65%, 45%, 0.1);
	color: var(--y4c-primary);
}

.y4c-card__icon-wrap--accent {
	background: hsla(38, 85%, 55%, 0.1);
	color: var(--y4c-accent);
}

.y4c-card__title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.y4c-card__text {
	color: var(--y4c-muted-fg);
	margin-bottom: 1rem;
	line-height: 1.6;
}

/* ==========================================================================
   8. Badge
   ========================================================================== */

.y4c-badge {
	display: inline-block;
	padding: 0.125rem 0.625rem;
	font-size: 0.75rem;
	font-weight: 600;
	border: 1px solid var(--y4c-border);
	border-radius: 9999px;
	color: var(--y4c-muted-fg);
	background: var(--y4c-muted);
	text-decoration: none;
}

.y4c-badge:hover {
	color: var(--y4c-primary);
}

/* ==========================================================================
   9. Hero Section
   ========================================================================== */

.y4c-hero {
	position: relative;
	padding: 5rem 0 6rem;
	overflow: hidden;
	background: var(--y4c-gradient-light);
}

.y4c-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, hsla(35, 40%, 90%, 0.4), hsla(28, 50%, 85%, 0.15));
	pointer-events: none;
}

.y4c-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 56rem;
	margin-inline: auto;
	text-align: center;
}

.y4c-hero__logo {
	height: 8rem;
	width: 8rem;
	object-fit: contain;
	margin-inline: auto;
	margin-bottom: 1.5rem;
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
	animation: y4c-fade-in 0.6s ease;
	background: transparent;
	border: none;
	box-shadow: none;
}

.y4c-header__brand .y4c-logo__img,
.y4c-header__brand .custom-logo {
	height: 3.5rem;
	width: 3.5rem;
	object-fit: contain;
	border-radius: 50%;
	background: transparent;
}

.y4c-footer__logo-img {
	height: 3rem;
	width: 3rem;
	object-fit: contain;
	margin-bottom: 1rem;
	background: transparent;
}

.y4c-hero__title {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.y4c-hero__subtitle {
	font-size: 1.25rem;
	color: var(--y4c-muted-fg);
	margin-bottom: 0.5rem;
}

.y4c-hero__tagline {
	font-size: 1.125rem;
	color: var(--y4c-foreground);
	opacity: 0.8;
	max-width: 40rem;
	margin-inline: auto;
	margin-bottom: 2rem;
	line-height: 1.6;
}

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

@media (min-width: 640px) {
	.y4c-hero__buttons {
		flex-direction: row;
		justify-content: center;
	}
}

@media (min-width: 768px) {
	.y4c-hero {
		padding: 8rem 0 10rem;
	}

	.y4c-hero__title {
		font-size: 3.75rem;
	}

	.y4c-hero__subtitle {
		font-size: 1.5rem;
	}

	.y4c-hero__tagline {
		font-size: 1.25rem;
	}
}

/* ==========================================================================
   10. Impact Statistics
   ========================================================================== */

.y4c-stats {
	padding: 4rem 0;
	background: var(--y4c-background);
}

.y4c-stats__title {
	font-size: 1.875rem;
	text-align: center;
	margin-bottom: 3rem;
}

.y4c-stats__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	max-width: 64rem;
	margin-inline: auto;
}

@media (min-width: 768px) {
	.y4c-stats__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.y4c-stat-card {
	text-align: center;
	padding: 1.5rem;
}

.y4c-stat-card__number {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--y4c-primary);
	margin-bottom: 0.5rem;
}

.y4c-stat-card__label {
	color: var(--y4c-muted-fg);
	font-size: 0.875rem;
}

/* ==========================================================================
   11. Mission Statement
   ========================================================================== */

.y4c-mission {
	padding: 4rem 0;
	background: var(--y4c-background);
}

.y4c-mission__inner {
	max-width: 48rem;
	margin-inline: auto;
	text-align: center;
}

.y4c-mission__icon {
	color: var(--y4c-accent);
	margin-inline: auto;
	margin-bottom: 1rem;
}

.y4c-mission__title {
	font-size: 1.875rem;
	margin-bottom: 1rem;
}

.y4c-mission__text {
	font-size: 1.125rem;
	color: var(--y4c-muted-fg);
	line-height: 1.8;
}

/* ==========================================================================
   12. Ministries
   ========================================================================== */

.y4c-ministries {
	padding: 4rem 0;
}

.y4c-ministries__title {
	font-size: 1.875rem;
	text-align: center;
	margin-bottom: 3rem;
}

.y4c-ministries__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.y4c-ministries__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.y4c-ministries__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ==========================================================================
   13. Call to Action
   ========================================================================== */

.y4c-cta {
	padding: 5rem 0;
	background: var(--y4c-gradient-heaven);
	text-align: center;
}

.y4c-cta__icon {
	color: var(--y4c-primary-fg);
	opacity: 0.8;
	margin-inline: auto;
	margin-bottom: 1.5rem;
}

.y4c-cta__title {
	font-size: 1.875rem;
	color: var(--y4c-primary-fg);
	margin-bottom: 1.5rem;
}

.y4c-cta__text {
	font-size: 1.125rem;
	color: var(--y4c-primary-fg);
	opacity: 0.9;
	max-width: 40rem;
	margin-inline: auto;
	margin-bottom: 2rem;
	line-height: 1.7;
}

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

@media (min-width: 640px) {
	.y4c-cta__buttons {
		flex-direction: row;
		justify-content: center;
	}
}

@media (min-width: 768px) {
	.y4c-cta__title {
		font-size: 2.5rem;
	}
}

/* ==========================================================================
   14. Latest Posts Section
   ========================================================================== */

.y4c-latest-posts {
	padding: 4rem 0;
	background: var(--y4c-muted);
}

.y4c-latest-posts__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 2rem;
	flex-wrap: wrap;
	gap: 1rem;
}

.y4c-latest-posts__title {
	font-size: 1.875rem;
}

.y4c-latest-posts__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.y4c-latest-posts__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.y4c-latest-posts__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ==========================================================================
   15. Post Card
   ========================================================================== */

.y4c-post-card {
	background: var(--y4c-card);
	border-radius: var(--y4c-radius-lg);
	box-shadow: var(--y4c-shadow-card);
	overflow: hidden;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
	display: flex;
	flex-direction: column;
}

.y4c-post-card:hover {
	box-shadow: var(--y4c-shadow-card-hover);
	transform: translateY(-2px);
}

.y4c-post-card__thumb {
	position: relative;
	overflow: hidden;
}

.y4c-post-card__image {
	width: 100%;
	height: 12rem;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.y4c-post-card:hover .y4c-post-card__image {
	transform: scale(1.03);
}

.y4c-post-card__image--placeholder {
	object-fit: contain;
	background: var(--y4c-muted);
	padding: 2rem;
}

.y4c-post-card__content {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.y4c-post-card__category {
	margin-bottom: 0.75rem;
}

.y4c-post-card__title {
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.y4c-post-card__title a {
	color: var(--y4c-foreground);
}

.y4c-post-card__title a:hover {
	color: var(--y4c-primary);
}

.y4c-post-card__excerpt {
	color: var(--y4c-muted-fg);
	font-size: 0.875rem;
	line-height: 1.6;
	margin-bottom: 1rem;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex: 1;
}

.y4c-post-meta {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 0.8125rem;
	color: var(--y4c-muted-fg);
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.y4c-post-meta__date {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
}

.y4c-post-card__read-more {
	margin-top: auto;
}

/* ==========================================================================
   16. Footer
   ========================================================================== */

.y4c-footer {
	background: var(--y4c-gradient-heaven);
	color: var(--y4c-primary-fg);
	margin-top: 5rem;
}

.y4c-footer a {
	color: var(--y4c-primary-fg);
	opacity: 0.9;
}

.y4c-footer a:hover {
	opacity: 1;
	text-decoration: underline;
	color: var(--y4c-primary-fg);
}

.y4c-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	padding: 3rem 0;
}

@media (min-width: 768px) {
	.y4c-footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.y4c-footer__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.y4c-footer__logo-img {
	height: 3rem;
	width: 3rem;
	object-fit: contain;
	margin-bottom: 1rem;
}

.y4c-footer__heading {
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--y4c-primary-fg);
}

.y4c-footer__text {
	font-size: 0.875rem;
	opacity: 0.9;
	line-height: 1.7;
}

.y4c-footer__links {
	list-style: none;
}

.y4c-footer__links li {
	margin-bottom: 0.5rem;
}

.y4c-footer__links a {
	font-size: 0.875rem;
}

.y4c-footer__social {
	list-style: none;
}

.y4c-footer__social li {
	margin-bottom: 0.5rem;
}

.y4c-footer__social a {
	font-size: 0.875rem;
}

.y4c-footer__contact {
	list-style: none;
}

.y4c-footer__contact li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
	font-size: 0.875rem;
	opacity: 0.9;
}

.y4c-footer__bottom {
	border-top: 1px solid hsla(0, 0%, 100%, 0.15);
	padding: 2rem 0;
	text-align: center;
}

.y4c-footer__bottom p {
	font-size: 0.875rem;
	opacity: 0.9;
}

.y4c-footer__verse {
	font-size: 0.75rem;
	opacity: 0.75;
	margin-top: 0.5rem;
}

/* ==========================================================================
   17. Blog Index (home.php)
   ========================================================================== */

.y4c-blog-header {
	text-align: center;
	padding: 3rem 0;
}

.y4c-blog-header__title {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.y4c-blog-header__desc {
	font-size: 1.125rem;
	color: var(--y4c-muted-fg);
	max-width: 40rem;
	margin-inline: auto;
}

.y4c-posts-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	padding-bottom: 3rem;
}

@media (min-width: 768px) {
	.y4c-posts-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.y4c-posts-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Pagination */
.y4c-pagination {
	padding: 2rem 0 4rem;
	text-align: center;
}

.y4c-pagination .nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.y4c-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.75rem;
	border-radius: var(--y4c-radius);
	border: 1px solid var(--y4c-border);
	color: var(--y4c-foreground);
	font-size: 0.875rem;
	text-decoration: none;
	transition: all 0.2s ease;
}

.y4c-pagination .page-numbers.current,
.y4c-pagination .page-numbers:hover {
	background: var(--y4c-primary);
	color: var(--y4c-primary-fg);
	border-color: var(--y4c-primary);
}

/* ==========================================================================
   18. Single Post
   ========================================================================== */

.y4c-single {
	padding: 3rem 0;
}

.y4c-single__inner {
	max-width: 48rem;
	margin-inline: auto;
}

.y4c-single__thumb {
	border-radius: var(--y4c-radius-lg);
	overflow: hidden;
	margin-bottom: 2rem;
}

.y4c-single__thumb img {
	width: 100%;
	max-height: 28rem;
	object-fit: cover;
}

.y4c-single__title {
	font-size: 2.25rem;
	margin-bottom: 1rem;
}

.y4c-single__content {
	font-size: 1.0625rem;
	line-height: 1.9;
}

.y4c-single__content p {
	margin-bottom: 1.25rem;
}

.y4c-single__content h2 {
	font-size: 1.5rem;
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.y4c-single__content h3 {
	font-size: 1.25rem;
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
}

.y4c-single__content img {
	border-radius: var(--y4c-radius);
	margin: 1.5rem 0;
}

.y4c-single__content blockquote {
	border-inline-start: 4px solid var(--y4c-primary);
	padding: 1rem 1.5rem;
	margin: 1.5rem 0;
	background: var(--y4c-muted);
	border-radius: var(--y4c-radius);
	font-style: italic;
}

.y4c-single__content ul,
.y4c-single__content ol {
	padding-inline-start: 1.5rem;
	margin-bottom: 1.25rem;
}

.y4c-single__nav {
	display: flex;
	justify-content: space-between;
	padding-top: 2rem;
	margin-top: 2rem;
	border-top: 1px solid var(--y4c-border);
	gap: 1rem;
}

/* ==========================================================================
   19. Page Template
   ========================================================================== */

.y4c-page {
	padding: 3rem 0;
}

.y4c-page__inner {
	max-width: 48rem;
	margin-inline: auto;
}

.y4c-page__title {
	font-size: 2.25rem;
	margin-bottom: 2rem;
}

.y4c-page__content {
	font-size: 1.0625rem;
	line-height: 1.9;
}

.y4c-page__content p {
	margin-bottom: 1.25rem;
}

/* ==========================================================================
   20. Archive / Search
   ========================================================================== */

.y4c-archive-header {
	text-align: center;
	padding: 3rem 0 2rem;
}

.y4c-archive-header__title {
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.y4c-archive-header__desc {
	color: var(--y4c-muted-fg);
}

/* ==========================================================================
   21. 404
   ========================================================================== */

.y4c-404 {
	text-align: center;
	padding: 6rem 0;
}

.y4c-404__title {
	font-size: 6rem;
	font-weight: 800;
	color: var(--y4c-primary);
	line-height: 1;
	margin-bottom: 1rem;
}

.y4c-404__text {
	font-size: 1.25rem;
	color: var(--y4c-muted-fg);
	margin-bottom: 2rem;
}

/* ==========================================================================
   22. Utilities
   ========================================================================== */

.y4c-text-center {
	text-align: center;
}

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

.y4c-no-posts {
	text-align: center;
	padding: 3rem;
	color: var(--y4c-muted-fg);
	font-size: 1.125rem;
}

/* ==========================================================================
   23. Language Button + Modal
   ========================================================================== */

/* Header login button */
.y4c-login-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	color: var(--y4c-muted-fg);
	border: 1.5px solid var(--y4c-border);
	border-radius: 50%;
	text-decoration: none;
	transition: all 0.2s ease;
}

.y4c-login-btn:hover {
	color: var(--y4c-primary);
	border-color: var(--y4c-primary);
	background: hsla(28, 65%, 45%, 0.06);
}

/* ==========================================================================
   Login Modal
   ========================================================================== */

.y4c-login-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 10000;
}

.y4c-login-modal.is-open {
	display: flex;
	align-items: center;
	justify-content: center;
}

.y4c-login-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(4px);
}

.y4c-login-modal__box {
	position: relative;
	width: 90%;
	max-width: 400px;
	background: #fff;
	border-radius: 1rem;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
	padding: 2rem;
	animation: y4c-fade-in 0.2s ease;
}

.y4c-login-modal__close {
	position: absolute;
	top: 1rem;
	inset-inline-end: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--y4c-muted-fg);
	border-radius: 50%;
	transition: all 0.2s;
}

.y4c-login-modal__close:hover {
	background: var(--y4c-muted);
	color: var(--y4c-foreground);
}

.y4c-login-modal__header {
	text-align: center;
	margin-bottom: 1.5rem;
}

.y4c-login-modal__logo {
	width: 3.5rem;
	height: 3.5rem;
	margin: 0 auto 0.75rem;
}

.y4c-login-modal__title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--y4c-foreground);
	margin: 0;
}

.y4c-login-modal__field {
	margin-bottom: 1rem;
}

.y4c-login-modal__field label {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--y4c-foreground);
	margin-bottom: 0.375rem;
}

.y4c-login-modal__input-wrap {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	border: 1.5px solid var(--y4c-border);
	border-radius: var(--y4c-radius);
	padding: 0 0.75rem;
	transition: border-color 0.2s;
}

.y4c-login-modal__input-wrap:focus-within {
	border-color: var(--y4c-primary);
}

.y4c-login-modal__input-wrap .y4c-icon {
	color: var(--y4c-muted-fg);
	flex-shrink: 0;
}

.y4c-login-modal__input-wrap input {
	flex: 1;
	border: none;
	outline: none;
	padding: 0.625rem 0;
	font-size: 0.9375rem;
	font-family: var(--y4c-font-body);
	background: transparent;
	color: var(--y4c-foreground);
}

.y4c-login-modal__remember {
	margin-bottom: 1.25rem;
}

.y4c-login-modal__remember label {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	font-size: 0.8125rem;
	color: var(--y4c-muted-fg);
	cursor: pointer;
}

.y4c-login-modal__remember input[type="checkbox"] {
	accent-color: var(--y4c-primary);
}

.y4c-login-modal__error {
	background: hsl(0, 80%, 96%);
	color: hsl(0, 70%, 45%);
	border: 1px solid hsl(0, 70%, 90%);
	border-radius: var(--y4c-radius);
	padding: 0.625rem 0.875rem;
	font-size: 0.8125rem;
	font-weight: 500;
	margin-bottom: 1rem;
	text-align: center;
}

.y4c-login-modal__forgot {
	text-align: center;
	margin-top: 1rem;
}

.y4c-login-modal__forgot a {
	font-size: 0.8125rem;
	color: var(--y4c-muted-fg);
}

.y4c-login-modal__forgot a:hover {
	color: var(--y4c-primary);
}

/* Logged-in view */
.y4c-login-modal__logged-in {
	text-align: center;
}

.y4c-login-modal__avatar {
	margin-bottom: 0.75rem;
}

.y4c-login-modal__avatar img {
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	margin: 0 auto;
	border: 2px solid var(--y4c-border);
}

.y4c-login-modal__welcome {
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 1.25rem;
}

.y4c-login-modal__links {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

/* GTranslate in header */
.y4c-gtranslate-wrap {
	display: flex;
	align-items: center;
}
.y4c-gtranslate-wrap .gt_switcher {
	border: 1px solid var(--y4c-border) !important;
	border-radius: var(--y4c-radius) !important;
	background: transparent !important;
	box-shadow: none !important;
	font-family: var(--y4c-font-body) !important;
	font-size: 0.8125rem !important;
}
.y4c-gtranslate-wrap .gt_switcher:hover {
	border-color: var(--y4c-primary) !important;
}
.gt_float_switcher { display: none !important; }
body { top: 0 !important; }
.goog-te-banner-frame { display: none !important; }
.skiptranslate { display: none !important; }
#goog-gt-tt { display: none !important; }

/* Header language button (legacy - kept for fallback) */
.y4c-lang-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0.375rem 0.875rem;
	font-size: 0.8125rem;
	font-weight: 600;
	font-family: var(--y4c-font-body);
	color: var(--y4c-foreground);
	background: transparent;
	border: 1.5px solid var(--y4c-border);
	border-radius: var(--y4c-radius);
	cursor: pointer;
	transition: all 0.2s ease;
	white-space: nowrap;
	text-decoration: none;
}

.y4c-lang-btn:hover {
	border-color: var(--y4c-primary);
	color: var(--y4c-primary);
	background: hsla(28, 65%, 45%, 0.04);
}

/* Language modal */
.y4c-lang-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 10000;
}

.y4c-lang-modal.is-open {
	display: flex;
	align-items: center;
	justify-content: center;
}

.y4c-lang-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(4px);
}

.y4c-lang-modal__box {
	position: relative;
	width: 90%;
	max-width: 700px;
	max-height: 80vh;
	background: #fff;
	border-radius: 1rem;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	animation: y4c-fade-in 0.2s ease;
}

.y4c-lang-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid var(--y4c-border);
}

.y4c-lang-modal__title {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--y4c-foreground);
	margin: 0;
}

.y4c-lang-modal__close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--y4c-muted-fg);
	border-radius: 50%;
	transition: all 0.2s;
}

.y4c-lang-modal__close:hover {
	background: var(--y4c-muted);
	color: var(--y4c-foreground);
}

.y4c-lang-modal__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.25rem;
	padding: 1rem;
	overflow-y: auto;
}

@media (max-width: 640px) {
	.y4c-lang-modal__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.y4c-lang-modal__item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 0.75rem;
	border-radius: var(--y4c-radius);
	text-decoration: none;
	color: var(--y4c-foreground);
	font-size: 0.875rem;
	font-weight: 500;
	transition: all 0.15s ease;
}

.y4c-lang-modal__item:hover {
	background: hsla(28, 65%, 45%, 0.06);
	color: var(--y4c-primary);
}

.y4c-lang-modal__flag {
	font-size: 1.25rem;
	line-height: 1;
}

/* Welcome modal (first visit) */
.y4c-welcome-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 10001;
}

.y4c-welcome-modal.is-open {
	display: flex;
	align-items: center;
	justify-content: center;
}

.y4c-welcome-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(6px);
}

.y4c-welcome-modal__box {
	position: relative;
	width: 90%;
	max-width: 480px;
	background: #fff;
	border-radius: 1.25rem;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
	padding: 2rem;
	text-align: center;
	animation: y4c-fade-in 0.3s ease;
}

.y4c-welcome-modal__logo img {
	width: 5rem;
	height: 5rem;
	margin: 0 auto 1rem;
}

.y4c-welcome-modal__title {
	font-size: 1.375rem;
	font-weight: 800;
	color: var(--y4c-foreground);
	margin: 0 0 0.5rem;
}

.y4c-welcome-modal__text {
	color: var(--y4c-muted-fg);
	font-size: 0.9375rem;
	margin-bottom: 1.5rem;
}

.y4c-welcome-modal__quick {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.y4c-welcome-modal__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.375rem;
	padding: 0.75rem;
	border: 1.5px solid var(--y4c-border);
	border-radius: var(--y4c-radius);
	text-decoration: none;
	color: var(--y4c-foreground);
	font-size: 0.875rem;
	font-weight: 600;
	transition: all 0.15s ease;
}

.y4c-welcome-modal__btn:hover {
	border-color: var(--y4c-primary);
	color: var(--y4c-primary);
	background: hsla(28, 65%, 45%, 0.04);
}

.y4c-welcome-modal__more {
	background: none;
	border: none;
	color: var(--y4c-primary);
	font-size: 0.875rem;
	font-weight: 600;
	font-family: var(--y4c-font-body);
	cursor: pointer;
	padding: 0.5rem;
	transition: opacity 0.2s;
}

.y4c-welcome-modal__more:hover {
	opacity: 0.7;
}

/* Prevent scroll when modal open */
body.y4c-modal-open {
	overflow: hidden;
}

/* Hide Google Translate UI */
.goog-te-banner-frame,
.skiptranslate,
#goog-gt-tt,
.goog-te-balloon-frame {
	display: none !important;
}
body { top: 0 !important; }

.y4c-header__actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.y4c-icon--xs {
	width: 0.75rem;
	height: 0.75rem;
}

/* ==========================================================================
   24. LTR overrides (when English is selected)
   ========================================================================== */

.y4c-ltr {
	direction: ltr;
	text-align: left;
}

.y4c-ltr .y4c-header__titles {
	text-align: left;
}

.y4c-ltr .y4c-footer__col {
	text-align: left;
}

.y4c-ltr .y4c-nav__list .sub-menu {
	inset-inline-end: auto;
	inset-inline-start: 0;
}

/* ==========================================================================
   25. WhatsApp Floating Chat Button
   ========================================================================== */

.y4c-whatsapp-fab {
	position: fixed;
	bottom: 1.5rem;
	inset-inline-end: 1.5rem;
	z-index: 9000;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	background: #25D366;
	color: #fff;
	border-radius: 50%;
	box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	text-decoration: none;
}

.y4c-whatsapp-fab:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
	color: #fff;
}

/* ==========================================================================
   26. Menu Icons (via ::before pseudo-element with inline SVG background)
   ========================================================================== */

/* Main menu items */
.menu-item-30 > a::before { content: "\271D"; margin-inline-end: 0.375rem; } /* ✝ Home - Cross */
.menu-item-31 > a::before { content: "\2661"; margin-inline-end: 0.375rem; } /* ♡ About - Heart */
.menu-item-32 > a::before { content: "\2726"; margin-inline-end: 0.375rem; } /* ✦ Ministry - Star */
.menu-item-38 > a::before { content: "\2727"; margin-inline-end: 0.375rem; } /* ✧ Content - Star outline */
.menu-item-44 > a::before { content: "\2740"; margin-inline-end: 0.375rem; } /* ❀ Community - Flower */

/* Ministry sub-items */
.menu-item-33 > a::before { content: "\2605"; margin-inline-end: 0.375rem; } /* ★ Vision & Mission */
.menu-item-34 > a::before { content: "\2736"; margin-inline-end: 0.375rem; } /* ✶ Digital Evangelism */
.menu-item-35 > a::before { content: "\2710"; margin-inline-end: 0.375rem; } /* ✐ Discipleship */
.menu-item-36 > a::before { content: "\2302"; margin-inline-end: 0.375rem; } /* ⌂ House Churches */
.menu-item-37 > a::before { content: "\2764"; margin-inline-end: 0.375rem; } /* ❤ Persecuted Support */

/* Content sub-items */
.menu-item-39 > a::before { content: "\2741"; margin-inline-end: 0.375rem; } /* ❁ Resources */
.menu-item-40 > a::before { content: "\2765"; margin-inline-end: 0.375rem; } /* ❥ Testimonies */
.menu-item-41 > a::before { content: "\266B"; margin-inline-end: 0.375rem; } /* ♫ Media */
.menu-item-42 > a::before { content: "\270E"; margin-inline-end: 0.375rem; } /* ✎ Blog */
.menu-item-43 > a::before { content: "\2055"; margin-inline-end: 0.375rem; } /* ⁕ Faith Questions */

/* Community sub-items */
.menu-item-45 > a::before { content: "\2729"; margin-inline-end: 0.375rem; } /* ✩ AI Chat */
.menu-item-46 > a::before { content: "\2606"; margin-inline-end: 0.375rem; } /* ☆ Events */
.menu-item-47 > a::before { content: "\2720"; margin-inline-end: 0.375rem; } /* ✠ Prayer - Maltese Cross */
.menu-item-48 > a::before { content: "\2665"; margin-inline-end: 0.375rem; } /* ♥ Donate */
.menu-item-49 > a::before { content: "\261E"; margin-inline-end: 0.375rem; } /* ☞ Volunteer */
.menu-item-50 > a::before { content: "\2709"; margin-inline-end: 0.375rem; } /* ✉ Contact */

/* ==========================================================================
   27. Animations
   ========================================================================== */

@keyframes y4c-fade-in {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes y4c-slide-down {
	from { opacity: 0; max-height: 0; }
	to { opacity: 1; max-height: 1200px; }
}

/* ==========================================================================
   V3 — NEW HOMEPAGE SECTIONS
   ========================================================================== */

/* --- Section Titles --- */
.v3-section-title {
	font-size: 2rem;
	font-weight: 800;
	text-align: center;
	margin-bottom: 0.5rem;
	color: var(--y4c-foreground);
}
.v3-section-subtitle {
	text-align: center;
	color: var(--y4c-muted-fg);
	font-size: 1.0625rem;
	margin-bottom: 2.5rem;
}

/* --- Header CTA Buttons --- */
.y4c-header__cta {
	display: none;
	padding: 0.375rem 1rem;
	font-size: 0.8125rem;
	font-weight: 700;
	font-family: var(--y4c-font-body);
	border-radius: var(--y4c-radius);
	text-decoration: none;
	transition: all 0.2s;
}
@media (min-width: 1024px) {
	.y4c-header__cta { display: inline-flex; align-items: center; gap: 0.25rem; }
}
.y4c-header__cta--prayer {
	color: var(--y4c-primary);
	border: 1.5px solid var(--y4c-primary);
}
.y4c-header__cta--prayer:hover {
	background: var(--y4c-primary);
	color: #fff;
}
.y4c-header__cta--gold {
	background: var(--y4c-accent);
	color: #fff;
	border: 1.5px solid var(--y4c-accent);
}
.y4c-header__cta--gold:hover {
	background: hsl(38, 85%, 48%);
}

/* Gold button global */
.y4c-btn--gold {
	background: var(--y4c-accent);
	color: #fff;
	border: 2px solid transparent;
}
.y4c-btn--gold:hover {
	background: hsl(38, 85%, 48%);
	color: #fff;
}

/* --- V3 Hero --- */
.v3-hero {
	position: relative;
	padding: 4rem 0 5rem;
	background: var(--y4c-gradient-light);
	overflow: hidden;
}
.v3-hero__pattern {
	position: absolute;
	inset: 0;
	opacity: 0.03;
	background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='none' stroke='%23996633' stroke-width='1'/%3E%3C/svg%3E");
	background-size: 60px 60px;
	pointer-events: none;
}
.v3-hero__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}
@media (min-width: 768px) {
	.v3-hero__grid {
		grid-template-columns: 1fr 1fr;
	}
}
.v3-hero__badge {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--y4c-primary);
	background: hsla(28, 65%, 45%, 0.08);
	padding: 0.375rem 0.875rem;
	border-radius: 2rem;
	margin-bottom: 1rem;
}
.v3-hero__title {
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
	.v3-hero__title { font-size: 3.25rem; }
}
.v3-hero__verse {
	font-size: 1.0625rem;
	color: var(--y4c-muted-fg);
	border-inline-start: 3px solid var(--y4c-accent);
	padding-inline-start: 1rem;
	margin: 0 0 1.5rem;
	font-style: italic;
	line-height: 1.7;
}
.v3-hero__verse cite {
	display: block;
	font-size: 0.8125rem;
	font-style: normal;
	margin-top: 0.375rem;
	color: var(--y4c-accent);
}
.v3-hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}
.v3-hero__video-wrap {
	position: relative;
	padding-bottom: 56.25%;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}
.v3-hero__video-wrap iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: none;
}

/* --- Journey Preview --- */
.v3-journey {
	padding: 5rem 0;
	background: var(--y4c-background);
}
.v3-journey__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-bottom: 2rem;
}
@media (min-width: 768px) {
	.v3-journey__grid { grid-template-columns: repeat(3, 1fr); }
}
.v3-journey__step {
	text-align: center;
	padding: 2rem 1.5rem;
	background: var(--y4c-card);
	border-radius: 1rem;
	border: 1px solid var(--y4c-border);
	position: relative;
	transition: all 0.3s;
}
.v3-journey__step:hover {
	box-shadow: var(--y4c-shadow-card-hover);
	transform: translateY(-4px);
}
.v3-journey__number {
	position: absolute;
	top: -0.75rem;
	inset-inline-start: 1.5rem;
	width: 2rem;
	height: 2rem;
	background: var(--y4c-primary);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
	font-weight: 800;
}
.v3-journey__icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}
.v3-journey__step h3 {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}
.v3-journey__step p {
	color: var(--y4c-muted-fg);
	font-size: 0.9375rem;
	line-height: 1.6;
}
.v3-journey__cta { text-align: center; }

/* --- Prayer CTA --- */
.v3-prayer-cta {
	padding: 4rem 0;
	background: var(--y4c-gradient-divine);
}
.v3-prayer-cta__inner {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}
.v3-prayer-cta__icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}
.v3-prayer-cta h2 {
	font-size: 1.75rem;
	margin-bottom: 1rem;
}
.v3-prayer-cta p {
	color: var(--y4c-muted-fg);
	margin-bottom: 1rem;
}
.v3-prayer-cta blockquote {
	font-style: italic;
	color: var(--y4c-accent);
	font-size: 0.9375rem;
	margin-bottom: 1.5rem;
}

/* --- Media Preview --- */
.v3-media {
	padding: 5rem 0;
	background: var(--y4c-background);
}
.v3-media__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}
@media (min-width: 768px) {
	.v3-media__grid { grid-template-columns: 2fr 1fr; }
}
.v3-media__video-wrap {
	position: relative;
	padding-bottom: 56.25%;
	border-radius: 0.75rem;
	overflow: hidden;
	box-shadow: var(--y4c-shadow-card);
}
.v3-media__video-wrap iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: none;
}
.v3-media__categories {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
.v3-media__cat {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem;
	background: var(--y4c-card);
	border: 1px solid var(--y4c-border);
	border-radius: 0.75rem;
	text-decoration: none;
	color: var(--y4c-foreground);
	font-weight: 600;
	font-size: 0.9375rem;
	transition: all 0.2s;
}
.v3-media__cat:hover {
	border-color: var(--y4c-primary);
	box-shadow: var(--y4c-shadow-card-hover);
}
.v3-media__cat-icon { font-size: 1.5rem; }
.v3-media__cta { text-align: center; margin-top: 2rem; }

/* --- Testimonies --- */
.v3-testimonies {
	padding: 5rem 0;
	background: var(--y4c-muted);
}
.v3-testimonies__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
@media (min-width: 768px) {
	.v3-testimonies__grid { grid-template-columns: repeat(3, 1fr); }
}
.v3-testimonies__card {
	background: var(--y4c-card);
	border-radius: 1rem;
	padding: 2rem;
	position: relative;
	box-shadow: var(--y4c-shadow-card);
}
.v3-testimonies__quote-mark {
	position: absolute;
	top: 0.75rem;
	inset-inline-start: 1.25rem;
	font-size: 3rem;
	font-weight: 800;
	color: var(--y4c-accent);
	opacity: 0.3;
	line-height: 1;
}
.v3-testimonies__text {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: var(--y4c-foreground);
	margin-bottom: 1.25rem;
	padding-top: 1rem;
}
.v3-testimonies__author strong {
	display: block;
	font-size: 0.875rem;
}
.v3-testimonies__author span {
	font-size: 0.8125rem;
	color: var(--y4c-muted-fg);
}

/* --- Impact --- */
.v3-impact {
	padding: 5rem 0;
	background: var(--y4c-gradient-heaven);
	color: #fff;
}
.v3-impact .v3-section-title,
.v3-impact .v3-section-subtitle { color: #fff; }
.v3-impact .v3-section-subtitle { opacity: 0.8; }
.v3-impact__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}
@media (min-width: 768px) {
	.v3-impact__grid { grid-template-columns: repeat(4, 1fr); }
}
.v3-impact__card {
	text-align: center;
	padding: 1.5rem;
	background: hsla(0,0%,100%,0.08);
	border-radius: 1rem;
	backdrop-filter: blur(4px);
}
.v3-impact__number {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--y4c-accent);
}
.v3-impact__label {
	font-size: 0.875rem;
	opacity: 0.9;
	margin-top: 0.25rem;
}
.v3-impact__icon {
	font-size: 1.5rem;
	margin-top: 0.5rem;
	opacity: 0.6;
}

/* --- Support/Donate CTA --- */
.v3-support {
	padding: 5rem 0;
	background: var(--y4c-background);
}
.v3-support__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: center;
}
@media (min-width: 768px) {
	.v3-support__inner { grid-template-columns: 1fr 1fr; }
}
.v3-support__text h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
}
.v3-support__text p {
	color: var(--y4c-muted-fg);
	margin-bottom: 1rem;
	line-height: 1.7;
}
.v3-support__text blockquote {
	font-style: italic;
	color: var(--y4c-accent);
	font-size: 0.9375rem;
}
.v3-support__options {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
.v3-support__option {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	padding: 1.5rem 1rem;
	background: var(--y4c-card);
	border: 1.5px solid var(--y4c-border);
	border-radius: 1rem;
	text-decoration: none;
	color: var(--y4c-foreground);
	transition: all 0.2s;
}
.v3-support__option:hover {
	border-color: var(--y4c-accent);
	box-shadow: var(--y4c-shadow-card-hover);
	transform: translateY(-2px);
}
.v3-support__option-icon { font-size: 2rem; }
.v3-support__option-title { font-weight: 700; font-size: 0.9375rem; }

/* --- Final CTA --- */
.v3-final-cta {
	padding: 5rem 0;
	background: var(--y4c-gradient-divine);
}
.v3-final-cta__inner {
	text-align: center;
}
.v3-final-cta h2 {
	font-size: 2rem;
	margin-bottom: 0.75rem;
}
.v3-final-cta p {
	color: var(--y4c-muted-fg);
	max-width: 600px;
	margin: 0 auto 2rem;
}
.v3-final-cta__paths {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	max-width: 700px;
	margin: 0 auto 2rem;
}
@media (min-width: 640px) {
	.v3-final-cta__paths { grid-template-columns: repeat(3, 1fr); }
}
.v3-final-cta__path {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.375rem;
	padding: 1.5rem 1rem;
	background: var(--y4c-card);
	border: 1.5px solid var(--y4c-border);
	border-radius: 1rem;
	text-decoration: none;
	color: var(--y4c-foreground);
	transition: all 0.2s;
}
.v3-final-cta__path:hover {
	border-color: var(--y4c-primary);
	box-shadow: var(--y4c-shadow-card-hover);
	transform: translateY(-3px);
}
.v3-final-cta__path-icon { font-size: 2rem; }
.v3-final-cta__path strong { font-size: 1rem; }
.v3-final-cta__path span { font-size: 0.8125rem; color: var(--y4c-muted-fg); }
.v3-final-cta__emergency { margin-top: 1.5rem; }
.v3-emergency-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0.75rem 1.5rem;
	background: hsl(0, 70%, 55%);
	color: #fff;
	border-radius: 2rem;
	font-size: 0.875rem;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.2s;
	font-family: var(--y4c-font-body);
}
.v3-emergency-btn:hover {
	background: hsl(0, 70%, 45%);
	color: #fff;
}

/* --- FAB Group (WhatsApp + Chat) --- */
.v3-fab-group {
	position: fixed;
	bottom: 1.5rem;
	right: 5.5rem;
	z-index: 8999;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
.v3-fab {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(0,0,0,0.2);
	transition: transform 0.2s, box-shadow 0.2s;
}
.v3-fab:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.v3-fab--whatsapp {
	background: #25D366;
	color: #fff;
}

/* Yemeni decorative SVG pattern for sections */
.v3-yemeni-pattern {
	position: absolute;
	inset: 0;
	opacity: 0.02;
	background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0l20 20-20 20-20-20z M0 40l20 20-20 20 M80 40l-20 20 20 20 M40 40l20 20-20 20-20-20z' fill='none' stroke='%23996633' stroke-width='0.5'/%3E%3C/svg%3E");
	background-size: 80px 80px;
	pointer-events: none;
}
