/*
Theme Name: Welcoming Template
Theme URI: https://internetoutreachexperts.com/templates/welcoming/
Author: Internet Outreach Experts
Description: IOE Welcoming template — modern Presbyterian / mainline ecumenical aesthetic. Navy + warm gold, full-width photography, serif headings (Playfair Display). Customer-deployable.
Version: 1.0.0
Text Domain: welcoming-template
*/

/* ============================================================================
   FONTS — pulled from Google Fonts to match Lovable demo (Playfair + Inter)
   ============================================================================ */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

/* ============================================================================
   DESIGN TOKENS — match Lovable bundle exactly
   ============================================================================ */
:root {
	--color-church-blue: #1a2e4c;
	--color-church-gold: #c5a059;
	--color-church-blue-dark: #0f1d33;
	--color-white: #ffffff;
	--color-gray-50: #f9fafb;
	--color-gray-100: #f3f4f6;
	--color-gray-200: #e5e7eb;
	--color-gray-300: #d1d5db;
	--color-gray-400: #9ca3af;
	--color-gray-500: #6b7280;
	--color-gray-600: #4b5563;
	--color-gray-700: #374151;
	--color-gray-800: #1f2937;
	--color-gray-900: #111827;

	/* Brandable — overridden via wp_head from get_option(...) so customers can paint the theme */
	--brand-primary: var(--color-church-blue);
	--brand-accent:  var(--color-church-gold);

	--font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
	--font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

	--radius-sm: 0.25rem;
	--radius-lg: 0.5rem;

	--container: 80rem;          /* max-w-7xl */
	--container-narrow: 56rem;   /* max-w-4xl */
	--container-text: 48rem;     /* max-w-3xl */

	--shadow-sm: 0 1px 2px 0 rgba(0,0,0,.05);
	--shadow-md: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
	--shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
	--shadow-xl: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
	--shadow-2xl: 0 25px 50px -12px rgba(0,0,0,.25);
}

/* ============================================================================
   RESET / BASE
   ============================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; line-height: 1.5; }
body {
	font-family: var(--font-sans);
	color: var(--color-gray-800);
	background: var(--color-white);
	-webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: transparent; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 700; line-height: 1.2; color: var(--color-gray-900); }

/* ============================================================================
   LAYOUT HELPERS
   ============================================================================ */
.container        { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1rem; }
.container-narrow { width: 100%; max-width: var(--container-narrow); margin: 0 auto; padding: 0 1rem; }
.container-text   { width: 100%; max-width: var(--container-text); margin: 0 auto; padding: 0 1rem; }
@media (min-width: 768px) { .container, .container-narrow, .container-text { padding: 0 2rem; } }

.section { padding: 5rem 0; }
.section-tight { padding: 4rem 0; }
@media (min-width: 1024px) { .section { padding: 6rem 0; } }

.eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--brand-accent);
	margin-bottom: 1rem;
}

/* ============================================================================
   BUTTONS
   ============================================================================ */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	padding: 0.875rem 2rem;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	border-radius: var(--radius-lg);
	transition: all 0.3s ease;
	cursor: pointer;
}
.btn-primary { background: var(--brand-primary); color: var(--color-white); border: 2px solid var(--brand-primary); }
.btn-primary:hover { background: var(--color-church-blue-dark); border-color: var(--color-church-blue-dark); }

.btn-accent { background: var(--brand-accent); color: var(--color-church-blue); border: 2px solid var(--brand-accent); }
.btn-accent:hover { background: transparent; color: var(--brand-accent); }

.btn-outline-light { background: transparent; color: var(--color-white); border: 2px solid var(--color-white); }
.btn-outline-light:hover { background: var(--color-white); color: var(--brand-primary); }

.btn-outline { background: transparent; color: var(--brand-primary); border: 2px solid var(--brand-primary); }
.btn-outline:hover { background: var(--brand-primary); color: var(--color-white); }

/* ============================================================================
   TOPBAR (utility) — dark blue strip with address/phone + social
   ============================================================================ */
