:root {
  color-scheme: light;
  --bible-ink: #17201b;
  --bible-muted: #66706a;
  --bible-paper: #fffdf9;
  --bible-canvas: #f5f4ef;
  --bible-line: #dedbd3;
  --bible-soft-line: #ebe7de;
  --bible-blue: #286eb5;
  --bible-green: #126b4c;
  --bible-green-dark: #0a4d37;
  --bible-danger: #b4232f;
  --bible-highlight-yellow: #ffe39a;
  --bible-highlight-green: #c9efd5;
  --bible-highlight-blue: #cfe4ff;
  --bible-highlight-pink: #ffd5e5;
  --bible-reading-size: 1.4rem;
  --bible-toolbar-height: 64px;
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

/* First-visit site language choice. Bible translation remains independent. */
.site-language-dialog {
  width: min(520px, calc(100vw - 32px));
  padding: 0;
  border: 1px solid #d9e1dc;
  border-radius: 18px;
  color: #10251c;
  background: #fffefb;
  box-shadow: 0 24px 80px rgb(16 37 28 / 22%);
}

.site-language-dialog::backdrop {
  background: rgb(16 37 28 / 52%);
  backdrop-filter: blur(3px);
}

.site-language-dialog-inner {
  padding: 32px;
  text-align: center;
}

.site-language-dialog img {
  display: block;
  margin: 0 auto 14px;
}

.site-language-kicker {
  margin: 0 0 8px;
  color: #17764d;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-language-dialog h1 {
  margin: 0;
  font-size: clamp(1.7rem, 5vw, 2.25rem);
  letter-spacing: -0.035em;
}

.site-language-dialog h1 + p {
  margin: 12px 0 22px;
  color: #54645d;
  line-height: 1.55;
}

.site-language-dialog h1 + p span {
  color: #718078;
}

.site-language-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.site-language-options button {
  min-height: 88px;
  padding: 16px;
  border: 1px solid #cfd9d3;
  border-radius: 12px;
  color: #10251c;
  background: #fff;
  cursor: pointer;
  text-align: left;
}

.site-language-options button:hover,
.site-language-options button:focus-visible {
  border-color: #158958;
  background: #eff9f3;
  outline: 3px solid rgb(21 137 88 / 14%);
}

.site-language-options strong,
.site-language-options span {
  display: block;
}

.site-language-options strong {
  font-size: 1.05rem;
}

.site-language-options span {
  margin-top: 5px;
  color: #68776f;
  font-size: 0.82rem;
}

.site-language-dialog small {
  display: block;
  margin-top: 18px;
  color: #77847d;
  line-height: 1.45;
}

@media (max-width: 520px) {
  .site-language-dialog-inner { padding: 26px 20px 22px; }
  .site-language-options { grid-template-columns: 1fr; }
  .site-language-options button { min-height: 72px; }
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bible-canvas);
  color: var(--bible-ink);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--bible-toolbar-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: clip;
  background: var(--bible-canvas);
  color: var(--bible-ink);
}

button,
input,
select {
  font: inherit;
  letter-spacing: 0;
}

button,
select {
  cursor: pointer;
}

a {
  color: inherit;
}

svg {
  display: block;
  width: 1em;
  height: 1em;
  stroke-width: 1.9;
}

.bible-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bible-skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 3000;
  transform: translateY(-160%);
  border-radius: 4px;
  background: var(--bible-ink);
  color: #fff;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.bible-skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(47, 120, 196, 0.45);
  outline-offset: 3px;
}

.bible-kicker {
  margin: 0 0 10px;
  color: var(--bible-green);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.bible-primary-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 6px;
  background: var(--bible-ink);
  color: #fff;
  padding: 0 16px;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}

.bible-primary-link:hover {
  background: #2d3731;
  transform: translateY(-1px);
}

.bible-primary-link svg {
  font-size: 1rem;
}

.bible-home-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  color: #4c554f;
  font-size: 0.78rem;
  font-weight: 750;
}

.bible-home-brand img {
  border-radius: 8px;
}

.bible-site-header {
  display: flex;
  width: min(1280px, calc(100% - 40px));
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  border-bottom: 0;
}

.bible-site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bible-ink);
  font-size: 1.05rem;
  font-weight: 750;
  text-decoration: none;
}

.bible-site-brand img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.bible-site-header nav {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px;
  border: 1px solid rgba(18, 74, 112, 0.12);
  border-radius: 24px;
  background: #f5f4ef;
  box-shadow: 0 12px 30px rgba(13, 44, 66, 0.08);
}

.bible-site-header nav a {
  color: #18364b;
  font-size: 0.84rem;
  font-weight: 760;
  text-decoration: none;
}

.bible-site-header nav .bible-nav-link,
.bible-site-header nav .bible-language-switch {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 5px 11px 5px 6px;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.bible-site-header nav .bible-nav-link:hover,
.bible-site-header nav .bible-nav-link:focus-visible,
.bible-site-header nav .bible-language-switch:hover,
.bible-site-header nav .bible-language-switch:focus-visible {
  background: #e7eef3;
  color: #0d4d78;
  transform: translateY(-1px);
}

.bible-nav-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(18, 74, 112, 0.15);
  border-radius: 50%;
  background: #fff;
  color: #164d72;
  box-shadow: 0 4px 12px rgba(13, 44, 66, 0.08);
}

.bible-nav-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.15;
}

.bible-nav-link.is-download .bible-nav-icon {
  border-color: #177b59;
  background: #177b59;
  color: #fff;
  box-shadow: 0 5px 14px rgba(23, 123, 89, 0.22);
}

.bible-site-header nav .bible-language-switch {
  min-height: 48px;
  border-color: #111;
  background: #111;
  color: #fff;
  padding-right: 14px;
  box-shadow: 0 7px 18px rgba(17, 17, 17, 0.2);
}

.bible-site-header nav .bible-language-switch:hover,
.bible-site-header nav .bible-language-switch:focus-visible {
  background: #292929;
  color: #fff;
}

.bible-language-short {
  display: none;
}

.bible-home-actions,
.bible-front-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.bible-text-link,
.bible-source-link {
  color: var(--bible-green-dark);
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.bible-source-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

/* Bible-first editorial front */
.bible-front-main {
  width: 100%;
}

.bible-front-hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 112px);
  max-height: 820px;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.bible-front-hero > img,
.bible-front-hero-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bible-front-hero > img {
  z-index: -2;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) sepia(0.08) brightness(1.03);
  animation: bible-hero-arrive 900ms ease-out both;
}

.bible-front-hero-wash {
  z-index: -1;
  background: rgba(248, 244, 232, 0.38);
}

.bible-front-hero-copy {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.bible-front-hero-copy > * {
  max-width: 650px;
}

.bible-front-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 7vw, 6.8rem);
  font-weight: 500;
  line-height: 0.92;
}

.bible-front-hero-copy > p:not(.bible-kicker) {
  margin: 26px 0 30px;
  color: #3e4842;
  font-size: clamp(1.08rem, 1.65vw, 1.3rem);
  line-height: 1.68;
}

.bible-library-cta {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--bible-green-dark);
  border-radius: 7px;
  background: var(--bible-green);
  color: #fff;
  padding: 0 22px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(18, 107, 76, 0.2);
  transition: background-color 160ms ease, transform 160ms ease;
}

.bible-library-cta:hover {
  background: var(--bible-green-dark);
  transform: translateY(-1px);
}

.bible-front-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 30px;
  color: #475149;
  font-size: 0.86rem;
  font-weight: 750;
}

.bible-front-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bible-front-proof span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bible-green);
  content: "";
}

.bible-front-story,
.bible-front-reading,
.bible-front-contribution,
.bible-front-main > .bible-software-section {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.bible-front-story {
  display: grid;
  min-height: 540px;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(52px, 8vw, 120px);
  padding: 84px 0;
}

.bible-front-story h2,
.bible-front-reading h2,
.bible-front-contribution h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.6vw, 4.8rem);
  font-weight: 500;
  line-height: 1;
}

.bible-front-story-copy {
  color: var(--bible-muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.bible-front-story-copy p {
  margin: 0 0 20px;
}

.bible-front-reading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
  background: #eeede7;
  padding: 90px 0;
  box-shadow: 0 0 0 100vmax #eeede7;
  clip-path: inset(0 -100vmax);
}

.bible-front-reading::before {
  display: none;
}

.bible-front-reading > div:first-child > p:not(.bible-kicker),
.bible-front-contribution > div:last-child > p:not(.bible-kicker) {
  margin: 22px 0 28px;
  color: var(--bible-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.bible-word-ledger {
  border-top: 1px solid #cbc8bf;
}

.bible-word-ledger > div {
  display: grid;
  min-height: 66px;
  grid-template-columns: minmax(0, 1fr) 30px minmax(0, 1fr);
  align-items: center;
  border-bottom: 1px solid #cbc8bf;
  font-size: 1.02rem;
}

.bible-word-ledger span {
  color: #786c62;
  text-decoration: line-through;
}

.bible-word-ledger svg {
  color: #8d948f;
}

.bible-word-ledger strong {
  color: var(--bible-green-dark);
}

.bible-front-contribution {
  display: grid;
  min-height: 560px;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(52px, 8vw, 120px);
  padding: 88px 0;
  border-bottom: 1px solid var(--bible-line);
}

.bible-contribution-steps {
  border-top: 1px solid var(--bible-line);
}

.bible-contribution-steps > div {
  display: grid;
  min-height: 92px;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--bible-line);
}

.bible-contribution-steps span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #cfd7d2;
  border-radius: 50%;
  color: var(--bible-green);
  font-weight: 800;
}

.bible-contribution-steps p {
  margin: 0;
  color: #48524c;
  line-height: 1.55;
}

.bible-site-footer {
  display: flex;
  width: min(1280px, calc(100% - 40px));
  min-height: 120px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 0 auto;
  border-top: 1px solid var(--bible-line);
}

.bible-site-footer > div,
.bible-site-footer nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.bible-site-footer img {
  border-radius: 7px;
}

.bible-site-footer p {
  display: grid;
  gap: 3px;
  margin: 0;
}

.bible-site-footer p span,
.bible-site-footer a {
  color: var(--bible-muted);
  font-size: 0.9rem;
}

.bible-site-footer nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.bible-info-main,
.bible-policy-main,
.bible-software-main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 104px) 0 80px;
}

