/* ── COMMENTARY MODAL ── */
.commentary-modal-wide { max-width: 680px; }
.commentary-sources {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(200,169,110,0.2);
  font-size: 0.78rem;
  font-family: Arial, sans-serif;
  letter-spacing: 0.04em;
  color: rgba(100,75,20,0.55);
  font-style: normal;
}
.commentary-sources strong { color: rgba(100,75,20,0.8); }
.commentary-lens-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 20px;
}

/* ── LENS PILLS ── */
.lens-pill {
  font-family: Arial, sans-serif;
  font-size: 0.65rem; letter-spacing: 0.08em;
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: transparent;
  color: var(--ink-light);
  cursor: pointer;
  transition: all 0.15s;
}
.lens-pill:hover { background: var(--gold-pale); border-color: var(--gold); color: var(--ink); }
.lens-pill.active { background: var(--gold); color: var(--ink); border-color: var(--gold-light); font-weight: 600; }
.lens-pill.custom-pill { border-style: dashed; color: var(--gold); }

/* ── SERMON MODAL ── */
.sermon-history-btn {
  position: absolute;
  top: 28px; right: 70px;
  font-family: Arial, sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  background: rgba(184,134,11,0.15);
  border: none; border-radius: 6px;
  color: var(--gold); cursor: pointer;
  transition: background 0.2s;
}
.sermon-history-btn:hover { background: rgba(184,134,11,0.3); }
.sermon-modal {
  max-width: 720px;
  width: 92%;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}
.sermon-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.sermon-icon {
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}
.sermon-title {
  font-family: Arial, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 3px;
}
.sermon-passage {
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--ink-light);
  opacity: 0.75;
}
.sermon-body {
  padding: 24px 32px 32px;
  overflow-y: auto;
  flex: 1;
  font-family: Arial, sans-serif;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--ink);
}
.sermon-body p { margin: 0 0 1.2em; }
.sermon-body p:first-child { margin-top: 0; }
.sermon-section-title {
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin: 1.6em 0 0.5em;
  text-transform: uppercase;
}
.sermon-select-hint {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  opacity: 0.9;
  margin-bottom: 18px;
  text-align: center;
  background: rgba(184,134,11,0.12);
  padding: 6px 12px;
  border-radius: 6px;
}