.topbar { background: var(--brand-primary); color: rgba(255,255,255,0.85); font-size: 0.8125rem; }
.topbar-inner { max-width: var(--container); margin: 0 auto; padding: 0.625rem 1rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.topbar-meta { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 0.5rem; }
.topbar-item svg { width: 14px; height: 14px; opacity: 0.85; }
.topbar a { color: inherit; transition: color 0.2s; }
.topbar a:hover { color: var(--brand-accent); }
.topbar-social { display: inline-flex; align-items: center; gap: 0.4rem; }
@media (max-width: 640px) { .topbar { font-size: 0.75rem; } }

/* ============================================================================
   MASTHEAD — logo (cross icon + church name) + nav + "I'm New" button
   ============================================================================ */
.masthead { background: var(--color-white); border-bottom: 1px solid var(--color-gray-100); }
.masthead-inner { max-width: var(--container); margin: 0 auto; padding: 1.5rem 1rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: flex; align-items: center; gap: 1rem; text-decoration: none; }
.brand-mark { width: 60px; height: 60px; flex-shrink: 0; color: var(--brand-primary); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name-line1 { font-family: var(--font-serif); font-size: 1.75rem; font-weight: 700; color: var(--brand-primary); letter-spacing: -0.02em; }
.brand-name-line2 { font-family: var(--font-serif); font-size: 1.125rem; font-weight: 400; color: var(--color-gray-700); margin-top: 0.125rem; letter-spacing: -0.01em; }
.brand-tagline { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brand-accent); margin-top: 0.4rem; font-weight: 500; }

.primary-nav { display: none; align-items: center; gap: 1.5rem; }
@media (min-width: 1024px) { .primary-nav { display: flex; } }
.primary-nav a { font-size: 0.875rem; font-weight: 500; color: var(--color-gray-700); text-transform: uppercase; letter-spacing: 0.05em; transition: color 0.2s; }
.primary-nav a:hover { color: var(--brand-primary); }
.primary-nav a.active { color: var(--brand-primary); }

.menu-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; color: var(--brand-primary); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* Mobile menu */
.mobile-nav { display: none; padding: 1rem; border-top: 1px solid var(--color-gray-100); }
.mobile-nav.is-open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-nav a { display: block; padding: 0.75rem 0; font-size: 0.95rem; font-weight: 500; color: var(--color-gray-700); border-bottom: 1px solid var(--color-gray-100); }

/* ============================================================================
   HERO — full-width photo with dark overlay, large serif headline
   ============================================================================ */
.hero { position: relative; height: 80vh; min-height: 600px; max-height: 800px; overflow: hidden; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: rgba(26,46,76,0.55); }
.hero-inner { position: relative; z-index: 1; height: 100%; display: flex; align-items: center; justify-content: center; padding: 0 1.5rem; text-align: center; }
.hero-content { max-width: 56rem; }
.hero-eyebrow { font-size: 0.875rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--brand-accent); margin-bottom: 1.5rem; font-weight: 500; }
.hero-title { font-family: var(--font-serif); color: var(--color-white); font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; line-height: 1.05; margin-bottom: 1.5rem; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero-title em { display: block; font-style: normal; font-weight: 600; color: var(--brand-accent); margin-top: 0.4em; }
.hero-subtitle { font-family: var(--font-serif); font-size: clamp(1.125rem, 2vw, 1.5rem); font-style: italic; color: rgba(255,255,255,0.9); margin-bottom: 2.5rem; line-height: 1.4; }
.hero-actions { display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: center; }
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }

/* ============================================================================
   ACTIONS GRID — 4 white cards with circular gold-bordered icons, sits over hero
   ============================================================================ */