.bible-info-hero,
.bible-policy-main > header {
  max-width: 900px;
  padding-bottom: 48px;
}

.bible-info-hero h1,
.bible-policy-main h1,
.bible-software-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.9rem, 7vw, 6.2rem);
  font-weight: 500;
  line-height: 0.98;
}

.bible-software-hero h1 {
  font-size: clamp(2.9rem, 5.2vw, 4.9rem);
  line-height: 1.02;
}

.bible-info-hero > p:last-child,
.bible-policy-main > header > p:last-child,
.bible-software-hero > div > p:not(.bible-kicker, .bible-download-safety) {
  max-width: 780px;
  margin: 26px 0 0;
  color: var(--bible-muted);
  font-size: 1.18rem;
  line-height: 1.75;
}

.bible-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--bible-line);
  border-bottom: 1px solid var(--bible-line);
}

.bible-info-grid article {
  padding: 40px 34px 46px 0;
}

.bible-info-grid article + article {
  border-left: 1px solid var(--bible-line);
  padding-left: 34px;
}

.bible-info-grid article > span {
  color: var(--bible-green);
  font-size: 0.82rem;
  font-weight: 800;
}

.bible-info-grid h2,
.bible-policy-main h2 {
  margin: 18px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
}

.bible-info-grid p,
.bible-policy-main section p {
  margin: 0;
  color: #4f5953;
  font-size: 1.02rem;
  line-height: 1.75;
}

.bible-policy-main section {
  max-width: 860px;
  border-top: 1px solid var(--bible-line);
  padding-top: 18px;
}

.bible-policy-main h2 {
  margin-top: 34px;
}

.bible-software-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  align-items: center;
  gap: clamp(40px, 7vw, 92px);
  padding-bottom: 80px;
}

.bible-software-hero img {
  width: 100%;
  border: 1px solid var(--bible-line);
  border-radius: 8px;
  box-shadow: 0 22px 56px rgba(28, 40, 32, 0.14);
}

.bible-download-safety {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 0;
  color: var(--bible-muted);
  font-size: 0.9rem;
}

.bible-download-safety svg {
  color: var(--bible-green);
}

.shine-system-support {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 7vw, 92px);
  border-top: 1px solid var(--bible-line);
  border-bottom: 1px solid var(--bible-line);
  padding: 58px 0;
}

.shine-system-support header h2 {
  max-width: 520px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.05;
}

.shine-system-support header > p:last-child,
.shine-system-note {
  margin: 18px 0 0;
  color: var(--bible-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.shine-system-list {
  border-top: 1px solid var(--bible-line);
}

.shine-system-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--bible-line);
  padding: 24px 0;
}

.shine-system-row > svg {
  width: 25px;
  height: 25px;
  color: var(--bible-green);
}

.shine-system-row h3 {
  margin: 0 0 4px;
  font-size: 1.16rem;
}

.shine-system-row p {
  margin: 0;
  color: var(--bible-muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.shine-system-status {
  color: var(--bible-muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.shine-system-status.is-ready {
  color: var(--bible-green);
}

.shine-system-note {
  grid-column: 2;
  margin-top: -14px;
  font-size: 0.9rem;
}

@media (max-width: 760px) {
  .shine-system-support {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 44px 0;
  }

  .shine-system-row {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 14px;
  }

  .shine-system-row .shine-system-status {
    grid-column: 2;
    justify-self: start;
  }

  .shine-system-note {
    grid-column: 1;
    margin-top: -10px;
  }
}

.bible-site-footer nav a {
  font-weight: 700;
  text-decoration: none;
}

@keyframes bible-hero-arrive {
  from {
    opacity: 0;
    transform: scale(1.025);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.bible-breadcrumbs {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
  color: #5f6762;
  font-size: 0.78rem;
  line-height: 1.4;
}

.bible-breadcrumbs a {
  text-decoration: none;
}

.bible-breadcrumbs a:hover {
  color: var(--bible-blue);
  text-decoration: underline;
}

.bible-breadcrumbs svg {
  flex: 0 0 auto;
  font-size: 0.82rem;
}

.bible-breadcrumbs span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Public Bible index */
.bible-home-main,
.bible-version-main,
.bible-book-main {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 72px;
}

.bible-home-intro,
.bible-version-header,
.bible-book-header {
  display: grid;
  min-height: 380px;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
  border-bottom: 1px solid var(--bible-line);
}

.bible-home-copy h1,
.bible-version-header h1,
.bible-book-header h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6vw, 5.7rem);
  font-weight: 500;
  line-height: 0.98;
}

.bible-version-header h1,
.bible-book-header h1 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.bible-home-copy > p:not(.bible-kicker),
.bible-version-header > div > p:not(.bible-kicker),
.bible-book-header > div > p:not(.bible-kicker) {
  max-width: 680px;
  margin: 22px 0 28px;
  color: var(--bible-muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.7;
}

.bible-reading-feature {
  display: grid;
  align-content: center;
  gap: 18px;
  border-left: 1px solid var(--bible-line);
  padding-left: clamp(28px, 5vw, 72px);
}

.bible-reading-feature > p {
  display: grid;
  gap: 6px;
  margin: 0;
}

.bible-reading-feature strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.bible-reading-feature p span {
  color: var(--bible-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.bible-book-index {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(34px, 7vw, 92px);
  padding: 72px 0;
}

.bible-band {
  position: relative;
  background: #eeede7;
  box-shadow: 0 0 0 100vmax #eeede7;
  clip-path: inset(0 -100vmax);
}

.bible-band::before {
  display: none;
}

.bible-section-heading {
  align-self: start;
  position: sticky;
  top: 24px;
}

.bible-section-heading p {
  margin: 0 0 8px;
  color: var(--bible-green);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.bible-section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.15;
}

.bible-book-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--bible-line);
}

.bible-book-links a {
  display: grid;
  min-height: 70px;
  grid-template-columns: 32px minmax(0, 1fr) auto 18px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--bible-line);
  padding: 10px 12px;
  text-decoration: none;
  transition: background-color 150ms ease, color 150ms ease;
}

.bible-book-links a:nth-child(odd) {
  border-right: 1px solid var(--bible-line);
}

.bible-book-links a:hover {
  background: rgba(255, 255, 255, 0.72);
  color: var(--bible-blue);
}

.bible-book-links a > span {
  color: #9a9f9b;
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
}

.bible-book-links strong {
  min-width: 0;
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.bible-book-links small {
  color: var(--bible-muted);
  font-size: 0.72rem;
}

.bible-book-links svg {
  font-size: 0.9rem;
}

.bible-version-main > .bible-breadcrumbs,
.bible-book-main > .bible-breadcrumbs {
  margin-bottom: 20px;
}

.bible-version-header,
.bible-book-header {
  min-height: 330px;
}

.bible-method {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
  gap: 24px 80px;
  border-top: 1px solid var(--bible-line);
  padding: 72px 0 16px;
}

.bible-method .bible-kicker {
  grid-column: 1 / -1;
}

.bible-method h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.05;
}

.bible-method > p:not(.bible-kicker) {
  margin: 0;
  color: var(--bible-muted);
  line-height: 1.75;
}

.bible-method dl {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 32px 0 0;
  border-top: 1px solid var(--bible-line);
  border-bottom: 1px solid var(--bible-line);
}

.bible-method dl > div {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.bible-method dl > div + div {
  border-left: 1px solid var(--bible-line);
}

.bible-method dt {
  color: var(--bible-muted);
  font-size: 0.75rem;
}

.bible-method dd {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
}

.bible-method code {
  font-size: 0.8rem;
}

.bible-change-count {
  color: inherit;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.bible-changes-main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 96px;
}

.bible-changes-hero {
  max-width: 820px;
  padding: 42px 0 38px;
}

.bible-changes-hero h1 {
  margin: 8px 0 16px;
  font-family: var(--bible-serif);
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1;
}

.bible-changes-hero > p:not(.bible-kicker) {
  color: var(--bible-muted);
  font-size: 18px;
  line-height: 1.7;
}

.bible-changes-hero dl {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 28px 0;
}

.bible-changes-hero dl div { min-width: 130px; }
.bible-changes-hero dt { color: var(--bible-muted); font-size: 13px; }
.bible-changes-hero dd { margin: 4px 0 0; font-size: 22px; font-weight: 800; }

.bible-change-json {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bible-green);
  font-weight: 800;
}

.bible-change-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--bible-line);
  list-style: none;
}

.bible-change-row {
  display: grid;
  grid-template-columns: 150px minmax(230px, 1fr) 210px;
  gap: 10px 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--bible-line);
}

.bible-change-reference { color: var(--bible-green); font-weight: 800; }
.bible-change-text { display: flex; align-items: center; gap: 12px; font-size: 17px; }
.bible-change-text svg { width: 16px; }
.bible-change-text del { color: #8a3c3c; }
.bible-change-text ins { color: #126b4c; font-weight: 800; text-decoration: none; }
.bible-change-meta { color: var(--bible-muted); font-size: 13px; overflow-wrap: anywhere; }
.bible-change-row p { grid-column: 2 / -1; margin: 0; color: var(--bible-muted); line-height: 1.55; }

@media (max-width: 720px) {
  .bible-changes-main { width: min(100% - 28px, 1120px); padding-top: 24px; }
  .bible-change-row { grid-template-columns: 1fr; gap: 8px; }
  .bible-change-row p { grid-column: auto; }
}

.bible-chapter-index {
  padding: 64px 0;
}

.bible-chapter-index h2 {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.bible-chapter-index > div {
  display: grid;
  grid-template-columns: repeat(12, minmax(44px, 1fr));
  border-top: 1px solid var(--bible-line);
  border-left: 1px solid var(--bible-line);
}

.bible-chapter-index a {
  display: grid;
  min-height: 54px;
  place-items: center;
  border-right: 1px solid var(--bible-line);
  border-bottom: 1px solid var(--bible-line);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.bible-chapter-index a:hover {
  background: var(--bible-green);
  color: #fff;
}

.bible-neighbor-books {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--bible-line);
  border-top: 1px solid var(--bible-line);
  border-bottom: 1px solid var(--bible-line);
}

.bible-neighbor-books a {
  display: grid;
  gap: 5px;
  background: var(--bible-canvas);
  padding: 22px 0;
  text-decoration: none;
}

.bible-neighbor-books a:last-child {
  text-align: right;
}

.bible-neighbor-books span {
  color: var(--bible-muted);
  font-size: 0.72rem;
}

.bible-neighbor-books strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 500;
}

/* Shared Lectura 2026 switch */
.bible-reading-switch {
  position: relative;
  display: inline-flex;
  width: 124px;
  height: 40px;
  flex: 0 0 124px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--bible-green-dark);
  border-radius: 999px;
  background: var(--bible-green);
  box-shadow:
    inset 0 3px 7px rgba(0, 0, 0, 0.38),
    inset 0 -1px 0 rgba(255, 255, 255, 0.18),
    0 2px 4px rgba(18, 107, 76, 0.22);
  color: #fff;
  padding: 4px;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.bible-reading-switch:hover {
  background: #0f7653;
}

.bible-switch-label {
  position: absolute;
  font-size: 0.62rem;
  font-weight: 850;
  text-transform: uppercase;
  transition: opacity 180ms ease, transform 180ms ease;
}

.bible-switch-label-on {
  left: 12px;
  opacity: 1;
  transform: translateX(0);
}

.bible-switch-label-off {
  right: 15px;
  opacity: 0;
  transform: translateX(8px);
}

.bible-switch-knob {
  position: absolute;
  top: 50%;
  left: 88px;
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 2px 7px rgba(0, 0, 0, 0.38);
  transition: left 180ms ease, transform 180ms ease;
}

html[data-reading-2026="off"] .bible-reading-switch {
  border-color: #7f8983;
  background: #929b96;
  box-shadow:
    inset 0 3px 7px rgba(0, 0, 0, 0.3),
    inset 0 -1px 0 rgba(255, 255, 255, 0.16),
    0 1px 3px rgba(0, 0, 0, 0.16);
}

html[data-reading-2026="off"] .bible-switch-label-on {
  opacity: 0;
  transform: translateX(-8px);
}

html[data-reading-2026="off"] .bible-switch-label-off {
  opacity: 1;
  transform: translateX(0);
}

html[data-reading-2026="off"] .bible-switch-knob {
  left: 4px;
}

.bible-reading-switch:active .bible-switch-knob {
  transform: translateY(-50%) scale(0.94);
}

/* Reader toolbar */
.bible-reader-toolbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  min-height: var(--bible-toolbar-height);
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--bible-line);
  background: rgba(255, 253, 249, 0.96);
  padding: 8px max(14px, env(safe-area-inset-left));
  box-shadow: 0 4px 18px rgba(33, 39, 35, 0.04);
  backdrop-filter: blur(16px);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 180ms ease;
  will-change: transform;
}

.bible-reader-toolbar.is-hidden {
  transform: translateY(calc(-100% - 2px));
  box-shadow: none;
}

.bible-reader-brand {
  display: inline-flex;
  min-width: 0;
  height: 44px;
  align-items: center;
  gap: 10px;
  padding-right: 6px;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
}

.bible-reader-brand > span:last-child {
  display: flex;
  gap: 4px;
}

.bible-reader-brand strong {
  font-size: 1.05rem;
}

.bible-brand-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #f0ece3;
  color: #696257;
}

