﻿:root {
  --acid: #b7f500;
  --acid-dark: #82b000;
  --black: #070908;
  --charcoal: #111413;
  --concrete: #2c302e;
  --stone: #e7e5dd;
  --white: #f7f8f4;
  --muted: #a7aaa5;
  --line: rgba(255, 255, 255, 0.16);
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #090b0a;
  background-size: 120px 120px;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--acid);
  color: var(--black);
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 8, 0.82);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--acid);
  color: var(--black);
  font-size: 15px;
  font-weight: 900;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 72% 100%, 0 100%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.nav a {
  padding: 10px 11px;
  border-bottom: 2px solid transparent;
  color: #d7dad5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.active {
  border-bottom-color: var(--acid);
  color: var(--acid);
}

.menu-button {
  width: 46px;
  height: 42px;
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 22px;
}

.hero {
  min-height: clamp(430px, 31vw, 610px);
  position: relative;
  display: flex;
  align-items: flex-end;
  margin-top: 74px;
  padding: 42px 0;
  isolation: isolate;
  background: #090b0a url("assets/brand/site-header.png") center top / cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(7, 9, 8, 0.52), transparent 23%, rgba(7, 9, 8, 0.76) 100%),
    linear-gradient(90deg, rgba(7, 9, 8, 0.42), transparent 34%, rgba(7, 9, 8, 0.54) 100%);
  pointer-events: none;
}

.hero-content {
  width: min(430px, 38vw);
  margin-left: auto;
  padding: 24px 26px 26px;
  border-left: 4px solid var(--acid);
  background: rgba(7, 9, 8, 0.72);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(8px);
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 5.8vw, 82px);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.hero .lead {
  margin: 0;
  color: #e2e4df;
  font-size: clamp(18px, 1.6vw, 23px);
}

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

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(7, 9, 8, 0.52);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  border-color: var(--acid);
  color: var(--acid);
  transform: translateY(-2px);
}

.btn.primary {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--black);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background: #d0ff35;
  color: var(--black);
}

.page-hero {
  min-height: 54svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 150px 0 58px;
  background: #101211 url("assets/brand/neutral-background.png") center / cover no-repeat;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(7, 9, 8, 0.94), rgba(7, 9, 8, 0.35) 62%, rgba(7, 9, 8, 0.1));
}

.page-hero .wrap {
  position: relative;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(54px, 9vw, 118px);
  line-height: 0.86;
  letter-spacing: -0.065em;
}

.page-hero h1::after {
  width: 120px;
  height: 10px;
  display: block;
  margin-top: 24px;
  background: var(--acid);
  content: "";
  clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
}

.page-hero .lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: #d3d6d1;
  font-size: clamp(17px, 2vw, 23px);
}

.section {
  position: relative;
  padding: clamp(64px, 8vw, 112px) 0;
  border-top: 1px solid var(--line);
  background: rgba(12, 15, 13, 0.92);
}

.section.concrete {
  background:
    linear-gradient(90deg, rgba(7, 9, 8, 0.9), rgba(7, 9, 8, 0.48)),
    url("assets/brand/neutral-background.png") center / cover fixed;
}

.section.light {
  background: var(--stone);
  color: #111;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 42px;
}

.section h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.section-head p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
}

.light .section-head p {
  color: #4b4f4b;
}

.player {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(183, 245, 0, 0.48);
  background: linear-gradient(100deg, rgba(183, 245, 0, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.player img {
  width: 118px;
  height: 118px;
  object-fit: cover;
}

.player strong {
  display: block;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
}

.player span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.topic {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  text-decoration: none;
  transition: 180ms ease;
}

.topic:hover,
.topic:focus-visible {
  background: var(--acid);
  color: var(--black);
  transform: translateY(-4px);
}

.topic h3 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1;
}

.topic p {
  margin: 0;
  color: var(--muted);
}

.topic:hover p,
.topic:focus-visible p {
  color: #273000;
}

.arrow {
  margin-top: 20px;
  font-size: 26px;
  font-weight: 900;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 50px;
  align-items: center;
}

.feature-media {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--charcoal);
}

.feature-media img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
}

.feature-copy h2 {
  margin-bottom: 22px;
}

.feature-copy p {
  color: var(--muted);
  font-size: 18px;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 18px;
}

.release {
  position: relative;
  padding: 12px;
  border: 1px solid var(--line);
  background: #111412;
}

