/* ═══════════════════════════════════════
   Interlinear Bible & Strong's Concordance
   ═══════════════════════════════════════ */

/* ── Web Font Loading ── */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Hebrew:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ── Font Setup ── */
.il-heb-text {
  font-family: "Noto Sans Hebrew", "SBL Hebrew", "Ezra SIL", "Times New Roman", serif;
  font-size: 1.4em;
  direction: rtl;
  unicode-bidi: bidi-override;
}
.il-grk-text {
  font-family: "Noto Sans", "SBL Greek", "Gentium Plus", "Times New Roman", serif;
  font-size: 1.25em;
}

/* ── Page Container ── */
.il-chapter-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}
.strongs-entry-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

/* ── Hero / Index ── */
.il-hero, .str-hero {
  text-align: center;
  padding: 2.5rem 2rem 2rem;
  border-bottom: 1px solid var(--border, #e2e2e2);
  margin-bottom: 2rem;
}
.il-hero h1, .str-hero h1 { font-size: 2.2rem; margin: 0 0 0.5rem; }
.il-hero-sub, .str-hero-sub { color: var(--text-muted, #666); font-size: 1.1rem; margin: 0 0 1.2rem; }
.il-stats { display: flex; gap: 1.8rem; justify-content: center; flex-wrap: wrap; }
.il-stat { font-size: 1rem; color: var(--text-muted, #666); }
.il-stat strong { color: var(--text, #222); }

/* ── Testament Sections ── */
.il-testament-section { margin-bottom: 2.5rem; padding: 0 1rem; }
.il-testament-title { font-size: 1.35rem; margin: 0 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--accent, #b8860b); }

/* ── Book Grid ── */
.il-book-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 0.6rem; }
.il-book-card {
  display: flex; flex-direction: column;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border, #e2e2e2);
  border-radius: 6px;
  text-decoration: none;
  color: var(--text, #222);
  transition: all 0.15s;
}
.il-book-card:hover { border-color: var(--accent, #b8860b); background: var(--bg-hover, #faf8f0); }
.il-book-card-nt { border-left: 3px solid var(--accent, #b8860b); }
.il-book-name { font-weight: 600; font-size: 1rem; }
.il-book-ch { font-size: 0.85rem; color: var(--text-muted, #888); }

/* ── Chapter Grid ── */
.il-chapter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(52px, 1fr));
  gap: 0.5rem;
  margin: 1.2rem 1rem 2.5rem;
}
.il-ch-link {
  display: flex; align-items: center; justify-content: center;
  padding: 0.6rem;
  border: 1px solid var(--border, #ddd);
  border-radius: 4px;
  text-decoration: none;
  color: var(--text, #333);
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.15s;
}
.il-ch-link:hover { background: var(--accent, #b8860b); color: #fff; border-color: var(--accent, #b8860b); }

/* ── Tools Grid ── */
.il-tools-section { margin-top: 2.5rem; padding: 0 1rem; }
.il-tools-section h2 { font-size: 1.35rem; margin-bottom: 1rem; }
.il-tools-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.2rem; }
.il-tool-card {
  display: flex; flex-direction: column;
  padding: 1.5rem;
  border: 1px solid var(--border, #e2e2e2);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text, #222);
  transition: all 0.15s;
}
.il-tool-card:hover { border-color: var(--accent, #b8860b); box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.il-tool-icon { font-size: 2.2rem; margin-bottom: 0.6rem; }
.il-tool-name { font-weight: 600; font-size: 1.15rem; margin-bottom: 0.4rem; }
.il-tool-desc { font-size: 0.95rem; color: var(--text-muted, #666); }

/* ── Language Badges ── */
.il-lang-badge {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.il-lang-heb { background: #f0e6d3; color: #8b6914; }
.il-lang-grk { background: #d3e6f0; color: #1a5276; }
.dark .il-lang-heb { background: #3d3320; color: #d4a54a; }
.dark .il-lang-grk { background: #1a3040; color: #6aaddb; }

/* ── Chapter Page Header ── */
.il-ch-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.4rem; }
.il-ch-title { font-size: 2rem; margin: 0; }

/* ── Navigation ── */
.il-ch-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.4rem 0;
  margin-bottom: 0.6rem;
  border-top: 1px solid var(--border, #e2e2e2);
  border-bottom: 1px solid var(--border, #e2e2e2);
}
.il-ch-nav-bottom { margin-top: 1.5rem; }
.il-nav-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border, #ddd);
  border-radius: 4px;
  text-decoration: none;
  color: var(--text, #333);
  font-size: 0.95rem;
  transition: all 0.15s;
}
.il-nav-btn:hover { background: var(--accent, #b8860b); color: #fff; border-color: var(--accent, #b8860b); }
.il-nav-disabled { opacity: 0.3; pointer-events: none; }
.il-nav-center { font-size: 0.95rem; color: var(--text-muted, #666); text-decoration: none; }
.il-nav-center:hover { color: var(--accent, #b8860b); }

/* ── View Controls ── */
.il-view-controls {
  display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap;
  margin-bottom: 0.5rem;
  padding: 0.3rem 0;
}
.il-view-btn {
  padding: 0.4rem 1rem;
  border: 1px solid var(--border, #ddd);
  border-radius: 4px;
  background: none;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text, #444);
  transition: all 0.15s;
}
.il-view-btn:hover { border-color: var(--accent, #b8860b); }
.il-view-active { background: var(--accent, #b8860b); color: #fff; border-color: var(--accent, #b8860b); }
.il-toggle-label {
  font-size: 0.9rem;
  color: var(--text-muted, #666);
  margin-left: 0.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ── Interlinear Content ── */
.il-heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent, #b8860b);
  margin: 0.8rem 0 0.3rem;
  padding-top: 0.3rem;
}
.il-verse {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border-light, #f0f0f0);
}
.il-verse-num {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent, #b8860b);
  min-width: 1.8rem;
  padding-top: 0.3rem;
  flex-shrink: 0;
}

.il-words { display: flex; flex-wrap: wrap; gap: 0.2rem; }
.il-words-rtl { direction: ltr; }

/* ── Individual Word Block ── */
.il-word {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.2rem 0.35rem;
  border-radius: 4px;
  cursor: default;
  min-width: 3.2rem;
  transition: background 0.1s;
  gap: 1px;
}
.il-has-strongs { cursor: pointer; }
.il-has-strongs:hover { background: var(--bg-hover, #faf5e8); }
.dark .il-has-strongs:hover { background: #2a2518; }

.il-original { font-size: 1.4em; line-height: 1.3; }
.il-heb-text.il-original { font-size: 1.6em; }
.il-translit { font-size: 0.85rem; color: var(--text-muted, #888); font-style: italic; }
.il-parsing { font-size: 0.78rem; color: var(--text-muted, #aaa); font-family: monospace; }
.il-strongs-link { font-size: 0.78rem; color: var(--accent, #b8860b); text-decoration: none; }
.il-strongs-link:hover { text-decoration: underline; }
.il-english { font-size: 1rem; color: var(--text, #333); font-weight: 500; max-width: 10rem; line-height: 1.3; }

/* ── View Modes ── */
.il-mode-parallel .il-word { flex-direction: row; gap: 0.5rem; min-width: auto; }
.il-mode-parallel .il-original { font-size: 1em; }
.il-mode-parallel .il-translit, .il-mode-parallel .il-parsing, .il-mode-parallel .il-strongs-link { display: none; }
.il-mode-original .il-translit, .il-mode-original .il-parsing, .il-mode-original .il-strongs-link, .il-mode-original .il-english { display: none; }
.il-mode-original .il-word { min-width: auto; padding: 0.1rem 0.3rem; }
.il-mode-original .il-original { font-size: 1.4em; }

/* Toggle visibility */
.il-hide-parsing .il-parsing { display: none; }
.il-hide-strongs .il-strongs-link { display: none; }

/* ── Strong's Popup ── */
.il-popup {
  position: absolute;
  z-index: 1000;
  background: var(--bg, #fff);
  border: 1px solid var(--border, #ddd);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  padding: 1rem 1.2rem;
  max-width: 400px;
  min-width: 240px;
}
.dark .il-popup { background: #1e1e1e; border-color: #444; }
.il-popup-header { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.5rem; flex-wrap: wrap; }
.il-popup-id { font-weight: 700; color: var(--accent, #b8860b); font-size: 0.95rem; }
.il-popup-lemma {
  font-size: 1.4rem;
  font-family: "Noto Sans Hebrew", "Noto Sans", "SBL Hebrew", "SBL Greek", serif;
}
.il-popup-translit { font-style: italic; color: var(--text-muted, #888); font-size: 0.95rem; }
.il-popup-close { margin-left: auto; background: none; border: none; cursor: pointer; font-size: 1.3rem; color: var(--text-muted, #888); padding: 0; }
.il-popup-def { font-size: 0.95rem; margin-bottom: 0.4rem; line-height: 1.5; }
.il-popup-kjv { font-size: 0.9rem; color: var(--text-muted, #666); margin-bottom: 0.6rem; }
.il-popup-link { font-size: 0.9rem; color: var(--accent, #b8860b); }

/* ── Back Nav ── */
.il-back-nav { margin: 2.5rem 0 1.2rem; }
.il-back-nav a { color: var(--accent, #b8860b); text-decoration: none; font-size: 1rem; }
.il-back-nav a:hover { text-decoration: underline; }
.il-cross-ref { text-align: center; margin: 1.2rem 0 2.5rem; }
.il-cross-ref a { color: var(--accent, #b8860b); text-decoration: none; font-size: 1rem; }

/* ═══════════════════════════════════════
   Strong's Entry Page
   ═══════════════════════════════════════ */
/* Strong's two-column layout (reuses bch-columns from style.css) */
.str-columns { margin-top: 0; }
.str-main-content { min-width: 0; }

/* Strong's sidebar */
.str-sidebar { padding-top: 0 !important; }
.str-sidebar-card {
  border: 1px solid var(--border, #e2e2e2);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
}
.str-sidebar-heading {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text, #333);
  margin: 0 0 0.8rem;
}
.str-sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.str-sidebar-links .str-link-btn {
  text-align: center;
  padding: 0.45rem 0.8rem;
  font-size: 0.85rem;
}

/* Sidebar verse cards */
.str-verse-list { display: flex; flex-direction: column; gap: 0.6rem; }
.str-verse-card {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-light, #f0f0f0);
}
.str-verse-card:last-child { border-bottom: none; }
.str-verse-ref {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent, #b8860b);
  text-decoration: none;
  display: block;
  margin-bottom: 0.2rem;
}
.str-verse-ref:hover { text-decoration: underline; }
.str-verse-text {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text, #444);
  margin: 0;
}

.strongs-entry-page { max-width: 1200px; }

.str-entry-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.8rem; flex-wrap: wrap; }
.str-entry-id-row { display: flex; align-items: baseline; gap: 0.6rem; flex-wrap: wrap; }
.str-entry-id { font-size: 1.5rem; font-weight: 700; color: var(--accent, #b8860b); }
.str-entry-lemma {
  font-size: 2.2rem;
  font-family: "Noto Sans Hebrew", "Noto Sans", "SBL Hebrew", "SBL Greek", serif;
}
.str-entry-translit { font-size: 1.2rem; color: var(--text-muted, #666); font-style: italic; }
.str-entry-pron { font-size: 1rem; color: var(--text-muted, #888); }

/* Word study badge on entry page */
.str-entry-ws-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 4px;
  font-weight: 600;
  margin-left: 0.5rem;
}
.dark .str-entry-ws-badge { background: #1b3a1e; color: #66bb6a; }

/* Part of speech line */
.str-pos { font-size: 1rem; color: var(--text-muted, #666); font-style: italic; margin-bottom: 0.8rem; }

/* Quick definition (Dodson gloss) */
.str-section-gloss { background: var(--bg-hover, #faf8f0); border-radius: 6px; padding: 1rem 1.2rem; margin-bottom: 2rem; border: none; }
.dark .str-section-gloss { background: #1e1c16; }
.str-gloss-text { font-size: 1.2rem; font-weight: 500; line-height: 1.5; margin: 0; }

.str-entry-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem 0;
  margin-bottom: 1.8rem;
  border-top: 1px solid var(--border, #e2e2e2);
  border-bottom: 1px solid var(--border, #e2e2e2);
}

.str-section { margin-bottom: 2rem; padding-bottom: 1.8rem; border-bottom: 1px solid var(--border-light, #f0f0f0); }
.str-section h2 { font-size: 1.2rem; margin: 0 0 0.8rem; color: var(--accent, #b8860b); }
.str-def-text { font-size: 1.1rem; line-height: 1.7; margin: 0 0 0.6rem; }
.str-derivation, .str-kjv { font-size: 1rem; margin: 0.4rem 0; line-height: 1.5; }

/* Proper Names */
.str-name-entry { margin-bottom: 0.8rem; padding-bottom: 0.8rem; border-bottom: 1px solid var(--border-light, #f5f5f5); }
.str-name-entry:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.str-name-title { font-weight: 700; font-size: 1.05rem; color: var(--accent, #b8860b); margin-right: 0.5rem; }
.str-name-brief { font-size: 0.92rem; color: var(--text-muted, #666); font-style: italic; }
.str-name-desc { font-size: 0.95rem; line-height: 1.6; margin-top: 0.3rem; color: var(--text, #444); }

/* Outline of Biblical Usage */
.str-outline-list { padding-left: 0.5rem; }
.str-outline-item { font-size: 0.95rem; line-height: 1.7; padding: 0.15rem 0; color: var(--text, #333); }
.str-outline-item:first-child { padding-top: 0; }

/* TWOT reference */
.str-twot { font-size: 0.92rem; color: var(--text-muted, #666); margin-top: 0.3rem; }

/* Greek cross-references (LXX) */
.str-crossref-intro { font-size: 0.92rem; color: var(--text-muted, #666); margin-bottom: 0.6rem; }
.str-crossref-links { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.str-crossref-tag {
  display: inline-block;
  font-size: 0.85rem;
  padding: 0.2rem 0.6rem;
  background: var(--bg-hover, #f5f5f0);
  border: 1px solid var(--border, #e2e2e2);
  border-radius: 4px;
  color: var(--accent, #b8860b);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.str-crossref-tag:hover { background: #fff; border-color: var(--accent, #b8860b); }

.str-lexicon-text {
  font-size: 1rem;
  line-height: 1.8;
  padding-right: 0.5rem;
  white-space: pre-wrap;
  font-family: "Noto Sans Hebrew", "Noto Sans", "SBL Hebrew", "SBL Greek", serif;
}
.str-section-wordstudy .str-ws-content {
  font-size: 1rem;
  line-height: 1.8;
  white-space: pre-wrap;
  font-family: "Noto Sans", serif;
}
.str-ws-title { font-weight: 600; margin-bottom: 0.6rem; font-size: 1.05rem; }

/* Occurrences — collapsible book groups */
.str-section-occ { overflow: visible; }
.str-occ-books { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.str-occ-book {
  border: 1px solid var(--border, #e2e2e2);
  border-radius: 6px;
  overflow: hidden;
  min-width: 120px;
}
.str-occ-book-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.4rem 0.7rem;
  border: none;
  background: var(--bg-hover, #f8f8f8);
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text, #333);
  text-align: left;
  transition: background 0.15s;
}
.str-occ-book-btn:hover { background: var(--border, #e8e8e8); }
.str-occ-book-name { font-weight: 600; flex: 1; }
.str-occ-book-count {
  font-size: 0.78rem;
  color: var(--text-muted, #888);
  background: rgba(0,0,0,0.06);
  padding: 0.1rem 0.4rem;
  border-radius: 10px;
  min-width: 1.4rem;
  text-align: center;
}
.str-occ-chevron { transition: transform 0.2s; flex-shrink: 0; color: var(--text-muted, #aaa); }
.str-occ-book.open .str-occ-chevron { transform: rotate(180deg); }
.str-occ-book-refs {
  display: none;
  flex-wrap: wrap;
  gap: 0.3rem;
  padding: 0.5rem 0.7rem;
  border-top: 1px solid var(--border-light, #f0f0f0);
}
.str-occ-book.open .str-occ-book-refs { display: flex; }
.str-occ-ref {
  font-size: 0.82rem;
  padding: 0.15rem 0.45rem;
  background: var(--bg-hover, #f5f5f5);
  border-radius: 3px;
  color: var(--accent, #b8860b);
  text-decoration: none;
  transition: background 0.1s;
}
.str-occ-ref:hover { background: var(--border, #e2e2e2); text-decoration: underline; }
.dark .str-occ-ref { background: #2a2a2a; }
.dark .str-occ-book-btn { background: #1a1a1a; }
.dark .str-occ-book { border-color: #333; }
.dark .str-occ-book-count { background: rgba(255,255,255,0.08); }

/* Links */
.str-links { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.str-link-btn {
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--accent, #b8860b);
  border-radius: 4px;
  text-decoration: none;
  color: var(--accent, #b8860b);
  font-size: 0.95rem;
  transition: all 0.15s;
}
.str-link-btn:hover { background: var(--accent, #b8860b); color: #fff; }

/* ═══════════════════════════════════════
   Strong's List / Index
   ═══════════════════════════════════════ */
.str-header { margin-bottom: 1.2rem; padding: 0 1rem; }
.str-header h1 { font-size: 1.8rem; margin: 0 0 0.4rem; }
.str-count { font-size: 1rem; color: var(--text-muted, #666); margin: 0; }

.str-search-box { margin-bottom: 1.2rem; padding: 0 1rem; }
.str-search-input {
  width: 100%;
  padding: 0.7rem 1.2rem;
  border: 1px solid var(--border, #ddd);
  border-radius: 6px;
  font-size: 1rem;
  background: var(--bg, #fff);
  color: var(--text, #333);
}
.str-search-input:focus { outline: none; border-color: var(--accent, #b8860b); box-shadow: 0 0 0 2px rgba(184,134,11,0.15); }
.dark .str-search-input { background: #1e1e1e; border-color: #444; color: #ddd; }

.str-entry-row {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--border-light, #f0f0f0);
  text-decoration: none;
  color: var(--text, #333);
  transition: background 0.1s;
}
.str-entry-row:hover { background: var(--bg-hover, #faf8f0); }
.str-id { font-weight: 600; font-size: 0.9rem; color: var(--accent, #b8860b); min-width: 4rem; }
.str-lemma {
  min-width: 5rem;
  font-size: 1.15rem;
  font-family: "Noto Sans Hebrew", "Noto Sans", "SBL Hebrew", "SBL Greek", serif;
}
.str-translit { font-size: 0.9rem; font-style: italic; color: var(--text-muted, #888); min-width: 5.5rem; }
.str-def { font-size: 0.9rem; color: var(--text-muted, #666); flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.str-ws-badge {
  font-size: 0.72rem;
  padding: 0.18rem 0.5rem;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 3px;
  font-weight: 600;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.dark .str-ws-badge { background: #1b3a1e; color: #66bb6a; }
.str-occ { font-size: 0.85rem; color: var(--text-muted, #999); min-width: 3rem; text-align: right; }

/* Strong's top-level sections */
.str-sections { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.2rem; margin: 2rem 1rem; }
.str-section-card {
  display: block;
  padding: 1.8rem;
  border: 1px solid var(--border, #e2e2e2);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text, #222);
  transition: all 0.15s;
}
.str-section-card:hover { border-color: var(--accent, #b8860b); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.str-section-card h2 { margin: 0.6rem 0 0.4rem; font-size: 1.3rem; }
.str-section-card p { margin: 0; font-size: 0.95rem; color: var(--text-muted, #666); }
.str-section-icon { font-size: 2.8rem; }
.str-featured { margin-top: 2.5rem; }
.str-featured-heading { font-size: 1.4rem; margin: 0 0 1rem; color: var(--text, #333); }
.str-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.8rem;
}
.str-feat-card {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border, #e2e2e2);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text, #333);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.str-feat-card:hover { border-color: var(--accent, #b8860b); box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.str-feat-id { font-weight: 700; color: var(--accent, #b8860b); font-size: 0.9rem; }
.str-feat-lemma { font-size: 1.3rem; font-family: "Noto Sans Hebrew", "Noto Sans", "SBL Hebrew", "SBL Greek", serif; }
.str-feat-translit { font-size: 0.9rem; color: var(--text-muted, #666); font-style: italic; }
.str-feat-def { font-size: 0.88rem; color: var(--text-muted, #555); width: 100%; }

.str-interlinear-link { text-align: center; margin-top: 2.5rem; }
.str-interlinear-link a { color: var(--accent, #b8860b); text-decoration: none; font-size: 1.1rem; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .str-columns { grid-template-columns: 1fr !important; }
  .str-sidebar { order: -1; }
  .str-sidebar-verses { }
}
@media (max-width: 640px) {
  .il-chapter-page, .strongs-entry-page { padding: 0.8rem; }
  .il-book-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .il-word { min-width: 2.5rem; padding: 0.15rem 0.25rem; }
  .il-original { font-size: 1.2em; }
  .il-heb-text.il-original { font-size: 1.35em; }
  .il-english { font-size: 0.88rem; max-width: 7rem; }
  .il-stats { gap: 1rem; }
  .il-ch-title { font-size: 1.4rem; }
  .str-entry-row { font-size: 0.9rem; padding: 0.5rem 0.6rem; }
  .str-sections { grid-template-columns: 1fr; }
}