.bible-brand-icon svg {
  font-size: 1.18rem;
}

.bible-icon-button,
.bible-font-controls button {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid #d7deda;
  border-radius: 50%;
  background: #fff;
  color: #465049;
  box-shadow: 0 1px 2px rgba(28, 40, 32, 0.04);
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.bible-icon-button:hover,
.bible-font-controls button:hover {
  border-color: #b9c9c0;
  background: #f2f7f4;
  color: var(--bible-green);
}

.bible-account-presence {
  display: inline-flex;
  min-width: 42px;
  max-width: 178px;
  height: 42px;
  flex: 0 1 auto;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  border: 1px solid #d7deda;
  border-radius: 21px;
  background: #fff;
  color: #465049;
  padding: 0 12px 0 10px;
  font-size: 0.72rem;
  font-weight: 760;
  text-decoration: none;
  white-space: nowrap;
}

.bible-account-presence:hover,
.bible-account-presence:focus-visible {
  border-color: #a9c9b6;
  color: var(--bible-green);
}

.bible-account-presence-icon {
  position: relative;
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  place-items: center;
}

.bible-account-presence-icon svg {
  width: 17px;
  height: 17px;
}

.bible-account-presence-dot {
  position: absolute;
  right: -2px;
  bottom: -1px;
  display: block;
  width: 7px;
  height: 7px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  background: #a9b1ac;
}

.bible-account-presence[data-state="online"] {
  border-color: #b8dfc8;
  background: #edf9f1;
  color: #126b4c;
}

.bible-account-presence[data-state="online"] .bible-account-presence-dot {
  background: #20a45f;
  box-shadow: 0 0 0 3px rgba(32, 164, 95, 0.12);
}

.bible-highlight-library-button {
  position: relative;
  display: grid;
  width: 46px;
  height: 42px;
  flex: 0 0 46px;
  place-items: center;
  border: 1px solid #d7deda;
  border-radius: 21px;
  background: #fff;
  color: #465049;
}

.bible-highlight-library-button[hidden] {
  display: none;
}

.bible-highlight-library-button:hover,
.bible-highlight-library-button:focus-visible {
  border-color: var(--bible-blue);
  outline: 3px solid rgba(40, 110, 181, 0.13);
}

.bible-highlight-stack {
  position: relative;
  display: block;
  width: 25px;
  height: 18px;
}

.bible-highlight-stack i {
  position: absolute;
  top: 3px;
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(16, 43, 73, 0.2);
}

.bible-highlight-stack i:nth-child(1) {
  left: 0;
  background: var(--bible-highlight-yellow);
}

.bible-highlight-stack i:nth-child(2) {
  left: 7px;
  background: var(--bible-highlight-blue);
}

.bible-highlight-stack i:nth-child(3) {
  left: 14px;
  background: var(--bible-highlight-pink);
}

.bible-highlight-library-button strong {
  position: absolute;
  top: -5px;
  right: -5px;
  display: grid;
  min-width: 19px;
  height: 19px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 10px;
  background: #69736d;
  color: #fff;
  padding: 0 4px;
  font-size: 0.68rem;
  line-height: 1;
}

.bible-highlight-library-button.has-highlights strong {
  background: var(--bible-blue);
}

.bible-font-controls button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.bible-search-form {
  display: flex;
  min-width: 42px;
  align-items: center;
  gap: 7px;
}

.bible-search-field {
  width: 0;
  overflow: hidden;
  opacity: 0;
  transition: width 180ms ease, opacity 140ms ease;
}

.bible-search-form[data-expanded="true"] .bible-search-field {
  width: min(220px, 20vw);
  opacity: 1;
}

.bible-search-field input {
  width: 100%;
  height: 42px;
  border: 1px solid #d7deda;
  border-radius: 12px;
  background: #fff;
  color: var(--bible-ink);
  padding: 0 12px;
  font-size: 0.96rem;
}

.bible-search-field input::placeholder {
  color: #8b938e;
}

.bible-version-switcher {
  position: relative;
  display: block;
  min-width: 92px;
}

.bible-version-switcher.is-coached select {
  border-color: #111713;
  box-shadow: 0 0 0 3px rgba(18, 107, 76, 0.2), 0 8px 20px rgba(17, 23, 19, 0.12);
}

.bible-version-coach {
  position: absolute;
  z-index: 4;
  top: calc(100% + 9px);
  left: 50%;
  width: max-content;
  max-width: 180px;
  transform: translateX(-50%);
  border: 1px solid rgba(17, 23, 19, 0.16);
  border-radius: 8px;
  background: #f7e8b7;
  color: #111713;
  padding: 7px 10px;
  box-shadow: 0 8px 24px rgba(17, 23, 19, 0.14);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  pointer-events: none;
  animation: bible-version-coach-in 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.bible-version-coach::before {
  position: absolute;
  top: -5px;
  left: 50%;
  width: 9px;
  height: 9px;
  transform: translateX(-50%) rotate(45deg);
  border-top: 1px solid rgba(17, 23, 19, 0.16);
  border-left: 1px solid rgba(17, 23, 19, 0.16);
  background: #f7e8b7;
  content: "";
}

@keyframes bible-version-coach-in {
  from { opacity: 0; transform: translate(-50%, -5px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.bible-version-switcher select {
  width: 100%;
  height: 42px;
  border: 1px solid #cfe0f2;
  border-radius: 12px;
  background: #fff;
  color: var(--bible-blue);
  padding: 0 30px 0 11px;
  font-size: 0.82rem;
  font-weight: 800;
}

.bible-version-switcher select:hover,
.bible-version-switcher select:focus-visible {
  border-color: #8eb5dc;
  outline: 3px solid rgba(40, 110, 181, 0.12);
}

.bible-reading-feature-pending .bible-reading-switch {
  border-color: #c8ceca;
  background: #eef1ef;
  color: #4f5b54;
  box-shadow: inset 0 2px 5px rgba(14, 31, 22, 0.12);
}

.bible-reading-feature-pending .bible-switch-knob {
  border-color: #c3cac5;
  background: #fff;
}

.bible-select-control {
  display: block;
  min-width: 116px;
}

.bible-select-control select {
  width: 100%;
  height: 42px;
  border: 1px solid #d7deda;
  border-radius: 12px;
  background: #fff;
  color: var(--bible-ink);
  padding: 0 34px 0 12px;
  font-size: 0.94rem;
  font-weight: 650;
}

.bible-chapter-select {
  min-width: 84px;
}

.bible-audio-button[data-playing="true"] {
  border-color: #a8c9b7;
  background: #e9f4ed;
  color: var(--bible-green);
}

.bible-toolbar-spacer {
  min-width: 8px;
  flex: 1 1 auto;
}

.bible-font-controls {
  display: flex;
  gap: 4px;
}

.bible-font-controls button {
  width: 38px;
  height: 38px;
  flex-basis: 38px;
  border-radius: 10px;
}

/* Reading surface */
.bible-js:not(.bible-ready) .bible-reading-surface {
  visibility: hidden;
}

.bible-reader-main {
  width: min(1460px, calc(100% - 20px));
  margin: 0 auto;
  padding: 18px 0 64px;
}

.bible-reader-breadcrumbs {
  margin: 0 18px 16px;
}

.bible-page {
  position: relative;
  min-height: 70vh;
  border: 1px solid var(--bible-soft-line);
  border-radius: 6px;
  background: var(--bible-paper);
  padding: clamp(30px, 4.2vw, 64px);
  box-shadow: 0 16px 54px rgba(45, 45, 38, 0.07);
}

.bible-page::after {
  position: absolute;
  top: 38px;
  bottom: 38px;
  left: 50%;
  width: 10px;
  transform: translateX(-50%);
  background: #ebe7dd;
  content: "";
}

.bible-chapter-heading {
  margin-bottom: 30px;
}

.bible-chapter-heading > p:first-child {
  margin: 0 0 8px;
  color: var(--bible-blue);
  font-size: 0.72rem;
  font-weight: 750;
}

.bible-chapter-heading h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 500;
  line-height: 1.08;
}

.bible-chapter-context {
  column-span: all;
  margin-top: 34px;
  border-top: 1px solid var(--bible-soft-line);
  padding-top: 18px;
}

.bible-chapter-context p {
  max-width: 760px;
  margin: 0;
  color: var(--bible-muted);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.6;
}

.bible-verses {
  column-count: 2;
  column-gap: clamp(56px, 6vw, 92px);
}

.bible-verse {
  position: relative;
  break-inside: avoid;
  margin: 0 0 1.15em;
  border-radius: 4px;
  color: #111813;
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--bible-reading-size);
  line-height: 1.9;
  scroll-margin-top: calc(var(--bible-toolbar-height) + 28px);
  transition: background-color 160ms ease, box-shadow 160ms ease;
}

.bible-verse:hover,
.bible-verse:focus-visible {
  background: rgba(47, 120, 196, 0.055);
  box-shadow: 0 0 0 5px rgba(47, 120, 196, 0.055);
}

.bible-verse[data-selected="true"] {
  background: rgba(40, 110, 181, 0.07);
  box-shadow:
    inset 0 -3px var(--bible-blue),
    0 0 0 5px rgba(40, 110, 181, 0.07);
}

.bible-verse.is-highlighted[data-highlight-color="yellow"] {
  background: var(--bible-highlight-yellow);
}

.bible-verse.is-highlighted[data-highlight-color="green"] {
  background: var(--bible-highlight-green);
}

.bible-verse.is-highlighted[data-highlight-color="blue"] {
  background: var(--bible-highlight-blue);
}

.bible-verse.is-highlighted[data-highlight-color="pink"] {
  background: var(--bible-highlight-pink);
}

.bible-verse.is-highlighted[data-selected="true"] {
  box-shadow:
    inset 0 -4px var(--bible-blue),
    0 0 0 2px rgba(40, 110, 181, 0.2);
}

.bible-verse.is-navigation-target:not(.is-highlighted) {
  background: #fff1b9;
  box-shadow: 0 0 0 5px #fff1b9;
}

.bible-verse.is-highlighted.is-navigation-target {
  box-shadow:
    0 0 0 3px #fff1b9,
    0 0 0 7px rgba(174, 123, 18, 0.18);
}

.bible-verse-number {
  display: inline-block;
  min-width: 1.5em;
  color: #8a603f;
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  font-size: 0.62em;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  vertical-align: 0.38em;
}

.bible-verse-number:hover {
  color: var(--bible-blue);
  text-decoration: underline;
}

.bible-verse-favorite-marker {
  display: inline-grid;
  width: 26px;
  height: 26px;
  margin-left: 7px;
  place-items: center;
  transform: translateY(0.2em);
  border: 0;
  border-radius: 50%;
  background: #eaf4fb;
  color: #27668f;
  vertical-align: baseline;
}

.bible-verse-favorite-marker[hidden] {
  display: none;
}

.bible-verse-favorite-marker svg {
  width: 15px;
  height: 15px;
  fill: rgba(39, 102, 143, 0.1);
}

.bible-verse-favorite-marker:hover,
.bible-verse-favorite-marker:focus-visible {
  background: #d8ebf7;
  color: #174b70;
}

.bible-chapter-navigation {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 12px;
  margin: 18px 0;
}

.bible-chapter-navigation > a {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--bible-line);
  border-radius: 6px;
  background: var(--bible-paper);
  padding: 10px 16px;
  text-decoration: none;
}

.bible-chapter-navigation > a:hover {
  border-color: #b8c8bf;
  color: var(--bible-green);
}

.bible-chapter-navigation small {
  display: block;
  color: var(--bible-muted);
  font-size: 0.68rem;
  font-weight: 500;
}

.bible-chapter-navigation strong {
  display: block;
  margin-top: 3px;
  font-size: 0.82rem;
}

.bible-chapter-next {
  justify-content: flex-end;
  text-align: right;
}

.bible-all-chapters {
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.bible-reading-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 30px;
  border-top: 1px solid var(--bible-line);
  border-bottom: 1px solid var(--bible-line);
  margin-top: 44px;
  padding: 40px 20px;
}

html[data-reading-2026="off"] .bible-reading-note {
  border-color: #cfd4d0;
  background: rgba(255, 255, 255, 0.4);
}

.bible-reading-note h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  font-weight: 500;
}

.bible-reading-note div > p:last-child {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--bible-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.bible-reading-note > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bible-green);
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
}