.release::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 62px;
  height: 5px;
  background: var(--acid);
  content: "";
}

.release-cover-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 2px;
  outline: 0;
  isolation: isolate;
}

.release-cover-wrap::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 9, 8, 0.18), rgba(7, 9, 8, 0.88)),
    radial-gradient(circle at 20% 0%, rgba(183, 245, 0, 0.22), transparent 42%);
  opacity: 0;
  transition: opacity 0.34s ease;
  content: "";
}

.release-cover-wrap img {
  width: 100%;
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
  transition: transform 0.42s ease, filter 0.42s ease;
}

.release-cover-data {
  position: absolute;
  inset: auto 14px 14px;
  z-index: 2;
  display: grid;
  gap: 7px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.34s ease, transform 0.34s ease;
  pointer-events: none;
}

.release-cover-data span {
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  border: 1px solid rgba(183, 245, 0, 0.28);
  border-radius: 999px;
  background: rgba(7, 9, 8, 0.72);
  color: #f6f7f2;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  line-height: 1.2;
  backdrop-filter: blur(10px);
}

.release-cover-wrap:hover::after,
.release-cover-wrap:focus-visible::after {
  opacity: 1;
}

.release-cover-wrap:hover img,
.release-cover-wrap:focus-visible img {
  transform: scale(1.055);
  filter: saturate(1.05) contrast(1.08) brightness(0.82);
}

.release-cover-wrap:hover .release-cover-data,
.release-cover-wrap:focus-visible .release-cover-data {
  opacity: 1;
  transform: translateY(0);
}

.release h3 {
  margin: 6px 0;
  font-size: 25px;
}

.release p {
  min-height: 48px;
  margin: 0 0 14px;
  color: var(--muted);
}