.actions { background: var(--color-white); position: relative; padding: 5rem 0 6rem; }
.actions-grid { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .actions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .actions-grid { grid-template-columns: repeat(4, 1fr); } }
.action-card { background: var(--color-white); padding: 2.5rem 1.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border-top: 4px solid var(--brand-primary); text-align: center; transition: transform 0.3s, box-shadow 0.3s; display: block; }
.action-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.action-icon { width: 4rem; height: 4rem; margin: 0 auto 1.25rem; border: 2px solid var(--brand-accent); border-radius: 9999px; display: inline-flex; align-items: center; justify-content: center; color: var(--brand-primary); }
.action-icon svg { width: 28px; height: 28px; }
.action-title { font-family: var(--font-serif); font-size: 1.25rem; color: var(--brand-primary); margin-bottom: 0.625rem; font-weight: 700; }
.action-text { font-size: 0.9rem; color: var(--color-gray-600); margin-bottom: 1.25rem; line-height: 1.5; min-height: 2.7em; }
.action-link { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; color: var(--brand-accent); display: inline-flex; align-items: center; gap: 0.4rem; }
.action-card:hover .action-link { color: var(--brand-primary); }

/* ============================================================================
   ABOUT — 2-col text + photo
   ============================================================================ */
.about { background: var(--color-gray-50); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.about h2 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 1.25rem; color: var(--brand-primary); line-height: 1.15; }
.about p { font-size: 1.0625rem; color: var(--color-gray-700); line-height: 1.65; margin-bottom: 1.25rem; }
.about-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); aspect-ratio: 4/3; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================================
   PASTOR QUOTE — 2-col photo + quote
   ============================================================================ */
.pastor { background: var(--color-white); }
.pastor-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; max-width: 64rem; margin: 0 auto; }
@media (min-width: 768px) { .pastor-grid { grid-template-columns: 280px 1fr; gap: 3rem; } }
.pastor-photo { width: 100%; aspect-ratio: 1; max-width: 280px; border-radius: 9999px; overflow: hidden; box-shadow: var(--shadow-xl); border: 6px solid var(--color-white); justify-self: center; }
.pastor-photo img { width: 100%; height: 100%; object-fit: cover; }
.pastor-quote-block h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); color: var(--brand-primary); margin-bottom: 1.5rem; }
.pastor-quote-block blockquote { font-family: var(--font-serif); font-size: 1.25rem; font-style: italic; color: var(--color-gray-700); line-height: 1.5; padding-left: 1.25rem; border-left: 4px solid var(--brand-accent); margin-bottom: 1.25rem; }
.pastor-name { font-weight: 700; color: var(--brand-primary); font-size: 1.0625rem; }
.pastor-title { color: var(--color-gray-600); font-size: 0.9375rem; }

/* ============================================================================
   SERMON OF THE WEEK — centered video embed
   ============================================================================ */
.sermons-feature { background: var(--color-gray-50); text-align: center; }
.sermons-feature h2 { font-size: clamp(2rem, 4vw, 2.75rem); color: var(--brand-primary); margin-bottom: 1rem; }
.sermons-feature .lede { color: var(--color-gray-600); font-size: 1.0625rem; max-width: 36rem; margin: 0 auto 2.5rem; }
.video-frame { max-width: 56rem; margin: 0 auto 1.5rem; aspect-ratio: 16/9; background: var(--color-gray-900); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-2xl); position: relative; }
.video-frame img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.video-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.video-play-btn { width: 80px; height: 80px; border-radius: 9999px; background: rgba(255,255,255,0.95); display: inline-flex; align-items: center; justify-content: center; color: var(--brand-primary); box-shadow: var(--shadow-xl); transition: transform 0.2s; }
.video-frame:hover .video-play-btn { transform: scale(1.05); }
.video-play-btn svg { width: 32px; height: 32px; margin-left: 4px; }
.video-caption { color: var(--color-white); position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.video-caption-tag { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brand-accent); margin-bottom: 0.25rem; font-weight: 500; }
.video-caption-title { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; }
.sermon-meta { font-family: var(--font-serif); font-size: 1.5rem; color: var(--brand-primary); margin: 2rem 0 0.5rem; font-style: italic; }
.sermon-byline { color: var(--color-gray-600); font-size: 0.95rem; margin-bottom: 2rem; }