.bible-reader-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 20px 0;
}

.bible-reader-footer > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bible-reader-footer img {
  border-radius: 7px;
}

.bible-reader-footer p {
  display: grid;
  gap: 3px;
  margin: 0;
}

.bible-reader-footer strong {
  font-size: 0.94rem;
}

.bible-reader-footer span {
  color: var(--bible-muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.bible-reader-footer nav {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.bible-reader-footer nav a,
.bible-software-actions a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--bible-line);
  border-radius: 6px;
  padding: 0 13px;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.bible-public-domain-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  margin-top: 42px;
  border: 1px solid #ded6c8;
  border-radius: 8px;
  background: #f6f0e4;
  padding: clamp(28px, 5vw, 52px);
}

.bible-public-domain-copy h2 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.8vw, 3.25rem);
  font-weight: 500;
  line-height: 1.08;
}

.bible-public-domain-copy > p:not(.bible-kicker) {
  max-width: 760px;
  margin: 18px 0 0;
  color: #4f5953;
  font-size: 1.02rem;
  line-height: 1.7;
}

.bible-public-domain-source a {
  color: var(--bible-green-dark);
  font-weight: 700;
}

.bible-download-options {
  display: grid;
  gap: 10px;
}

.bible-download-options > a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 70px;
  border: 1px solid #cbc1b1;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.72);
  padding: 12px 16px;
  text-decoration: none;
  transition: border-color 150ms ease, background-color 150ms ease, transform 150ms ease;
}

.bible-download-options > a:hover {
  border-color: var(--bible-green);
  background: #fff;
  transform: translateY(-1px);
}

.bible-download-options > a > svg {
  color: var(--bible-green);
  font-size: 1.35rem;
}

.bible-download-options span {
  display: grid;
  gap: 3px;
}

.bible-download-options strong {
  font-size: 0.98rem;
}

.bible-download-options small {
  color: var(--bible-muted);
  font-size: 0.84rem;
}

.bible-account-link {
  color: #4b5750;
}

