/*
Theme Name:   Chambers Commentary
Theme URI:    https://chamberscommentary.com
Description:  A child theme for Chambers Commentary — daily devotional breakdowns of Oswald Chambers' My Utmost for His Highest.
Author:       Chambers Commentary
Author URI:   https://chamberscommentary.com
Template:     twentytwentyfour
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  chambers-commentary
*/

/* =====================================================
   CHAMBERS COMMENTARY — CHILD THEME STYLESHEET
   Parent theme: Twenty Twenty-Four
   ===================================================== */

/* ── Google Fonts are loaded via functions.php ── */

/* ── Design Tokens ── */
:root {
  --bg: #faf8f5;
  --ink: #1a1510;
  --quote-bg: #f0e8df;
  --quote-border: #b8956a;
  --accent: #5c3d1e;
  --text-secondary: #4a3f36;
  --rule: #d9cdc0;
  --nav-bg: #f5ede3;
  --nav-hover: #5c3d1e;
}

/* ── Global Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: 'Lora', Georgia, serif;
  font-weight: 400;
  line-height: 1.8;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

/* =====================================================
   SITE NAVIGATION
   ===================================================== */

.site-nav {
  background: var(--nav-bg);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.site-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* Logo */
.site-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.site-logo-primary {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.01em;
}

.site-logo-secondary {
  font-family: 'Lora', serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: 'Lora', serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  border-bottom-color: var(--quote-border);
}

.nav-links .nav-utmost {
  color: var(--quote-border);
  border-bottom: 1px solid var(--quote-border);
}

.nav-links .nav-utmost:hover {
  color: var(--accent);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  transition: all 0.3s ease;
}

/* =====================================================
   SITE HEADER BANNER (homepage hero area)
   ===================================================== */

.site-header-banner {
  background: var(--bg);
  text-align: center;
  padding: 4rem 2rem 3rem;
  border-bottom: 1px solid var(--rule);
  max-width: 760px;
  margin: 0 auto;
}

.site-header-banner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.site-header-banner p {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

.header-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.header-divider span { display: block; height: 1px; width: 50px; background: var(--rule); }
.header-divider em { font-family: 'Lora', serif; font-style: italic; font-size: 0.8rem; color: var(--text-secondary); letter-spacing: 0.06em; }

/* =====================================================
   MAIN CONTENT WRAPPER
   ===================================================== */

.site-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
}

/* =====================================================
   DEVOTIONAL PAGE CONTENT
   ===================================================== */

/* ── Devotional Header (per-post) ── */
.header {
  text-align: center;
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 3.5rem;
  animation: fadeUp 0.8s ease both;
}

.header-eyebrow {
  font-family: 'Lora', serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
}

.header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.header-author {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 1.6rem;
}

.header-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin: 1.6rem 0 0;
}

.header-rule span { display: block; height: 1px; width: 50px; background: var(--rule); }
.header-rule em { font-family: 'Lora', serif; font-style: italic; font-size: 0.8rem; color: var(--text-secondary); letter-spacing: 0.06em; }

/* ── Section Labels ── */
.section-label {
  font-family: 'Lora', serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
}

/* ── Big Idea ── */
.big-idea {
  margin-bottom: 3.5rem;
  animation: fadeUp 0.8s 0.1s ease both;
}

.big-idea p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink);
}

.scripture-block {
  border-left: 4px solid var(--quote-border);
  padding: 1.2rem 1.6rem;
  margin: 1.6rem 0;
  background: var(--quote-bg);
}

.scripture-block p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--accent);
  line-height: 1.65;
  margin-bottom: 0.4rem;
}

.scripture-block cite {
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  font-style: normal;
}

/* ── Breakdown Section ── */
.breakdown {
  margin-bottom: 3.5rem;
}

.breakdown-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
}

.breakdown-legend {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  padding: 1.2rem;
  background: rgba(184, 149, 106, 0.08);
  border-left: 3px solid var(--quote-border);
  font-style: italic;
  line-height: 1.7;
}

.point {
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--rule);
  animation: fadeUp 0.6s ease both;
}

.point:last-child { border-bottom: none; }

.point-number {
  font-family: 'Lora', serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  display: block;
  font-weight: 500;
}

.point-location {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  background: var(--quote-border);
  padding: 0.3rem 0.6rem;
  border-radius: 2px;
  font-weight: 500;
  margin-left: 0.8rem;
}

.original-quote {
  background: var(--quote-bg);
  border-left: 4px solid var(--quote-border);
  padding: 1.4rem 1.8rem;
  margin-bottom: 1.8rem;
}

.original-quote-label {
  font-family: 'Lora', serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.8rem;
  font-weight: 600;
  display: block;
}