/* ============================================================================
   MINISTRIES — 3-col cards
   ============================================================================ */
.ministries-section { background: var(--color-white); }
.ministries-section .section-head { text-align: center; margin-bottom: 3rem; }
.ministries-section h2 { font-size: clamp(2rem, 4vw, 2.75rem); color: var(--brand-primary); margin-bottom: 0.75rem; }
.ministries-section .section-head p { color: var(--brand-accent); font-style: italic; font-size: 1.125rem; font-family: var(--font-serif); }
.ministries-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .ministries-grid { grid-template-columns: repeat(3, 1fr); } }
.ministry-card { background: var(--color-white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: transform 0.3s, box-shadow 0.3s; }
.ministry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.ministry-photo { aspect-ratio: 4/3; overflow: hidden; }
.ministry-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.ministry-card:hover .ministry-photo img { transform: scale(1.05); }
.ministry-body { padding: 1.75rem; }
.ministry-title { font-family: var(--font-serif); font-size: 1.375rem; color: var(--brand-primary); margin-bottom: 0.625rem; }
.ministry-text { color: var(--color-gray-600); font-size: 0.9375rem; line-height: 1.55; }

/* ============================================================================
   COMMUNITY LIFE — 8-photo grid, 4 cols on desktop
   ============================================================================ */
.community-life { background: var(--color-gray-50); }
.community-life .section-head { text-align: center; margin-bottom: 3rem; }
.community-life h2 { font-size: clamp(2rem, 4vw, 2.75rem); color: var(--brand-primary); margin-bottom: 0.75rem; }
.community-life .section-head p { color: var(--brand-accent); font-style: italic; font-size: 1.125rem; font-family: var(--font-serif); }
.community-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .community-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }
.community-photo { aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.community-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.community-photo:hover img { transform: scale(1.05); }

/* ============================================================================
   INFO ROW — 3-col with icons (worship / hours / contact)
   ============================================================================ */
.info-row { background: var(--color-white); padding: 4rem 0; border-top: 1px solid var(--color-gray-100); border-bottom: 1px solid var(--color-gray-100); }
.info-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 64rem; margin: 0 auto; padding: 0 1rem; text-align: center; }
@media (min-width: 768px) { .info-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; } }
.info-item { display: flex; flex-direction: column; align-items: center; }
.info-icon { width: 56px; height: 56px; border: 2px solid var(--brand-accent); border-radius: 9999px; display: inline-flex; align-items: center; justify-content: center; color: var(--brand-primary); margin-bottom: 1rem; }
.info-icon svg { width: 24px; height: 24px; }
.info-title { font-family: var(--font-serif); font-size: 1.25rem; color: var(--brand-primary); margin-bottom: 0.625rem; font-weight: 700; }
.info-item p { color: var(--color-gray-600); font-size: 0.9375rem; line-height: 1.5; margin-bottom: 0.25rem; }
.info-item a { color: var(--color-gray-600); }
.info-item a:hover { color: var(--brand-primary); }

/* ============================================================================
   GIVE BAND — full-width dark blue centered CTA
   ============================================================================ */
.give-band { background: var(--brand-primary); color: var(--color-white); text-align: center; padding: 5rem 1rem; }
.give-band h2 { color: var(--color-white); font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 1.25rem; }
.give-band p { max-width: 42rem; margin: 0 auto 2rem; color: rgba(255,255,255,0.8); font-size: 1.0625rem; line-height: 1.6; }
.give-band .btn { background: var(--brand-accent); color: var(--brand-primary); border-color: var(--brand-accent); }
.give-band .btn:hover { background: transparent; color: var(--brand-accent); }

/* ============================================================================
   NEWSLETTER BAND — gold strip with email signup
   ============================================================================ */