.bible-download-link {
  border-color: var(--bible-green-dark) !important;
  background: var(--bible-green);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 8px 20px rgba(18, 107, 76, 0.18);
  transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.bible-download-link:hover {
  background: var(--bible-green-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 12px 26px rgba(18, 107, 76, 0.24);
}

/* Dialogs and verse tools */
.bible-dialog {
  width: min(460px, calc(100% - 28px));
  max-height: min(720px, calc(100vh - 32px));
  overflow: auto;
  border: 1px solid #ded8cf;
  border-radius: 8px;
  background: #fff;
  color: var(--bible-ink);
  padding: 20px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.bible-dialog::backdrop {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
}

.bible-dialog-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.bible-dialog-heading h2 {
  margin: 0;
  font-size: 1.45rem;
}

.bible-dialog-heading p:not(.bible-kicker) {
  margin: 8px 0 0;
  color: #5f665e;
  font-size: 0.96rem;
  line-height: 1.65;
}

.bible-dialog-close {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #4d554f;
}

.bible-dialog-close:hover {
  background: #eef1ee;
}

.bible-reading-examples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.bible-reading-examples > div {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid #e3ded6;
  border-radius: 6px;
  background: #f8f7f4;
  padding: 11px 7px;
  font-size: 0.72rem;
}

.bible-reading-examples span {
  min-width: 0;
  overflow: hidden;
  color: #7b7166;
  text-overflow: ellipsis;
}

.bible-reading-examples svg {
  flex: 0 0 auto;
  color: #a79c90;
  font-size: 0.72rem;
}

.bible-reading-examples strong {
  min-width: 0;
  overflow: hidden;
  color: #294438;
  text-overflow: ellipsis;
}

.bible-dialog-audio {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  color: #3d5549;
  font-size: 0.82rem;
  font-weight: 650;
}

.bible-dialog-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 22px;
}

.bible-danger-button {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  background: var(--bible-danger);
  color: #fff;
  padding: 0 16px;
  font-size: 0.84rem;
  font-weight: 750;
}

.bible-danger-button:hover {
  background: #951d27;
}

.bible-search-dialog {
  width: min(1080px, calc(100% - 32px));
  height: min(780px, calc(100dvh - 40px));
  max-height: calc(100dvh - 40px);
  overflow: hidden;
  padding: 0;
}

.bible-search-dialog:not([data-has-results="true"]) {
  height: fit-content;
}

.bible-search-dialog:not([data-has-results="true"]) .bible-search-status,
.bible-search-dialog:not([data-has-results="true"]) .bible-search-results {
  display: none;
}

html.is-search-open,
html.is-search-open body {
  overflow: hidden;
  overscroll-behavior: none;
}

.bible-search-dialog .bible-dialog-heading {
  padding: 28px 30px 18px;
}

.bible-search-dialog .bible-dialog-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 500;
}

.bible-search-dialog-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 0 30px 22px;
}

.bible-dialog-search-field {
  position: relative;
  min-width: 0;
}

.bible-dialog-search-field label {
  display: flex;
  min-width: 0;
  align-items: center;
}

.bible-dialog-search-field label > svg {
  position: absolute;
  left: 16px;
  z-index: 1;
  color: #6a756e;
  font-size: 1.05rem;
  pointer-events: none;
}

.bible-search-dialog-form input {
  width: 100%;
  height: 52px;
  border: 1px solid #cbd5cf;
  border-radius: 7px;
  background: #f9faf8;
  color: var(--bible-ink);
  padding: 0 56px 0 46px;
  font-size: 1.08rem;
}

.bible-search-dialog-form input:focus {
  border-color: #8db39f;
  background: #fff;
}

.bible-search-dialog-form .bible-voice-search-button {
  position: absolute;
  top: 7px;
  right: 7px;
  display: grid;
  width: 38px;
  min-width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--bible-green-dark);
  padding: 0;
}

.bible-search-dialog-form .bible-voice-search-button[hidden] {
  display: none;
}

.bible-search-dialog-form .bible-voice-search-button:hover {
  background: #e8f2ed;
}

.bible-search-dialog-form .bible-voice-search-button.is-listening {
  background: #a6262f;
  color: #fff;
  box-shadow: 0 0 0 5px rgba(166, 38, 47, 0.14);
}

.bible-voice-status {
  grid-column: 1 / -1;
  color: var(--bible-muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.bible-voice-status:empty {
  display: none;
}

.bible-search-dialog-form button {
  min-width: 100px;
  border: 1px solid var(--bible-green-dark);
  border-radius: 7px;
  background: var(--bible-green);
  color: #fff;
  padding: 0 18px;
  font-size: 0.96rem;
  font-weight: 750;
}

.bible-search-status {
  min-height: 44px;
  border-top: 1px solid var(--bible-soft-line);
  border-bottom: 1px solid var(--bible-soft-line);
  background: #f4f5f1;
  color: var(--bible-muted);
  padding: 13px 30px;
  font-size: 0.94rem;
  font-weight: 650;
}

.bible-search-results {
  height: calc(100% - 194px);
  margin: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0 30px 24px;
  list-style: none;
  scrollbar-gutter: stable;
}

.bible-search-results li + li {
  border-top: 1px solid var(--bible-soft-line);
}

.bible-search-results a {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 22px;
  gap: 22px;
  align-items: start;
  padding: 19px 4px;
  text-decoration: none;
  transition: background-color 140ms ease, color 140ms ease;
}

.bible-search-results a:hover {
  background: #f7faf8;
  color: var(--bible-blue);
}

.bible-search-results strong {
  font-size: 1rem;
  line-height: 1.5;
}

.bible-search-results span {
  color: var(--bible-muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1.65;
}

/* Software remains secondary to the public Bible. */
.bible-software-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
  border-top: 1px solid var(--bible-line);
  padding: 88px 0 18px;
}

.bible-software-copy h2 {
  max-width: 560px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  font-weight: 500;
  line-height: 1;
}

.bible-software-copy > p:not(.bible-kicker) {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--bible-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.bible-software-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.bible-software-actions a {
  min-height: 48px;
  padding: 0 17px;
}

.bible-software-gallery {
  min-width: 0;
}

.bible-software-slides {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid #d7ddd8;
  border-radius: 8px;
  background: #111713;
  box-shadow: 0 26px 70px rgba(35, 45, 38, 0.16);
}

.bible-software-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.012);
  transition: opacity 650ms ease, transform 5.2s ease;
  pointer-events: none;
}

.bible-software-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.bible-software-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bible-software-slide figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  background: rgba(8, 13, 10, 0.78);
  color: #fff;
  padding: 7px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.bible-software-gallery-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 16px;
}

.bible-software-gallery-nav button {
  width: 26px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: #cbd0cc;
  padding: 0;
  transition: width 180ms ease, background-color 180ms ease;
}

.bible-software-gallery-nav button[aria-pressed="true"] {
  width: 48px;
  background: var(--bible-green);
}

.bible-highlights-dialog,
.bible-contribution-dialog {
  width: min(680px, calc(100% - 28px));
  padding: 28px;
}

.bible-highlight-filters {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 22px 0 12px;
}

.bible-highlight-filters button {
  min-height: 38px;
  border: 1px solid #d7deda;
  border-radius: 19px;
  background: #fff;
  padding: 0 14px;
  font-size: 0.88rem;
  font-weight: 750;
}

.bible-highlight-filters button:not([data-highlight-filter="all"]) {
  display: grid;
  width: 38px;
  padding: 0;
  place-items: center;
}

.bible-highlight-filters button i {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.bible-highlight-filters [data-highlight-filter="yellow"] i,
.bible-verse-tool-colors [data-highlight-color="yellow"] {
  background: var(--bible-highlight-yellow);
}

.bible-highlight-filters [data-highlight-filter="green"] i,
.bible-verse-tool-colors [data-highlight-color="green"] {
  background: var(--bible-highlight-green);
}

.bible-highlight-filters [data-highlight-filter="blue"] i,
.bible-verse-tool-colors [data-highlight-color="blue"] {
  background: var(--bible-highlight-blue);
}

.bible-highlight-filters [data-highlight-filter="pink"] i,
.bible-verse-tool-colors [data-highlight-color="pink"] {
  background: var(--bible-highlight-pink);
}

.bible-highlight-filters button.is-active {
  border-color: var(--bible-blue);
  box-shadow: 0 0 0 3px rgba(40, 110, 181, 0.12);
}

.bible-highlight-status {
  margin: 0;
  border-block: 1px solid var(--bible-soft-line);
  color: var(--bible-muted);
  padding: 12px 0;
  font-size: 0.92rem;
  font-weight: 650;
}

.bible-highlight-list {
  max-height: 440px;
  overflow-y: auto;
}

.bible-highlight-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid var(--bible-soft-line);
}

.bible-highlight-item > a {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px 4px;
  text-decoration: none;
}

.bible-highlight-item > a > i {
  width: 12px;
  height: 28px;
  border-radius: 6px;
  background: var(--bible-highlight-yellow);
}

.bible-highlight-item[data-color="green"] > a > i {
  background: var(--bible-highlight-green);
}

.bible-highlight-item[data-color="blue"] > a > i {
  background: var(--bible-highlight-blue);
}

.bible-highlight-item[data-color="pink"] > a > i {
  background: var(--bible-highlight-pink);
}

.bible-highlight-item span {
  display: grid;
  gap: 5px;
}

.bible-highlight-item strong {
  font-size: 0.95rem;
}

.bible-highlight-item small {
  overflow: hidden;
  color: var(--bible-muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bible-highlight-item > button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--bible-danger);
}

.bible-contribution-reference {
  margin: 18px 0 8px;
  color: var(--bible-blue);
  font-size: 0.95rem;
  font-weight: 800;
}