.meta {
  color: var(--acid);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link {
  color: var(--white);
  font-weight: 800;
  text-decoration-color: var(--acid);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

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

.list-row {
  display: grid;
  grid-template-columns: 82px minmax(170px, 0.7fr) 1.3fr auto;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.list-row h3 {
  margin: 0;
  font-size: 23px;
}

.list-row p {
  margin: 0;
  color: var(--muted);
}

.cover-mini {
  width: 70px;
  height: 70px;
  object-fit: cover;
}

.empty-note {
  margin-bottom: 32px;
  padding: 18px 20px;
  border-left: 6px solid var(--acid);
  background: rgba(183, 245, 0, 0.07);
  color: #d6dad2;
}

.art-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.art-frame {
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(145deg, transparent 0 48%, rgba(183, 245, 0, 0.88) 49% 57%, transparent 58%),
    linear-gradient(35deg, #101211, #3a3e3b);
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
}

.art-frame:nth-child(2) {
  background:
    linear-gradient(32deg, transparent 0 54%, rgba(183, 245, 0, 0.82) 55% 66%, transparent 67%),
    #232725;
}

.art-frame:nth-child(3) {
  background:
    linear-gradient(155deg, transparent 0 48%, rgba(183, 245, 0, 0.78) 49% 57%, transparent 58%),
    #151816;
}

.art-frame:nth-child(4) {
  background:
    linear-gradient(65deg, transparent 0 58%, rgba(183, 245, 0, 0.76) 59% 67%, transparent 68%),
    #303431;
}

.book-grid,
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.book,
.video {
  border: 1px solid var(--line);
  background: #111412;
}

.book {
  padding: 18px;
}

.book-cover {
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 20px;
  padding: 22px;
  background:
    linear-gradient(145deg, transparent 0 58%, var(--acid) 59% 68%, transparent 69%),
    #202421;
  font-size: 28px;
  font-weight: 900;
}

.book-cover span {
  align-self: flex-start;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.book-cover strong {
  align-self: stretch;
  color: var(--white);
  font-size: clamp(28px, 4vw, 54px);
  line-height: 0.92;
}

.bible-cover {
  background:
    linear-gradient(30deg, rgba(183, 245, 0, 0.8) 0 7px, transparent 8px 42%),
    linear-gradient(145deg, transparent 0 52%, rgba(183, 245, 0, 0.72) 53% 62%, transparent 63%),
    #171b18;
}

.feature-media .bible-cover {
  min-height: 420px;
  margin-bottom: 0;
}

.project-warning {
  display: block;
  margin: 0 0 16px;
  color: rgba(246, 247, 242, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.book:nth-child(2) .book-cover {
  background:
    linear-gradient(35deg, transparent 0 54%, var(--acid) 55% 63%, transparent 64%),
    #090b0a;
}

.book:nth-child(3) .book-cover {
  background:
    linear-gradient(125deg, transparent 0 50%, var(--acid) 51% 58%, transparent 59%),
    #343835;
}

.book h2 {
  font-size: 31px;
}

.book p,
.video p {
  color: var(--muted);
}

.video {
  color: var(--white);
  text-decoration: none;
}

.video-thumb {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, transparent 0 52%, rgba(183, 245, 0, 0.72) 53% 62%, transparent 63%),
    url("assets/brand/neutral-background.png") center / cover;
  color: var(--acid);
  font-size: 48px;
}

.video-copy {
  padding: 18px;
}

.video h3 {
  margin: 0 0 7px;
  font-size: 23px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-block {
  padding: 28px;
  border-top: 5px solid var(--acid);
  background: rgba(255, 255, 255, 0.035);
}

.contact-block h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 52px);
}

.contact-block p {
  color: var(--muted);
}

.legal-layout {
  max-width: 920px;
}

.legal-block {
  padding: clamp(24px, 4vw, 42px);
  border-top: 5px solid var(--acid);
  background: rgba(255, 255, 255, 0.035);
}

.legal-status {
  margin: 0 0 26px;
  padding: 14px 16px;
  border: 1px solid rgba(183, 245, 0, 0.28);
  color: var(--white);
  background: rgba(183, 245, 0, 0.08);
}

.legal-block h2 {
  margin: 30px 0 10px;
  font-size: clamp(24px, 3vw, 36px);
}

.legal-block h2:first-of-type {
  margin-top: 0;
}

.legal-block p {
  color: var(--muted);
}

.profile-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: 44px;
  align-items: center;
}

.profile-panel img {
  width: 100%;
  border: 1px solid var(--line);
}


.visual-hero::before {
  background-image:
    linear-gradient(90deg, rgba(7, 9, 8, 0.7), rgba(7, 9, 8, 0.35)),
    var(--visual-hero-image, url("assets/art/creativity.jpg"));
}

.visual-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.visual-tab {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  text-decoration: none;
}

.visual-tab:hover,
.visual-tab:focus-visible,
.visual-tab.active {
  border-color: var(--acid);
}

.visual-tab strong {
  font-size: 20px;
  line-height: 1.05;
}

.visual-tab span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.visual-card {
  min-width: 0;
}

.visual-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #0d0f0e;
  cursor: default;
}

.visual-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.visual-series-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 8px;
  background: var(--acid);
  color: var(--black);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.visual-hover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 18px;
  background: linear-gradient(180deg, transparent 18%, rgba(7, 9, 8, 0.9) 100%);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.visual-hover span {
  width: fit-content;
  max-width: 100%;
  padding: 6px 8px;
  background: rgba(183, 245, 0, 0.94);
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.visual-image-wrap:hover img,
.visual-image-wrap:focus-visible img {
  transform: scale(1.04);
  filter: brightness(0.72);
}

.visual-image-wrap:hover .visual-hover,
.visual-image-wrap:focus-visible .visual-hover {
  opacity: 1;
  transform: translateY(0);
}

.visual-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.visual-card h3 {
  margin: 7px 0 0;
  font-size: 20px;
  line-height: 1.08;
}

.art-lightbox-open {
  overflow: hidden;
}

.art-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 74px 28px 34px;
  background: rgba(4, 5, 5, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.art-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.art-lightbox-figure {
  width: min(1180px, 100%);
  height: min(82svh, 900px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  gap: 14px;
  margin: 0;
}

.art-lightbox-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #070908;
}

.art-lightbox-caption {
  color: rgba(247, 248, 244, 0.88);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
}

.art-lightbox-steps {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 2px 6px;
  scrollbar-width: thin;
}

.art-lightbox-steps[hidden] {
  display: none;
}

.art-lightbox-step {
  min-width: 124px;
  max-width: 190px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(247, 248, 244, 0.08);
  color: rgba(247, 248, 244, 0.9);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.art-lightbox-step span,
.art-lightbox-step strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.art-lightbox-step span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.art-lightbox-step strong {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.1;
}

.art-lightbox-step:hover,
.art-lightbox-step:focus-visible,
.art-lightbox-step.active {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--black);
}

.art-lightbox-close {
  position: fixed;
  top: 22px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: var(--acid);
  color: var(--black);
  cursor: pointer;
  font: inherit;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.art-lightbox-close:hover,
.art-lightbox-close:focus-visible {
  background: #d0ff35;
}

.visual-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: center;
  gap: 36px;
}

.visual-split h2 {
  margin: 0 0 16px;
  color: inherit;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 0.95;
}

.visual-split p {
  max-width: 760px;
  margin: 0;
  color: inherit;
  opacity: 0.78;
  font-size: 18px;
}

.visual-status {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-left: 4px solid var(--acid);
  background: rgba(255, 255, 255, 0.06);
}

.light .visual-status {
  background: rgba(7, 9, 8, 0.07);
}

.visual-status strong {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-status span {
  color: var(--muted);
}


.bio-section {
  max-width: 1120px;
}

.bio-copy {
  max-width: 920px;
  padding: 32px;
  border-left: 5px solid var(--acid);
  background: rgba(255, 255, 255, 0.055);
}

.bio-copy p {
  margin: 0;
  color: rgba(246, 247, 242, 0.88);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.72;
}

.bio-copy p + p {
  margin-top: 18px;
}


.text-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.text-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  background: #111412;
}

.text-card summary {
  list-style: none;
  cursor: pointer;
}

.text-card summary::-webkit-details-marker {
  display: none;
}

.text-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-card-top span {
  color: var(--acid);
}

.text-card-top small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-card h3 {
  margin: 16px 0 10px;
  font-size: 24px;
  line-height: 1.08;
}

.text-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.58;
}

.text-open-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  color: var(--acid);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-card[open] .text-open-label {
  background: var(--acid);
  color: var(--black);
}

.text-card[open] .text-open-label::before {
  content: "Text ausblenden";
}

.text-card[open] .text-open-label {
  font-size: 0;
}

.text-card[open] .text-open-label::before {
  font-size: 12px;
}

.text-full-body {
  max-height: min(72svh, 760px);
  margin: 20px 0 0;
  padding: 20px;
  overflow: auto;
  border-left: 4px solid var(--acid);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(246, 247, 242, 0.9);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.72;
  white-space: pre-wrap;
}

.text-reading-active .text-grid {
  grid-template-columns: 1fr;
}

.text-reading-active .text-card:not(.text-reading-open) {
  display: none;
}

.text-card.text-reading-open {
  border-color: rgba(183, 245, 0, 0.34);
  background: rgba(8, 10, 8, 0.94);
}

.text-card.text-reading-open summary {
  max-width: 1040px;
  margin: 0 auto;
}

.text-card.text-reading-open .text-full-body {
  max-width: 1040px;
  max-height: none;
  margin: 24px auto 0;
  padding: clamp(24px, 4vw, 52px);
  overflow: visible;
  background: rgba(255, 255, 255, 0.035);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.82;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  background: #050605;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer strong {
  color: var(--white);
}

.footer a {
  color: inherit;
  text-decoration: none;
}

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

@media (max-width: 1040px) {


  .visual-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .text-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 12px 24px 22px;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 9, 8, 0.98);
  }

  .nav.open {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .nav a {
    padding: 13px 8px;
  }

  .menu-button {
    display: grid;
    place-items: center;
  }

  .hero-content {
    width: min(470px, 48vw);
  }

  .topic-grid,
  .release-grid,
  .book-grid,
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .art-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.release-topline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.focus-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 9px;
  background: rgba(183, 245, 0, 0.16);
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.release-facts {
  display: grid;
  gap: 8px;
  margin: 16px 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.release-facts div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 10px;
}

.release-facts dt {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.release-facts dd {
  margin: 0;
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.chip-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(183, 245, 0, 0.34);
  border-radius: 999px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s ease;
}

.chip-link:hover,
.chip-link:focus-visible {
  background: var(--lime);
  color: #10130c;
}

.lyrics-list {
  display: grid;
  gap: 16px;
}

.lyric-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.lyric-card summary {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 16px;
  padding: 16px;
  cursor: pointer;
  list-style: none;
}

.lyric-card summary::-webkit-details-marker {
  display: none;
}

.lyric-card summary strong {
  display: block;
  margin-bottom: 4px;
  font-size: 20px;
}

.lyric-card summary small {
  color: var(--muted);
  line-height: 1.45;
}

.lyric-body {
  padding: 0 18px 20px 104px;
}

.lyric-body pre {
  white-space: pre-wrap;
  margin: 0;
  color: rgba(246, 247, 242, 0.9);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

.credit-line {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 760px) {


  .visual-tabs,
  .visual-grid,
  .visual-split {
    grid-template-columns: 1fr;
  }

  .visual-image-wrap {
    aspect-ratio: 4 / 3;
  }

  .art-lightbox {
    padding: 66px 14px 24px;
  }

  .art-lightbox-figure {
    height: min(78svh, 720px);
  }

  .art-lightbox-close {
    top: 14px;
    right: 14px;
  }

  .wrap {
    width: min(var(--max), calc(100% - 28px));
  }

  .header-inner {
    min-height: 68px;
  }

  .nav {
    top: 68px;
  }

  .hero {
    min-height: 880px;
    align-items: flex-end;
    padding: 92px 0 32px;
    background-image: url("assets/brand/hero-mobile.png");
    background-position: center top;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(7, 9, 8, 0.98), rgba(7, 9, 8, 0.08) 50%, transparent 72%);
  }

  .hero-content {
    width: 100%;
    margin: 0;
    padding: 22px 0 0 20px;
  }

  .hero h1 {
    font-size: 45px;
  }

  .page-hero {
    min-height: 480px;
    padding: 120px 0 42px;
  }

  .page-hero h1 {
    font-size: clamp(48px, 16vw, 78px);
  }

  .page-hero .lead {
    max-width: 330px;
    overflow-wrap: anywhere;
  }

  .section-head,
  .feature-split,
  .profile-panel,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .player {
    grid-template-columns: 82px 1fr;
    gap: 16px;
  }

  .player img {
    width: 82px;
    height: 82px;
  }

  .player .btn {
    grid-column: 1 / -1;
  }

  .release-grid,
  .book-grid,
  .video-grid,
  .text-grid {
    grid-template-columns: 1fr;
  }

  .list-row {
    grid-template-columns: 70px 1fr;
    align-items: start;
  }

  .list-row p,
  .list-row .btn {
    grid-column: 2;
  }

  .lyric-card summary {
    grid-template-columns: 58px 1fr;
    gap: 12px;
  }

  .lyric-card .cover-mini {
    width: 58px;
    height: 58px;
  }

  .lyric-body {
    padding: 0 16px 18px;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 16px;
  }

  .nav.open {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 760px;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .topic-grid,
  .art-grid {
    grid-template-columns: 1fr;
  }

  .topic {
    min-height: 180px;
  }
}

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


/* Nipsey book preview */
.featured-book img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
}

.book-hero {
  background-image:
    linear-gradient(90deg, rgba(7, 9, 8, 0.93), rgba(7, 9, 8, 0.38)),
    var(--book-hero-image);
  background-size: cover;
  background-position: center;
}

.chapter-grid,
.character-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.chapter-card,
.character-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.chapter-card summary,
.character-card summary {
  cursor: pointer;
  list-style: none;
}

.chapter-card summary::-webkit-details-marker,
.character-card summary::-webkit-details-marker {
  display: none;
}

.chapter-card summary {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 22px;
  position: relative;
  background:
    linear-gradient(0deg, rgba(7, 9, 8, 0.94), rgba(7, 9, 8, 0.35) 58%, rgba(7, 9, 8, 0.04)),
    var(--book-card-image);
  background-size: cover;
  background-position: center;
}

.chapter-kind {
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(183, 245, 0, 0.36);
  border-radius: 999px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.chapter-card h3,
.character-card strong {
  margin: 0;
  font-size: 24px;
}

.chapter-card p,
.character-card small {
  color: rgba(246, 247, 242, 0.8);
  line-height: 1.55;
}

.chapter-body,
.character-body {
  padding: 20px 22px 24px;
}

.character-body {
  display: none;
}

.chapter-body pre,
.character-body pre {
  margin: 0;
  white-space: pre-wrap;
  font-family: Arial, Helvetica, sans-serif;
  color: rgba(246, 247, 242, 0.9);
  line-height: 1.68;
}

.character-card summary {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
}

.character-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 16px;
  background: #10130c;
}

.character-card summary::after {
  content: "PDF";
  justify-self: end;
  align-self: start;
  padding: 5px 9px;
  border: 1px solid rgba(183, 245, 0, 0.34);
  border-radius: 999px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
}

#textversion.reading-active .chapter-grid {
  grid-template-columns: 1fr;
}

#textversion.reading-active .chapter-card:not(.reading-open) {
  display: none;
}

.chapter-card.reading-open {
  border-color: rgba(183, 245, 0, 0.34);
  background: rgba(8, 10, 8, 0.94);
}

.chapter-card.reading-open summary {
  min-height: clamp(260px, 44vh, 440px);
}

.chapter-card.reading-open .chapter-body {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.035);
}

.chapter-card.reading-open .chapter-body pre {
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.82;
}

.chapter-reading-back {
  display: none;
  margin: 0 auto 32px;
  padding: 12px 18px;
  border: 1px solid rgba(183, 245, 0, 0.4);
  border-radius: 999px;
  background: rgba(183, 245, 0, 0.1);
  color: var(--lime);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.chapter-card.reading-open .chapter-reading-back {
  display: block;
}

.document-modal-open {
  overflow: hidden;
}

.document-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  padding: clamp(10px, 2vw, 24px);
  background: rgba(0, 0, 0, 0.78);
}

.document-modal.open {
  display: grid;
  place-items: center;
}

.document-modal-panel {
  width: min(1180px, 100%);
  height: min(920px, 94vh);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  overflow: hidden;
  background: #10130c;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

.document-modal-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 44px;
  gap: 12px;
  align-items: center;
  padding: 12px 14px 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 12, 9, 0.96);
}

.document-modal-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.document-modal-link {
  color: var(--lime);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.document-modal-close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.document-modal-frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.subhead {
  margin-top: 48px;
}

.project-character-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.project-character-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.project-character-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: #10130c;
}

.project-character-card h3 {
  margin: 0;
  padding: 14px 16px 16px;
  font-size: 19px;
}

.comic-reader {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  gap: 16px;
  align-items: center;
}

.comic-frame {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: clamp(12px, 2.5vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(145deg, rgba(12, 14, 11, 0.96), rgba(24, 27, 21, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 80px rgba(0, 0, 0, 0.34);
  overflow: hidden;
  perspective: 1800px;
}

.comic-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f7f1e8;
}

.comic-frame > img {
  display: none;
}

.comic-book {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: min(100%, 1120px);
  min-height: min(72vh, 680px);
  aspect-ratio: 1.58 / 1;
  border-radius: 12px;
  background: #171912;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  transform-style: preserve-3d;
}

.comic-book::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 1px);
  z-index: 4;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.24), rgba(255, 255, 255, 0.16), rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.comic-book-page {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  border: 0;
  padding: clamp(8px, 1.4vw, 16px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.08), transparent 12%, transparent 88%, rgba(0, 0, 0, 0.08)),
    #f7f1e8;
  cursor: pointer;
  overflow: hidden;
}