.original-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink);
  line-height: 1.75;
  margin: 0;
  font-weight: 500;
}

.analysis { padding: 0; }

.point-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.point-body {
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.85;
  margin-bottom: 0.5rem;
}

.point-body:last-child { margin-bottom: 0; }

/* ── Takeaway Section ── */
.takeaway {
  margin-bottom: 3.5rem;
  animation: fadeUp 0.6s ease both;
}

.takeaway-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
}

.takeaway p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
  color: var(--ink);
}

.person-block {
  background: var(--quote-bg);
  border-left: 4px solid var(--quote-border);
  padding: 1.2rem 1.6rem;
  margin: 1.2rem 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink);
}

.person-label {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--accent);
  display: block;
  margin-bottom: 0.4rem;
}

/* ── Closing Question ── */
.closing {
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  animation: fadeUp 0.6s ease both;
}

.closing .section-label { margin-bottom: 1.2rem; }

.closing p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.55rem;
  color: var(--ink);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
  font-weight: 500;
}

/* ── Attribution Footer (per-post) ── */
.post-attribution {
  text-align: center;
  margin-top: 3.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.post-attribution a {
  color: var(--quote-border);
  text-decoration: none;
  border-bottom: 1px solid var(--quote-border);
  transition: color 0.2s ease;
}

.post-attribution a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ── Post Navigation (Previous / Next) ── */
.devotional-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  gap: 1rem;
}

.devotional-nav a {
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

.devotional-nav a:hover {
  color: var(--accent);
  border-bottom-color: var(--quote-border);
}

.devotional-nav .nav-prev::before { content: '← '; }
.devotional-nav .nav-next::after { content: ' →'; }

/* =====================================================
   HOMEPAGE — ARCHIVE CARDS
   ===================================================== */

.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.archive-card {
  background: white;
  border: 1px solid var(--rule);
  border-left: 4px solid var(--quote-border);
  padding: 1.6rem;
  text-decoration: none;
  display: block;
  transition: all 0.2s ease;
}

.archive-card:hover {
  border-left-color: var(--accent);
  box-shadow: 0 4px 16px rgba(92, 61, 30, 0.08);
  transform: translateY(-2px);
}

.archive-card-date {
  font-family: 'Lora', serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
  display: block;
}

.archive-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.25;
  margin-bottom: 0.6rem;
}

.archive-card-scripture {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.archive-card-read {
  display: inline-block;
  margin-top: 1rem;
  font-family: 'Lora', serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--quote-border);
  border-bottom: 1px solid var(--quote-border);
}

/* ── Today's Featured Devotional ── */
.featured-devotional {
  background: var(--quote-bg);
  border-left: 4px solid var(--quote-border);
  padding: 2rem 2.4rem;
  margin-bottom: 3rem;
}

.featured-label {
  font-family: 'Lora', serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
  display: block;
}

.featured-date {
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.featured-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 0.6rem;
  text-decoration: none;
  display: block;
}

.featured-scripture {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.4rem;
}

.featured-cta {
  display: inline-block;
  font-family: 'Lora', serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  background: var(--accent);
  padding: 0.7rem 1.4rem;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s ease;
}

.featured-cta:hover { background: var(--quote-border); }

/* ── Week Heading ── */
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--rule);
}

/* =====================================================
   STATIC PAGES (About, Privacy, etc.)
   ===================================================== */

.page-content {
  padding: 4rem 0 6rem;
}

.page-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.page-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--rule);
}

.page-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
}

.page-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink);
  margin-bottom: 1.2rem;
}

.page-content a {
  color: var(--quote-border);
  text-decoration: none;
  border-bottom: 1px solid var(--quote-border);
  transition: color 0.2s ease;
}

.page-content a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.page-content ul,
.page-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.page-content li {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.page-eyebrow {
  font-family: 'Lora', serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
}

/* =====================================================
   NEWSLETTER SIGNUP WIDGET
   ===================================================== */

.newsletter-block {
  background: var(--quote-bg);
  border-left: 4px solid var(--quote-border);
  padding: 2rem 2.4rem;
  margin: 3rem 0;
  text-align: center;
}

.newsletter-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.newsletter-block p {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.4rem;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  color: var(--ink);
  border: 1px solid var(--rule);
  background: white;
  padding: 0.65rem 1rem;
  border-radius: 2px;
  width: 260px;
  outline: none;
  transition: border-color 0.2s ease;
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--quote-border);
}