.bible-contribution-current {
  border-left: 4px solid var(--bible-green);
  background: #f5f7f3;
  padding: 14px 16px;
}

.bible-contribution-current span,
.bible-form-field > span {
  display: block;
  margin-bottom: 7px;
  color: var(--bible-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.bible-contribution-current p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.55;
}

.bible-form-field {
  display: block;
  margin-top: 16px;
}

.bible-form-field textarea {
  width: 100%;
  min-height: 112px;
  resize: vertical;
  border: 1px solid #cbd5cf;
  border-radius: 7px;
  background: #fff;
  color: var(--bible-ink);
  padding: 12px;
  font: 1rem/1.5 Georgia, "Times New Roman", serif;
}

.bible-form-field textarea:focus {
  border-color: var(--bible-green);
  outline: 3px solid rgba(18, 107, 76, 0.12);
}

.bible-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
}

.bible-contribution-policy,
.bible-form-status {
  color: var(--bible-muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.bible-form-status {
  min-height: 22px;
  font-weight: 700;
}

.bible-form-status.is-error {
  color: var(--bible-danger);
}

.bible-form-status.is-success {
  color: var(--bible-green);
}

.bible-submit-contribution {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--bible-green-dark);
  border-radius: 6px;
  background: var(--bible-green);
  color: #fff;
  font-weight: 800;
}

.bible-submit-contribution:disabled {
  cursor: wait;
  opacity: 0.6;
}

.bible-verse-tools {
  position: fixed;
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #d2d9d4;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
  box-shadow: 0 10px 28px rgba(26, 39, 31, 0.18);
}

.bible-verse-tools[hidden] {
  display: none;
}

.bible-verse-tools button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #465049;
}

.bible-verse-tools button:hover {
  background: #edf4ef;
  color: var(--bible-green);
}

.bible-verse-tool-colors {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-right: 2px;
  border-right: 1px solid var(--bible-soft-line);
  padding-right: 7px;
}

.bible-verse-tool-colors button {
  width: 28px;
  height: 28px;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #c9c6bc;
}

.bible-verse-tool-colors button:hover,
.bible-verse-tool-colors button:focus-visible,
.bible-verse-tool-colors button.is-active {
  outline: 3px solid rgba(40, 110, 181, 0.2);
}

.bible-verse-tool-colors .bible-remove-highlight {
  position: relative;
  background: #fff;
}

.bible-remove-highlight::after {
  position: absolute;
  top: 12px;
  left: 5px;
  width: 15px;
  height: 2px;
  background: #6c746f;
  content: "";
  transform: rotate(-45deg);
}

.bible-verse-tools .bible-clear-selection {
  border-radius: 50%;
  background: var(--bible-danger);
  color: #fff;
}

.bible-verse-tools .bible-clear-selection:hover {
  background: #951d27;
  color: #fff;
}

.bible-verse-tools .bible-contribute-action {
  background: #286eb5;
  color: #fff;
}

.bible-verse-tools .bible-contribute-action:hover,
.bible-verse-tools .bible-contribute-action:focus-visible {
  background: #1f568f;
  color: #fff;
}

.bible-verse-tools .bible-contribute-action:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.bible-verse-tools .bible-favorite-action {
  background: #eaf4fb;
  color: #27668f;
}

.bible-verse-tools .bible-favorite-action:hover,
.bible-verse-tools .bible-favorite-action:focus-visible,
.bible-verse-tools .bible-favorite-action.is-active {
  background: #27668f;
  color: #fff;
}

.bible-verse-tools .bible-favorite-action svg {
  fill: currentColor;
  fill-opacity: 0.12;
}