.comic-book-page.left {
  border-radius: 12px 0 0 12px;
  box-shadow: inset -22px 0 30px rgba(0, 0, 0, 0.13);
}

.comic-book-page.right {
  border-radius: 0 12px 12px 0;
  box-shadow: inset 22px 0 30px rgba(0, 0, 0, 0.12);
}

.comic-book-page img {
  max-height: 100%;
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.comic-book-page.blank {
  background:
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.025), rgba(0, 0, 0, 0.025) 1px, transparent 1px, transparent 9px),
    #f7f1e8;
  cursor: default;
}

.comic-flip-layer {
  position: absolute;
  z-index: 3;
  inset: clamp(12px, 2.5vw, 28px);
  width: min(calc(100% - clamp(24px, 5vw, 56px)), 1120px);
  min-height: min(72vh, 680px);
  aspect-ratio: 1.58 / 1;
  margin: auto;
  pointer-events: none;
  transform-style: preserve-3d;
}

.comic-turning-page {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  transform-style: preserve-3d;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.28);
}

.comic-turning-page.forward {
  right: 0;
  transform-origin: left center;
  animation: comicTurnForward 760ms ease-in-out both;
}

.comic-turning-page.backward {
  left: 0;
  transform-origin: right center;
  animation: comicTurnBackward 760ms ease-in-out both;
}