.newsletter-form button {
  font-family: 'Lora', serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  background: var(--accent);
  border: none;
  padding: 0.65rem 1.4rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.newsletter-form button:hover { background: var(--quote-border); }

/* =====================================================
   SITE FOOTER
   ===================================================== */

.site-footer {
  background: var(--nav-bg);
  border-top: 1px solid var(--rule);
  padding: 3rem 2rem;
  margin-top: 4rem;
}

.site-footer-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.8rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.footer-links a {
  font-family: 'Lora', serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--accent); }

.footer-utmost {
  margin-bottom: 2rem;
}

.footer-utmost a {
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--quote-border);
  text-decoration: none;
  border-bottom: 1px solid var(--quote-border);
  transition: color 0.2s ease;
}

.footer-utmost a:hover { color: var(--accent); }

.footer-legal {
  font-family: 'Lora', serif;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer-legal a {
  color: var(--text-secondary);
  text-decoration: underline;
}

.footer-divider {
  height: 1px;
  background: var(--rule);
  margin: 1.8rem 0;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   RESPONSIVE — TABLET (640px)
   ===================================================== */

@media (max-width: 640px) {
  html { font-size: 15px; }

  .site-nav-inner { padding: 0 1.2rem; }

  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--nav-bg); border-bottom: 1px solid var(--rule); padding: 1rem 1.2rem 1.5rem; gap: 1.2rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .site-main { padding: 0 1.2rem 4rem; }

  .header { padding: 2.5rem 0 2rem; }
  .header h1 { font-size: 2rem; }
  .header-author { font-size: 0.95rem; }

  .scripture-block p { font-size: 1.1rem; }

  .breakdown-title { font-size: 1.4rem; }
  .breakdown-legend { font-size: 0.85rem; padding: 1rem; }

  .original-quote p { font-size: 1.15rem; line-height: 1.65; }
  .original-quote-label { font-size: 0.75rem; }

  .point-heading { font-size: 1.2rem; }
  .point-body { font-size: 0.95rem; }

  .takeaway-title { font-size: 1.4rem; }
  .takeaway p { font-size: 0.95rem; }
  .person-block { font-size: 0.95rem; padding: 1rem 1.2rem; }

  .closing { padding: 2.5rem 1.5rem; }
  .closing p { font-size: 1.25rem; line-height: 1.6; }

  .point-location { display: block; margin-left: 0; margin-top: 0.5rem; }

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

  .featured-devotional { padding: 1.6rem 1.4rem; }

  .newsletter-form input[type="email"] { width: 100%; }
  .newsletter-form { flex-direction: column; align-items: center; }
  .newsletter-form button { width: 100%; }

  .footer-links { gap: 1rem; }
}

/* =====================================================
   RESPONSIVE — MOBILE (480px)
   ===================================================== */

@media (max-width: 480px) {
  html { font-size: 14px; }

  .site-main { padding: 0 1rem 3rem; }

  .header { padding: 2rem 0 1.8rem; }
  .header h1 { font-size: 1.8rem; margin-bottom: 0.4rem; }
  .header-author { font-size: 0.9rem; margin-bottom: 1.2rem; }

  .scripture-block { padding: 1rem 1.2rem; margin: 1.2rem 0; }
  .scripture-block p { font-size: 1rem; }

  .breakdown-title { font-size: 1.2rem; margin-bottom: 1.2rem; }
  .breakdown-legend { font-size: 0.8rem; padding: 0.8rem; margin-bottom: 2rem; }

  .original-quote { padding: 1.2rem 1.4rem; margin-bottom: 1.4rem; }
  .original-quote p { font-size: 1.05rem; line-height: 1.6; }
  .original-quote-label { font-size: 0.7rem; margin-bottom: 0.6rem; }

  .point { margin-bottom: 2.5rem; padding-bottom: 2.5rem; }
  .point-number { font-size: 0.65rem; margin-bottom: 0.8rem; }
  .point-heading { font-size: 1.1rem; margin-bottom: 0.8rem; }
  .point-body { font-size: 0.9rem; line-height: 1.75; }

  .takeaway-title { font-size: 1.2rem; margin-bottom: 1.5rem; }
  .takeaway p { font-size: 0.9rem; margin-bottom: 1rem; }
  .person-block { font-size: 0.9rem; padding: 0.9rem 1rem; margin: 1rem 0; }
  .person-label { font-size: 1rem; }

  .closing { padding: 2rem 1.2rem; }
  .closing p { font-size: 1.15rem; line-height: 1.5; }
  .closing .section-label { margin-bottom: 1rem; }

  .post-attribution { font-size: 0.85rem; margin-top: 2.5rem; }

  .devotional-nav { flex-direction: column; text-align: center; gap: 0.8rem; }

  .site-footer { padding: 2rem 1.2rem; }
}