.bible-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1500;
  max-width: min(340px, calc(100% - 36px));
  transform: translateY(18px);
  border-radius: 6px;
  background: #17201b;
  color: #fff;
  padding: 11px 14px;
  font-size: 0.78rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.bible-toast[data-visible="true"] {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1040px) {
  .bible-reader-brand > span:last-child {
    display: none;
  }

  .bible-search-form[data-expanded="true"] .bible-search-field {
    width: 150px;
  }

  .bible-page::after {
    display: none;
  }

  .bible-verses {
    column-count: 1;
  }

  .bible-page {
    max-width: 760px;
    margin: 0 auto;
  }

  .bible-reading-note,
  .bible-reader-footer,
  .bible-chapter-navigation {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 820px) {
  :root {
    --bible-toolbar-height: 116px;
  }

  .bible-reader-toolbar {
    display: grid;
    grid-template-columns: auto auto minmax(72px, 1fr) auto auto;
    gap: 7px;
  }

  .bible-reader-brand {
    grid-column: 1;
    grid-row: 1;
  }

  .bible-search-form {
    grid-column: 2;
    grid-row: 1;
  }

  .bible-version-switcher {
    width: 100%;
    min-width: 72px;
    grid-column: 3;
    grid-row: 1;
  }

  .bible-version-switcher select {
    padding-right: 22px;
    padding-left: 8px;
    font-size: 0.74rem;
  }

  .bible-highlight-library-button {
    grid-column: 4;
    grid-row: 1;
  }

  .bible-account-presence {
    width: 38px;
    min-width: 38px;
    grid-column: 4;
    grid-row: 1;
    justify-content: center;
    padding: 0;
  }

  .bible-account-presence [data-account-presence-label] {
    display: none;
  }

  .bible-search-form[data-expanded="true"] .bible-search-field {
    width: 100%;
  }

  .bible-select-control {
    grid-row: 2;
  }

  .bible-select-control:not(.bible-chapter-select) {
    grid-column: 1 / 4;
  }

  .bible-chapter-select {
    grid-column: 4 / 6;
  }

  .bible-audio-button,
  .bible-toolbar-spacer,
  .bible-font-controls {
    display: none;
  }

  .bible-reader-toolbar > .bible-reading-switch {
    grid-column: 5;
    grid-row: 1;
    justify-self: end;
  }

  .bible-reader-toolbar:has(.bible-highlight-library-button:not([hidden])) .bible-account-presence {
    display: none;
  }

  .bible-home-intro,
  .bible-version-header,
  .bible-book-header,
  .bible-method,
  .bible-software-section {
    min-height: 0;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 32px;
    padding: 52px 0;
  }

  .bible-front-story,
  .bible-front-reading,
  .bible-front-contribution {
    min-height: 0;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 44px;
    padding: 72px 0;
  }

  .bible-front-reading {
    grid-template-columns: 1fr;
  }

  .bible-front-main > .bible-software-section {
    width: min(100% - 40px, 1280px);
  }

  .bible-reading-feature {
    border-top: 1px solid var(--bible-line);
    border-left: 0;
    padding-top: 30px;
    padding-left: 0;
  }

  .bible-book-index {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bible-section-heading {
    position: static;
  }

  .bible-method .bible-kicker,
  .bible-method dl {
    grid-column: auto;
  }

  .bible-method dl {
    grid-template-columns: 1fr;
  }

  .bible-method dl > div + div {
    border-top: 1px solid var(--bible-line);
    border-left: 0;
  }

  .bible-chapter-index > div {
    grid-template-columns: repeat(8, minmax(40px, 1fr));
  }
}

@media (max-width: 620px) {
  :root {
    --bible-reading-size: 1.25rem;
  }

  .bible-site-header {
    width: calc(100% - 16px);
    min-height: 76px;
    gap: 6px;
  }

  .bible-site-brand {
    display: none;
  }

  .bible-site-header nav {
    width: 100%;
    flex: 1;
    justify-content: stretch;
    gap: 2px;
    padding: 4px;
    border-radius: 20px;
  }

  .bible-site-header nav .bible-nav-link,
  .bible-site-header nav .bible-language-switch {
    min-width: 0;
    min-height: 58px;
    justify-content: center;
    padding: 4px;
    border-radius: 16px;
  }

  .bible-site-header nav .bible-nav-link {
    flex: 1 1 0;
    flex-direction: column;
    gap: 2px;
  }

  .bible-site-header nav .bible-nav-label {
    display: block;
    max-width: 100%;
    overflow: hidden;
    color: currentColor;
    font-size: 0.62rem;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .bible-language-full {
    display: none;
  }

  .bible-nav-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .bible-language-short {
    display: inline;
    font-size: 0.7rem;
    font-weight: 820;
  }

  .bible-site-header nav .bible-language-switch {
    flex: 0 0 48px;
    gap: 0;
    padding: 4px;
  }

  .bible-front-hero {
    min-height: calc(100svh - 104px);
    max-height: none;
  }

  .bible-front-hero > img {
    object-position: 58% center;
  }

  .bible-front-hero-wash {
    background: rgba(248, 244, 232, 0.58);
  }

  .bible-front-hero-copy {
    width: calc(100% - 28px);
    padding: 46px 0;
  }

  .bible-front-hero h1 {
    font-size: clamp(3.1rem, 15vw, 4.5rem);
  }

  .bible-front-hero-copy > p:not(.bible-kicker) {
    max-width: 540px;
    font-size: 1.04rem;
  }

  .bible-front-actions,
  .bible-home-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .bible-front-actions .bible-library-cta,
  .bible-home-actions .bible-primary-link {
    width: 100%;
  }

  .bible-front-proof {
    gap: 9px 16px;
  }

  .bible-front-story,
  .bible-front-reading,
  .bible-front-contribution,
  .bible-front-main > .bible-software-section {
    width: calc(100% - 28px);
  }

  .bible-front-story h2,
  .bible-front-reading h2,
  .bible-front-contribution h2 {
    font-size: clamp(2.2rem, 11vw, 3.3rem);
  }

  .bible-front-story,
  .bible-front-reading,
  .bible-front-contribution {
    gap: 36px;
    padding: 60px 0;
  }

  .bible-word-ledger > div {
    min-height: 58px;
  }

  .bible-front-contribution {
    padding-top: 64px;
  }

  .bible-site-footer {
    display: grid;
    width: calc(100% - 28px);
    padding: 28px 0;
  }

  .bible-site-footer nav {
    justify-content: space-between;
  }

  .bible-site-footer p span {
    display: none;
  }

  .bible-home-main,
  .bible-version-main,
  .bible-book-main {
    width: min(100% - 28px, 1180px);
    padding-top: 24px;
  }

  .bible-home-copy h1,
  .bible-version-header h1,
  .bible-book-header h1 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  .bible-book-links {
    grid-template-columns: 1fr;
  }

  .bible-book-links a:nth-child(odd) {
    border-right: 0;
  }

  .bible-book-links a {
    grid-template-columns: 28px minmax(0, 1fr) 16px;
  }

  .bible-book-links small {
    display: none;
  }

  .bible-chapter-index > div {
    grid-template-columns: repeat(5, minmax(40px, 1fr));
  }

  .bible-reader-main {
    width: 100%;
    padding-top: 10px;
  }

  .bible-reader-breadcrumbs {
    margin-right: 14px;
    margin-left: 14px;
  }

  .bible-page {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    padding: 30px 20px;
    box-shadow: none;
  }

  .bible-chapter-heading {
    margin-bottom: 24px;
  }

  .bible-verse {
    line-height: 1.82;
  }

  .bible-chapter-navigation {
    grid-template-columns: 1fr 1fr;
    margin: 12px;
  }

  .bible-all-chapters {
    display: none !important;
  }

  .bible-reading-note {
    grid-template-columns: 1fr;
    margin: 32px 14px 0;
    padding: 32px 6px;
  }

  .bible-reader-footer {
    display: grid;
    align-items: flex-start;
    margin: 0 14px;
    padding: 28px 0 0;
  }

  .bible-reader-footer span {
    display: none;
  }

  .bible-reader-footer nav {
    width: 100%;
    justify-content: space-between;
  }

  .bible-reading-examples {
    grid-template-columns: 1fr;
  }

  .bible-search-dialog {
    top: max(12px, env(safe-area-inset-top));
    right: 0;
    bottom: auto;
    left: 0;
    width: calc(100% - 24px);
    height: min(620px, calc(100dvh - 28px));
    max-height: calc(100dvh - 28px);
    margin: 0 auto;
    border-radius: 14px;
    box-shadow: 0 24px 70px rgba(17, 28, 21, 0.34);
  }

  .bible-search-dialog:not([data-has-results="true"]) {
    height: fit-content;
  }

  .bible-search-dialog.is-entry {
    height: fit-content;
  }

  .bible-search-dialog .bible-dialog-heading {
    align-items: center;
    padding: 14px 18px 10px;
  }

  .bible-search-dialog .bible-dialog-heading h2 {
    font-family: inherit;
    font-size: 1.15rem;
    font-weight: 800;
  }

  .bible-search-dialog-form {
    grid-template-columns: 1fr;
    padding: 0 18px 16px;
  }

  .bible-search-dialog-form button {
    min-height: 46px;
  }

  .bible-search-status {
    padding: 11px 18px;
  }

  .bible-search-results {
    height: calc(100% - 242px);
    padding: 0 18px 18px;
  }

  .bible-search-results a {
    grid-template-columns: 1fr 18px;
    gap: 8px 12px;
  }

  .bible-search-results strong {
    grid-column: 1;
  }

  .bible-search-results span {
    grid-column: 1;
    font-size: 1rem;
  }

  .bible-search-results a svg {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .bible-highlights-dialog,
  .bible-contribution-dialog {
    width: calc(100% - 16px);
    max-height: calc(100dvh - 16px);
    padding: 20px 18px;
  }

  .bible-highlight-filters {
    flex-wrap: wrap;
  }

  .bible-verse-tools {
    right: 8px !important;
    bottom: max(8px, env(safe-area-inset-bottom)) !important;
    left: 8px !important;
    top: auto !important;
    width: auto;
    min-height: 58px;
    justify-content: center;
    overflow-x: auto;
    border-radius: 8px;
    padding: 8px;
  }

  .bible-verse-tools > button {
    flex: 0 0 38px;
  }

  .bible-verse-tool-colors {
    flex: 0 0 auto;
  }

  .bible-software-section {
    padding-top: 64px;
  }

  .bible-software-actions {
    display: grid;
  }

  .bible-software-actions a {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 820px) {
  .bible-info-main,
  .bible-policy-main,
  .bible-software-main {
    width: calc(100% - 28px);
    padding-top: 48px;
  }

  .bible-info-grid,
  .bible-software-hero,
  .bible-public-domain-note {
    grid-template-columns: 1fr;
  }

  .bible-info-grid article {
    padding: 28px 0;
  }

  .bible-info-grid article + article {
    border-top: 1px solid var(--bible-line);
    border-left: 0;
    padding-left: 0;
  }

  .bible-software-hero {
    gap: 36px;
  }

  .bible-public-domain-note {
    margin-right: 14px;
    margin-left: 14px;
    padding: 28px 20px;
  }

  .bible-info-main .bible-public-domain-note {
    margin-right: 0;
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  .bible-site-header {
    width: calc(100% - 16px);
    min-height: 80px;
  }

  .bible-site-header nav {
    gap: 2px;
    overflow: visible;
  }

  .bible-site-header nav a {
    font-size: 0.86rem;
    white-space: nowrap;
  }

  .bible-info-hero h1,
  .bible-policy-main h1,
  .bible-software-hero h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .bible-info-hero > p:last-child,
  .bible-policy-main > header > p:last-child,
  .bible-software-hero > div > p:not(.bible-kicker, .bible-download-safety) {
    font-size: 1.05rem;
  }

  .bible-search-results span {
    font-size: 1.08rem;
  }
}

/* Product page: image-led, touch-first presentation of the real SHINE workspace. */
.shine-product-main {
  overflow: hidden;
  background: #fffdf9;
}

.shine-product-hero {
  display: grid;
  min-height: calc(100svh - 72px);
  align-content: space-between;
  overflow: hidden;
  background: #f4f1e9;
  padding: clamp(54px, 7vw, 88px) 0 0;
}

.shine-product-hero-copy {
  z-index: 1;
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

.shine-product-hero h1 {
  margin: 4px 0 0;
  color: #17221d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(3.5rem, 8vw, 7.2rem);
  font-weight: 780;
  letter-spacing: 0;
  line-height: 0.94;
}

.shine-product-hero-copy > p:not(.bible-kicker, .bible-download-safety) {
  max-width: 760px;
  margin: 24px auto 0;
  color: #4d5952;
  font-size: clamp(1.12rem, 2vw, 1.38rem);
  line-height: 1.6;
}

.shine-product-hero .bible-software-actions {
  justify-content: center;
}

.shine-product-hero .bible-download-safety {
  justify-content: center;
}

.shine-download-heading {
  display: grid;
  gap: 5px;
  margin-top: 34px;
}

.shine-download-heading strong {
  color: var(--bible-ink);
  font-size: 1.18rem;
}

.shine-download-heading span {
  color: var(--bible-muted);
  font-size: 0.96rem;
}

.shine-platform-downloads {
  display: grid;
  max-width: 900px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 16px auto 0;
}

.shine-platform-download {
  display: grid;
  min-width: 0;
  min-height: 92px;
  grid-template-columns: 48px minmax(0, 1fr) 38px;
  align-items: center;
  gap: 15px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 15px 18px;
  text-align: left;
  text-decoration: none;
}

.shine-platform-download.is-ready {
  background: var(--bible-green);
  color: #fff;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.18), 0 12px 28px rgba(18, 107, 76, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.shine-platform-download.is-ready:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.18), 0 16px 34px rgba(18, 107, 76, 0.25);
}

.shine-platform-download:focus-visible {
  outline: 3px solid rgba(23, 59, 97, 0.32);
  outline-offset: 4px;
}

.shine-platform-download.is-mac {
  background: #173b61;
  color: #fff;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.22), 0 12px 28px rgba(23, 59, 97, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.shine-platform-download.is-mac:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.22), 0 16px 34px rgba(23, 59, 97, 0.26);
}

.shine-platform-download.is-pending {
  border-color: #cbd2cd;
  background: rgba(255, 255, 255, 0.72);
  color: #56615b;
  cursor: not-allowed;
  opacity: 1;
}

.shine-platform-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.shine-platform-icon svg,
.shine-platform-action svg {
  display: block;
  stroke: currentColor;
}

.shine-platform-download.is-pending .shine-platform-icon {
  background: #e8ece9;
  color: var(--bible-green);
}

.shine-system-status.is-mac {
  color: #173b61;
}

.shine-platform-icon svg {
  width: 24px;
  height: 24px;
}

.shine-platform-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.shine-platform-copy small {
  color: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  opacity: 0.78;
  text-transform: uppercase;
}

.shine-platform-copy strong {
  font-size: 1.05rem;
  line-height: 1.3;
}

.shine-platform-copy span {
  color: inherit;
  font-size: 0.84rem;
  opacity: 0.78;
}

.shine-platform-action {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.shine-platform-action svg {
  width: 20px;
  height: 20px;
}

.shine-product-hero-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 18px;
}

.shine-product-hero-links .bible-account-link,
.shine-product-hero-links .bible-download-safety {
  margin: 0;
}

.shine-product-hero-visual {
  width: min(1380px, 94vw);
  margin: clamp(34px, 5vw, 66px) auto -2px;
}

.shine-product-hero-visual img {
  display: block;
  width: 100%;
  filter: drop-shadow(0 34px 44px rgba(21, 31, 25, 0.14));
}

.shine-product-main .shine-system-support {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding-block: clamp(68px, 8vw, 108px);
}

.shine-product-capabilities {
  display: grid;
  width: min(1280px, calc(100% - 40px));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  border-bottom: 1px solid var(--bible-line);
}

.shine-product-capabilities > div {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 14px;
  padding: 42px 28px;
}

.shine-product-capabilities > div + div {
  border-left: 1px solid var(--bible-line);
}

.shine-product-capabilities svg {
  flex: 0 0 23px;
  color: var(--bible-green);
}

.shine-product-capabilities span {
  display: grid;
  gap: 5px;
  color: var(--bible-muted);
  font-size: 0.91rem;
  line-height: 1.45;
}

.shine-product-capabilities strong {
  color: var(--bible-ink);
  font-size: 1rem;
}

.shine-purpose {
  display: grid;
  grid-template-columns: minmax(340px, .72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(44px, 7vw, 104px);
  width: min(1380px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(92px, 11vw, 164px) 0;
}

.shine-purpose-copy h2,
.shine-feature-story h2,
.shine-system-depth h2 {
  margin: 0;
  color: var(--bible-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  font-weight: 500;
  line-height: 1;
}

.shine-purpose-copy > p:not(.bible-kicker),
.shine-feature-story article p:not(.bible-kicker),
.shine-system-depth header > p:not(.bible-kicker) {
  color: var(--bible-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.shine-purpose-copy .bible-download-link { margin-top: 16px; }
.shine-purpose figure,.shine-system-depth figure { margin: 0; overflow: hidden; background: #08120e; }
.shine-purpose img,.shine-system-depth figure img { display: block; width: 100%; height: auto; }
.shine-purpose figcaption { padding: 12px 16px; color: #cdd8d2; background: #112a21; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }

.shine-feature-story { width: min(1380px, calc(100% - 40px)); margin: 0 auto; border-block: 1px solid var(--bible-line); }
.shine-feature-story article { display: grid; grid-template-columns:minmax(320px,.65fr) minmax(0,1.35fr); align-items:center; gap:clamp(44px,7vw,112px); padding:clamp(74px,9vw,130px) 0; }
.shine-feature-story article+article { border-top:1px solid var(--bible-line); }
.shine-feature-story article:nth-child(2) { grid-template-columns:minmax(0,1.3fr) minmax(320px,.7fr); }
.shine-feature-story img { display:block; width:100%; border:1px solid #d9dfda; box-shadow:0 24px 70px rgba(23,40,31,.1); }
.shine-feature-story .bible-kicker { margin-bottom:14px; }
.shine-feature-story h2 { font-size:clamp(2.15rem,4vw,4.3rem); }
.shine-feature-story article p:not(.bible-kicker) { margin:20px 0 0; }

.shine-system-depth { width:min(1280px,calc(100% - 40px)); margin:0 auto; padding:clamp(90px,11vw,160px) 0; }
.shine-system-depth>header { max-width:920px; margin-bottom:54px; }
.shine-system-depth-list { display:grid; grid-template-columns:repeat(3,1fr); border-block:1px solid var(--bible-line); }
.shine-system-depth-list>div { display:grid; grid-template-columns:34px 1fr; gap:6px 14px; padding:28px 24px; }
.shine-system-depth-list>div+div { border-left:1px solid var(--bible-line); }
.shine-system-depth-list>div:nth-child(4) { border-left:0; }
.shine-system-depth-list>div:nth-child(n+4) { border-top:1px solid var(--bible-line); }
.shine-system-depth-list svg { grid-row:1/3; width:23px; color:var(--bible-green); }
.shine-system-depth-list strong { color:var(--bible-ink); }
.shine-system-depth-list span { color:var(--bible-muted); font-size:.88rem; line-height:1.55; }
.shine-system-depth figure { margin-top:54px; }

.shine-product-showcase {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(84px, 10vw, 144px) 0;
}

.shine-product-showcase > header {
  max-width: 850px;
  margin-bottom: 46px;
}

.shine-product-showcase h2,
.shine-product-final h2 {
  margin: 0;
  color: var(--bible-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

.shine-product-showcase > header > p:not(.bible-kicker) {
  margin: 22px 0 0;
  color: var(--bible-muted);
  font-size: 1.12rem;
}

.shine-product-gallery {
  min-width: 0;
  outline: none;
  touch-action: pan-y;
}

.shine-product-gallery:focus-visible {
  outline: 3px solid rgba(18, 107, 76, 0.25);
  outline-offset: 8px;
}

.shine-product-gallery-nav {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.shine-product-gallery-nav button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  border: 1px solid #ccd4ce;
  border-radius: 6px;
  background: #fff;
  color: #4c5851;
  padding: 0 18px;
  font-size: 0.94rem;
  font-weight: 750;
}

.shine-product-gallery-nav button[aria-pressed="true"] {
  border-color: var(--bible-green);
  background: var(--bible-green);
  color: #fff;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.16);
}

.shine-product-gallery-nav svg {
  width: 19px;
  height: 19px;
}

.shine-product-slides {
  position: relative;
  aspect-ratio: 16 / 10;
  height: auto;
  overflow: hidden;
  background: #eef1ed;
}

.shine-product-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  background: #eef1ed;
  margin: 0;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 420ms ease, transform 420ms ease;
  pointer-events: none;
}

.shine-product-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.shine-product-slide img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  user-select: none;
}

.shine-product-slide figcaption {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(300px, 1.2fr);
  gap: 36px;
  align-items: start;
  background: #112a21;
  color: #fff;
  padding: 26px 30px 30px;
}

.shine-product-slide figcaption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  font-weight: 500;
  line-height: 1.15;
}

.shine-product-slide figcaption span {
  color: #cbd5ce;
  font-size: 1rem;
  line-height: 1.65;
}

.shine-product-progress {
  display: flex;
  justify-content: center;
  gap: 7px;
  padding-top: 16px;
}

.shine-product-progress i {
  width: 28px;
  height: 4px;
  background: #cbd0cc;
  transition: width 180ms ease, background-color 180ms ease;
}

.shine-product-progress i.is-active {
  width: 54px;
  background: var(--bible-green);
}

.shine-product-final {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(360px, 0.6fr);
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  background: #0d1511;
  color: #fff;
  padding: clamp(60px, 8vw, 118px) max(20px, calc((100vw - 1380px) / 2));
}

.shine-product-final > img {
  display: block;
  width: 100%;
}

.shine-product-final h2 {
  color: #fff;
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.shine-product-final > div > p:not(.bible-kicker) {
  margin: 24px 0 0;
  color: #c8d2cc;
  font-size: 1.08rem;
  line-height: 1.7;
}

.shine-product-final .bible-account-link {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

@media (max-width: 820px) {
  .shine-product-hero {
    min-height: calc(100svh - 68px);
    padding-top: 50px;
  }

  .shine-product-hero h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .shine-product-hero-copy > p:not(.bible-kicker, .bible-download-safety) {
    font-size: 1.08rem;
    line-height: 1.55;
  }

  .shine-product-hero .bible-software-actions {
    display: grid;
  }

  .shine-purpose,.shine-feature-story article,.shine-feature-story article:nth-child(2) { grid-template-columns:1fr; }
  .shine-purpose { padding-block:74px; }
  .shine-feature-story article:nth-child(2) img { order:2; }
  .shine-system-depth-list { grid-template-columns:1fr; }
  .shine-system-depth-list>div+div,.shine-system-depth-list>div:nth-child(4) { border-left:0; border-top:1px solid var(--bible-line); }

  .shine-platform-downloads {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .shine-platform-download {
    min-height: 90px;
    padding-inline: 15px;
  }

  .shine-product-hero-links {
    flex-direction: column;
    gap: 12px;
  }

  .shine-product-hero-visual {
    width: 106vw;
    margin-left: -3vw;
  }

  .shine-product-main .shine-system-support {
    width: calc(100% - 28px);
  }

  .shine-product-capabilities {
    width: calc(100% - 28px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shine-product-capabilities > div {
    padding: 28px 12px;
  }

  .shine-product-capabilities > div:nth-child(3) {
    border-left: 0;
  }

  .shine-product-capabilities > div:nth-child(n + 3) {
    border-top: 1px solid var(--bible-line);
  }

  .shine-product-showcase {
    width: calc(100% - 28px);
    padding: 76px 0 88px;
  }

  .shine-product-showcase > header {
    margin-bottom: 32px;
  }

  .shine-product-showcase h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .shine-product-gallery-nav {
    gap: 6px;
    margin-right: 0;
    overflow: visible;
    padding-right: 0;
  }

  .shine-product-gallery-nav button {
    min-width: 0;
    flex: 1 1 0;
    min-height: 50px;
    justify-content: center;
    padding: 0 7px;
    font-size: 0.8rem;
    text-align: center;
  }

  .shine-product-slides {
    aspect-ratio: auto;
    height: min(132vw, 590px);
  }

  .shine-product-slide img {
    background: #f2f4f1;
  }

  .shine-product-slide figcaption {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px;
  }

  .shine-product-slide figcaption strong {
    font-size: 1.35rem;
  }

  .shine-product-slide figcaption span {
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .shine-product-final {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 64px 14px 72px;
  }

  .shine-product-final > div {
    padding: 0 6px;
  }

  .shine-product-final h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }
}
