/* sayhitojen.com — Jen's site */

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

:root {
  --bg: #f5f2ec;
  --surface: #ede9e1;
  --text: #2a2420;
  --muted: #7a6e65;
  --accent: #4a6b7a;
  --accent-light: #c8d8e0;
  --border: #d8d0c4;
  --max-w: 620px;
}

html {
  font-size: 16px;
  line-height: 1.8;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Georgia', 'Times New Roman', serif;
  padding: 0 1.25rem;
}

/* header / nav */
header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 0 2rem;
}

header .wordmark {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: 'Georgia', serif;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 1.2rem;
}

header .wordmark:hover {
  color: var(--accent);
}

nav {
  display: flex;
  gap: 1.5rem;
}

nav a {
  font-size: 0.875rem;
  font-family: 'Georgia', serif;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  border-bottom: none;
}

nav a:hover {
  color: var(--accent);
}

/* divider */
.rule {
  max-width: var(--max-w);
  margin: 0 auto;
  border: none;
  border-top: 1px solid var(--border);
}

/* main */
main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 0 5rem;
}

h1 {
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  color: var(--text);
}

h2 {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: 'Georgia', serif;
  color: var(--muted);
  margin: 3rem 0 1.2rem;
}

h3 {
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 0.4rem;
}

p {
  margin-bottom: 1.1rem;
  font-size: 0.975rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-light);
}

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

/* prayer chip — visual category badge, mirrors Becky's .podcast-label
   but rendered in Jen's quieter, more contemplative design language */
.prayer-label {
  display: inline-block;
  font-family: 'Georgia', serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-light);
  padding: 0.22rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 1.4rem;
}

/* intro block — left-border accent wrapping the core offer.
   Same visual idea as Becky's .intro-block, tuned for Jen's palette. */
.intro-block {
  border-left: 2px solid var(--accent);
  padding: 0.4rem 0 0.4rem 1.2rem;
  margin: 0 0 2rem;
}

.intro-block .lede {
  margin-bottom: 0.9rem;
}

.intro-block .lede:last-child {
  margin-bottom: 0;
}

/* home lede */
.lede {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.1rem;
}

.lede-sub {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 2.5rem;
}

/* scripture pull */
.scripture {
  border-left: 3px solid var(--accent-light);
  padding: 0.6rem 1rem 0.6rem 1.1rem;
  margin: 2rem 0 2.5rem;
  color: var(--muted);
  font-style: italic;
  font-size: 0.92rem;
}

.scripture cite {
  display: block;
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  margin-top: 0.35rem;
  color: var(--muted);
  opacity: 0.8;
}

/* post list */
.post-list {
  list-style: none;
}

.post-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0 1.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.post-list li:last-child {
  border-bottom: none;
}

.post-list .date-col {
  font-size: 0.75rem;
  color: var(--muted);
  padding-top: 0.2rem;
  white-space: nowrap;
  font-family: 'Georgia', serif;
}

.post-list .content-col a {
  display: block;
  font-size: 0.975rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  border-bottom: none;
  margin-bottom: 0.25rem;
}

.post-list .content-col a:hover {
  color: var(--accent);
}

.post-list .content-col p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  font-style: normal;
}

/* post page */
.post-header {
  margin-bottom: 2.5rem;
}

.post-header .post-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
  font-family: 'Georgia', serif;
}

.post-header h1 {
  margin-bottom: 0;
}

.post-body p {
  margin-bottom: 1.15rem;
  font-size: 0.975rem;
}

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

.divider-thin {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}

.back-link {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  border-bottom: none;
  display: inline-block;
  margin-top: 2.5rem;
  font-family: 'Georgia', serif;
}

.back-link:hover {
  color: var(--accent);
}

/* photos */
.hero-photo {
  display: block;
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.6rem;
  border: 1px solid var(--border);
}

.about-photo {
  display: block;
  width: 100%;
  max-width: var(--max-w);
  height: auto;
  border-radius: 3px;
  margin: 1.8rem 0 0.6rem;
  border: 1px solid var(--border);
}

.about-photo-caption {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
  display: block;
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}

/* about */
.tag-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 2.5rem;
}

.tag {
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.73rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.75rem;
  border-radius: 2px;
  font-family: 'Georgia', serif;
}

/* contact */
.contact-email {
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  margin: 1.5rem 0;
  display: block;
  color: var(--accent);
  border-bottom: 1px solid var(--accent-light);
}

.contact-email:hover {
  border-bottom-color: var(--accent);
}

.contact-notes {
  font-size: 0.875rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 1.5rem;
  line-height: 1.7;
}

/* footer */
footer {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.01em;
  font-family: 'Georgia', serif;
}