.comic-turning-page .comic-book-page {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.comic-turning-page.forward .flip-front,
.comic-turning-page.backward .flip-front {
  transform: rotateY(0deg);
}

.comic-turning-page.forward .flip-back {
  transform: rotateY(180deg);
}

.comic-turning-page.backward .flip-back {
  transform: rotateY(-180deg);
}

@keyframes comicTurnForward {
  0% {
    transform: rotateY(0deg);
  }
  45% {
    box-shadow: -18px 18px 42px rgba(0, 0, 0, 0.34);
  }
  100% {
    transform: rotateY(-180deg);
  }
}

@keyframes comicTurnBackward {
  0% {
    transform: rotateY(0deg);
  }
  45% {
    box-shadow: 18px 18px 42px rgba(0, 0, 0, 0.34);
  }
  100% {
    transform: rotateY(180deg);
  }
}

.comic-nav {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(183, 245, 0, 0.34);
  border-radius: 50%;
  background: rgba(183, 245, 0, 0.08);
  color: var(--lime);
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

.comic-nav:disabled {
  opacity: 0.34;
  cursor: not-allowed;
}

.comic-status {
  grid-column: 2;
  color: var(--muted);
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .comic-turning-page.forward,
  .comic-turning-page.backward {
    animation-duration: 1ms;
  }
}

@media (max-width: 900px) {
  .chapter-grid,
  .character-grid,
  .project-character-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .chapter-grid,
  .character-grid,
  .comic-reader {
    grid-template-columns: 1fr;
  }

  .comic-prev {
    order: 2;
  }

  .comic-next {
    order: 3;
  }

  .comic-frame {
    min-height: auto;
    padding: 10px;
  }

  .comic-book,
  .comic-flip-layer {
    width: 100%;
    min-height: auto;
    aspect-ratio: 1.45 / 1;
  }

  .comic-book-page {
    padding: 6px;
  }

  .comic-status {
    grid-column: 1;
    order: 4;
  }
}

@media (max-width: 520px) {
  .chapter-grid,
  .character-grid,
  .project-character-grid {
    grid-template-columns: 1fr;
  }

  .character-card summary {
    grid-template-columns: 82px 1fr;
  }

  .character-card img {
    width: 82px;
    height: 82px;
  }

  .document-modal-bar {
    grid-template-columns: minmax(0, 1fr) 42px;
  }

  .document-modal-link {
    display: none;
  }

  .chapter-card.reading-open .chapter-body {
    padding: 22px 16px;
  }
}

/* Bibelanalyse downloads */
.bible-download-section .section-head {
  max-width: 820px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.download-card {
  display: flex;
  flex-direction: column;
}

.download-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.pdf-preview-wrap {
  margin-top: 28px;
}

.pdf-preview-wrap h3 {
  margin: 0 0 12px;
}

.pdf-preview {
  width: 100%;
  height: min(74vh, 760px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(0,0,0,.22);
}

.bible-online-reader {
  margin-top: 34px;
}

.bible-online-reader p {
  max-width: 820px;
  color: var(--muted);
}

.bible-book-reader .comic-frame {
  min-height: 680px;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.1), transparent 30%),
    linear-gradient(145deg, rgba(8, 9, 8, 0.96), rgba(20, 23, 18, 0.93));
}

.bible-book-reader .comic-book {
  aspect-ratio: 1.42 / 1;
  max-width: 1080px;
}

.bible-book-reader .comic-book-page {
  background: #fbf7ef;
}

.bible-book-reader .comic-book-page img {
  border-radius: 3px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
  .download-grid {
    grid-template-columns: 1fr;
  }

  .pdf-preview {
    height: 520px;
  }

  .bible-book-reader .comic-frame {
    min-height: auto;
  }
}

/* Bibelanalyse media */
.bible-media-section .section-head {
  max-width: 860px;
}

.media-group {
  margin-top: 34px;
}

.media-group h3 {
  margin: 0 0 16px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.document-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-card {
  overflow: hidden;
}

.media-card video,
.media-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  background: rgba(0, 0, 0, .28);
}

.media-card video {
  border: 1px solid rgba(255, 255, 255, .12);
}

.media-card audio {
  width: 100%;
  margin-top: 12px;
}

.media-card-body {
  margin-top: 14px;
}

.media-card h4 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.media-card p {
  margin-bottom: 14px;
}

.graphic-card img {
  object-fit: contain;
  background: rgba(255, 255, 255, .92);
}

@media (max-width: 980px) {
  .media-grid,
  .document-grid {
    grid-template-columns: 1fr;
  }
}