.newsletter { background: var(--brand-accent); color: var(--brand-primary); padding: 3rem 1rem; text-align: center; }
.newsletter h2 { color: var(--brand-primary); font-size: 1.875rem; margin-bottom: 0.625rem; }
.newsletter p { color: var(--brand-primary); margin-bottom: 1.5rem; opacity: 0.85; }
.newsletter-form { display: flex; flex-direction: column; gap: 0.75rem; max-width: 30rem; margin: 0 auto; }
@media (min-width: 640px) { .newsletter-form { flex-direction: row; } }
.newsletter-form input[type=email] { flex: 1; padding: 0.875rem 1rem; border: 2px solid var(--brand-primary); border-radius: var(--radius-lg); font-size: 0.9375rem; background: var(--color-white); color: var(--color-gray-800); }
.newsletter-form button { padding: 0.875rem 2rem; background: var(--brand-primary); color: var(--color-white); border: 2px solid var(--brand-primary); border-radius: var(--radius-lg); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 500; transition: all 0.3s; }
.newsletter-form button:hover { background: transparent; color: var(--brand-primary); }

/* ============================================================================
   FOOTER — dark blue, 4-col
   ============================================================================ */
.site-footer { background: var(--color-church-blue-dark); color: rgba(255,255,255,0.75); padding: 4rem 0 2rem; }
.footer-grid { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; } }
.footer-col h3 { color: var(--color-white); font-family: var(--font-serif); font-size: 1.125rem; margin-bottom: 1.25rem; font-weight: 700; }
.footer-col ul li { margin-bottom: 0.625rem; }
.footer-col a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-col a:hover { color: var(--brand-accent); }
.footer-brand { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.footer-brand .brand-mark { width: 48px; height: 48px; color: var(--brand-accent); }
.footer-brand-text h3 { color: var(--color-white); margin: 0 0 0.125rem; font-family: var(--font-serif); }
.footer-brand-text p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-brand-blurb { font-size: 0.9rem; line-height: 1.6; color: rgba(255,255,255,0.7); }
.footer-info p { margin-bottom: 0.875rem; font-size: 0.9rem; line-height: 1.5; display: flex; gap: 0.625rem; }
.footer-info p svg { flex-shrink: 0; margin-top: 0.2rem; opacity: 0.7; }
.footer-social { display: flex; gap: 0.75rem; margin-bottom: 1.25rem; }
.footer-social a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.2); border-radius: 9999px; display: inline-flex; align-items: center; justify-content: center; transition: all 0.2s; }
.footer-social a:hover { background: var(--brand-accent); border-color: var(--brand-accent); color: var(--brand-primary); }
.footer-social a svg { width: 18px; height: 18px; }
.footer-bottom { max-width: var(--container); margin: 3rem auto 0; padding: 1.5rem 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-bottom a { color: var(--brand-accent); }

/* ============================================================================
   SUB-PAGE BANNERS (about/sermons/etc.)
   ============================================================================ */
.page-banner { background: var(--brand-primary); color: var(--color-white); padding: 5rem 1rem; text-align: center; }
.page-banner h1 { color: var(--color-white); font-size: clamp(2.25rem, 5vw, 3.5rem); margin-bottom: 0.75rem; }
.page-banner p { color: rgba(255,255,255,0.8); font-size: 1.125rem; max-width: 36rem; margin: 0 auto; }

.page-prose { max-width: 48rem; margin: 0 auto; padding: 4rem 1.5rem; }
.page-prose h2 { font-size: 1.75rem; color: var(--brand-primary); margin: 2.5rem 0 1rem; }
.page-prose h3 { font-size: 1.375rem; color: var(--brand-primary); margin: 2rem 0 0.75rem; }
.page-prose p { font-size: 1.0625rem; line-height: 1.7; color: var(--color-gray-700); margin-bottom: 1.25rem; }
.page-prose a { color: var(--brand-primary); text-decoration: underline; text-decoration-color: var(--brand-accent); text-underline-offset: 4px; }
.page-prose ul, .page-prose ol { margin: 1.25rem 0 1.5rem 1.5rem; }
.page-prose ul { list-style: disc; }
.page-prose ol { list-style: decimal; }
.page-prose li { margin-bottom: 0.5rem; line-height: 1.65; color: var(--color-gray-700); }
