/* ============================================================
   balaba-section.css
   Styles for the Meisterwerkstatt Balaba section:
   - .togetherWeCan sticky 3D container + wall ticker
   - .melting-text heading animation
   - .vkGrid-bmw / .vkRow-bmw Balaba media grid
   - particle simulator (canvas, HUD, showcase)
  Source: migrated from legacy prototype section
   ============================================================ */

  @font-face {
    font-family: "MadeOuterSans";
    src: url("../font/MADE Outer Sans Light PERSONAL USE.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: "MadeOuterSans";
    src: url("../font/MADE Outer Sans Regular PERSONAL USE.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }

/* Keep Balaba section metrics stable for ScrollTrigger pin math. */
.vkDivsNSvg-bmw {
  content-visibility: visible;
  contain-intrinsic-size: auto;
}

/* ── .togetherWeCan ─────────────────────────────────────── */
/*  Height is set dynamically by rot3Dmodel.js (460vh + vkDivsNSvg-bmw height).
    We must NOT use a fixed height here — JS owns that value.              */
.togetherWeCan {
  position: relative;
  width: 100%;
  z-index: 6;
  isolation: isolate;
}

.togetherWeCan #balabaContainer3D {
  z-index: 1;
  background: #000;
}

/* Canvas always fills its container */
.togetherWeCan .balaba-render-stage canvas,
.togetherWeCan .balaba-render-stage > canvas {
  position: relative;
  z-index: 2;
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* Roadmap section scrolls on top of the pinned canvas */
.togetherWeCan .vkDivsNSvg-bmw {
  position: relative;
  z-index: 4;
  transform: translateY(var(--vk-offset, 460vh));
}

/* Sections after togetherWeCan sit above the canvas */
.togetherWeCan + section,
.togetherWeCan ~ section {
  position: relative;
}

/* ── Wall ticker inside #balabaContainer3D ─────────────── */
#balabaContainer3D .balaba-wall {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

#balabaContainer3D .balaba-wall .balaba-row {
  display: flex;
  animation: 200s linear balaba-ticker-left infinite;
  will-change: transform;
}

#balabaContainer3D .balaba-wall .balaba-row:nth-child(even) {
  animation: 60s linear balaba-ticker-right infinite;
  justify-content: flex-end;
}

#balabaContainer3D .balaba-wall .balaba-row span {
   margin-right: 0.2em;
  font-family: sans-serif;
  color: transparent;
  font-size: 20vh;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
  -webkit-text-stroke-width: 4px;
  -webkit-text-stroke-color: #f5f5f5;
}

@keyframes balaba-ticker-left {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes balaba-ticker-right {
   0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(100%, 0, 0);
  }
}

body.page-hidden #balabaContainer3D .balaba-wall .balaba-row,
#balabaContainer3D.balaba-scene-offscreen .balaba-wall .balaba-row {
  animation-play-state: paused;
  will-change: auto;
}

#balabaContainer3D.balaba-scene-offscreen {
  visibility: hidden;
}

@media (max-width: 900px) {
  #balabaContainer3D .balaba-wall .balaba-row span {
    font-size: 14vh;
    -webkit-text-stroke-width: 3px;
  }
}

@media (max-width: 767px) {
  #balabaContainer3D .balaba-wall .balaba-row {
    animation: none !important;
    transform: none !important;
    will-change: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  #balabaContainer3D .balaba-wall .balaba-row {
    animation: none !important;
    transform: none !important;
  }

}

/* ── Balaba editorial shell ─────────────────────────────── */
.vkDivsNSvg-bmw {
  position: relative;
  width: 100%;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(186, 143, 68, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #020202 12%, #050505 42%, #030303 100%);
  color: #f2f0ea;
}

.roadmapCon-bmw {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 52px);
}



.vkGrid-bmw,
.balaba-media-layout,
.balaba-editorial-sequence {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2vw, 30px);
}

.vkRow-bmw,
.balaba-media-row {
  width: 100%;
  min-width: 0;
}

.balaba-media-row {
  display: grid;
  gap: clamp(14px, 1.6vw, 24px);
  align-items: stretch;
}

.balaba-media-row--feature-left {
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
}

.balaba-media-row--feature-right {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
}

.balaba-media-row--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.balaba-media-row--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.balaba-media-row--wide {
  grid-template-columns: minmax(0, 1fr);
}

.balaba-media-stack {
  min-width: 0;
  display: grid;
  gap: clamp(14px, 1.6vw, 24px);
  grid-auto-rows: minmax(0, 1fr);
}

.vkImg-bmw,
.vkTextCon-bmw {
  min-width: 0;
  min-height: 0;
  height: auto;
  box-sizing: border-box;
}

.balaba-media-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.48);
}

.balaba-media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 20%, transparent 70%, rgba(0, 0, 0, 0.24));
  pointer-events: none;
}

.balaba-media-card picture {
  display: block;
  width: 100%;
  height: 100%;
}

.balaba-media-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.balaba-media-card--hero,
.balaba-media-tall {
  min-height: clamp(460px, 72vh, 980px);
}

.balaba-media-card--portrait {
  min-height: clamp(280px, 31vw, 420px);
}

.balaba-media-wide {
  min-height: clamp(240px, 27vw, 380px);
}

.balaba-media-stack > .balaba-media-card {
  min-height: clamp(220px, 18vw, 320px);
}

@media (min-width: 1101px) {
  .balaba-editorial-sequence {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "balaba-left-top balaba-right-top"
      "balaba-left-bottom balaba-right-bottom"
      "balaba-bottom-left balaba-bottom-right"
      "balaba-showcase balaba-showcase";
    align-items: stretch;
  }

  .balaba-editorial-sequence > .balaba-media-row:nth-of-type(1) {
    grid-area: balaba-left-top;
  }

  .balaba-editorial-sequence > .balaba-media-row:nth-of-type(2) {
    grid-area: balaba-left-bottom;
  }

  .balaba-editorial-sequence > .balaba-media-row:nth-of-type(3) {
    grid-area: balaba-right-top;
  }

  .balaba-editorial-sequence > .balaba-media-row:nth-of-type(4) {
    grid-area: balaba-right-bottom;
  }

  .balaba-editorial-sequence > .balaba-media-row:nth-of-type(5) {
    grid-area: balaba-bottom-left;
  }

  .balaba-editorial-sequence > .balaba-media-row:nth-of-type(6) {
    grid-area: balaba-bottom-right;
  }

  .balaba-editorial-sequence > .balaba-showcase {
    grid-area: balaba-showcase;
  }
}

/* ── .melting-text heading ───────────────────────────────── */
.melting-text-container {
  position: relative;
  overflow: visible;
  padding: clamp(48px, 6vw, 96px) 0 clamp(12px, 2vw, 24px);
  text-align: center;
}

.balaba-logo-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;

  text-transform: uppercase;
  line-height: 1;
}

.balaba-logo-top {
  margin: 0;
  font-family: "MadeOuterSans", sans-serif;
  font-weight: 300;
  font-size: 121.5pt;
  line-height: 1;
  letter-spacing: 0.01em;
}

.balaba-logo-bottom {
  margin: 0;
  font-family: "MadeOuterSans", sans-serif;
  font-weight: 400;
  font-size: 182.25pt;
  line-height: 1;
  letter-spacing: 0.01em;
}

@media (max-width: 1280px) {

  .balaba-logo-top {
    font-size: clamp(41.5px, 7.5vw, 121.5pt);
  }

  .balaba-logo-bottom {
    font-size: clamp(64px, 10.5vw, 182.25pt);
  }
}

.balaba-kicker {
  margin: 0 0 14px;
  color: #c3a068;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.melting-text {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(44px, 6.8vw, 110px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  animation: balaba-melt 9s infinite ease-in-out;
  background: linear-gradient(135deg, #f7f1e0 0%, #a28347 48%, #f5f2ea 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  will-change: transform;
}

.melting-text--sub {
  margin-top: 14px;
  font-size: clamp(20px, 2.15vw, 34px);
  letter-spacing: 0.2em;
  font-weight: 700;
}

.melting-text::before,
.melting-text::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(247, 241, 224, 0.4) 0%, rgba(162, 131, 71, 0.3) 55%, rgba(245, 242, 234, 0.18) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  z-index: -1;
  transform: scaleY(1);
  opacity: 0.32;
  animation: balaba-drip 9s infinite ease-in-out;
}

.melting-text::after {
  filter: blur(18px);
  opacity: 0.16;
}

@keyframes balaba-melt {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, 8px, 0); }
}

@keyframes balaba-drip {
  0%, 100% { transform: scaleY(1); opacity: 0.28; }
  50% { transform: scaleY(1.08); opacity: 0.42; }
}

@media (prefers-reduced-motion: reduce) {
  .melting-text,
  .melting-text::before,
  .melting-text::after {
    animation: none !important;
    transform: none !important;
  }
}

/* ── Balaba showcase below editorial sequence ────────────── */
.balaba-editorial-sequence .balaba-showcase {
  margin-bottom: clamp(24px, 4vh, 72px);
  position: relative;
  z-index: 6;
}

.balaba-showcase {
  position: relative;
  z-index: 3;
}

.balaba-showcase-video {
  position: relative;
  width: min(32vw, 460px, calc(70vh * var(--video-ratio, 1.7778)));
  aspect-ratio: var(--video-ratio, 16 / 9);
  height: auto;
  border-radius: 0!important;
  overflow: hidden;
  z-index: 4;

}

.balaba-showcase-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* JS-injected .dynamic-video-controls-wrap wrapper: fill the showcase cell. */
.balaba-showcase-video .dynamic-video-controls-wrap {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  max-width: none !important;
}

.balaba-showcase--grid {

  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(220px, 0.72fr) minmax(220px, 0.72fr) minmax(0, 1.02fr);
  gap: clamp(16px, 1.6vw, 26px);
  align-items: stretch;
}

/* Firefox-only: avoid shrink-to-fit grid width in centered Balaba wrappers.
   Chrome keeps the existing base logic unchanged. */
@supports (-moz-appearance: none) {
  .balaba-media-layout,
  .balaba-editorial-sequence,
  .balaba-editorial-sequence .balaba-showcase,
  .balaba-showcase,
  .balaba-showcase--grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .balaba-showcase--grid {
    inline-size: 100%;
    justify-self: stretch;
  }
}

.balaba-showcase-stack {
  min-width: 0;
  height: 100%;
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 26px);
}

.balaba-showcase-frame {
  min-height: 0;
  height: 100%;
}

.balaba-showcase-frame picture,
.balaba-showcase-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.balaba-showcase--grid .balaba-showcase-video {
  width: 100%;
  min-width: 0;
  height: 100%;
  z-index: 5;
}

.balaba-showcase--grid .balaba-showcase-video video {
  width: 100%;
  height: 100%;
  min-height: clamp(520px, 54vw, 860px);
  object-fit: cover;
  object-position: center;
}

.balaba-showcase--grid .balaba-showcase-video .dynamic-video-controls-wrap {
  min-height: clamp(520px, 54vw, 860px);
}

@media (max-width: 1100px) {
  .balaba-showcase--grid {
    width: min(960px, 92vw);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .balaba-showcase--grid .balaba-showcase-video {
    display: block;
  }
}

@media (max-width: 700px) {
  .balaba-showcase--grid {
    width: min(100%, 96vw);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .balaba-showcase-stack {
    height: auto;
  }

  .balaba-showcase--grid .balaba-showcase-video video {
    min-height: clamp(260px, 74vw, 420px);
  }
}

/* ── Balaba project section ─────────────────────────────── */
.project-section.text-white.balaba-project-section,
.balaba-project-section {
  /* purposfully disabled because it causes unecessary blank space
  margin: clamp(56px, 7vw, 104px) 0 50vh 0 !important; */

  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  position: relative;
  left: 0;
  transform: none;
  z-index: 1;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}




.balaba-section-heading,
.balaba-intro-layout,
.balaba-editorial-sequence {
  position: relative;
  z-index: 1;
}

.balaba-section-heading {
  display: grid;
  gap: clamp(14px, 1.4vw, 22px);
  justify-items: center;
  margin-bottom: clamp(28px, 4vw, 52px);
  width: 100%;
}

.balaba-section-heading .shiny-cta {
  width: auto;
  min-width: min(280px, 100%);
  justify-self: start;
}

.balaba-title {
  margin: 0;
  font-size: clamp(38px, 5.8vw, 88px);
  line-height: 0.94;
  text-transform: uppercase;
}

.balaba-kicker--muted {
  margin-bottom: 0;
  color: #e2c187;
}

.balaba-description {
  margin: 0;
  max-width: 62ch;
  color: rgba(239, 235, 226, 0.8);
  font-size: clamp(16px, 1.18vw, 20px);
  line-height: 1.72;
}

.balaba-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
  margin-bottom: clamp(24px, 3vw, 40px);
}

.balaba-slider {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #050505;
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.46);
}

.balaba-slider-track {
  display: flex;
  height: 100%;
  transition: transform 360ms ease;
  will-change: transform;
}

.balaba-slide {
  flex: 0 0 100%;
  margin: 0;
  background: #050505;
}

.balaba-slide img {
  width: 100%;
  height: 100%;
  min-height: clamp(340px, 46vw, 720px);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.balaba-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: clamp(40px, 3.2vw, 52px);
  height: clamp(40px, 3.2vw, 52px);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.balaba-arrow:hover {
  background: rgba(195, 160, 104, 0.18);
  border-color: rgba(226, 193, 135, 0.6);
}

.balaba-arrow--prev {
  left: clamp(10px, 1vw, 16px);
}

.balaba-arrow--next {
  right: clamp(10px, 1vw, 16px);
}

.balaba-copy-box {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(22px, 2vw, 30px);
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.96) 0%, rgba(6, 6, 6, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.4);
}

.balaba-copy-label {
  margin: 0 0 6px;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
}

.balaba-copy-main {
  margin: 0;
  color: #f0ece3;
  font-size: clamp(15px, 1.06vw, 17px);
  line-height: 1.68;
}

.balaba-note {
  margin: 8px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-style: italic;
  font-size: clamp(13px, 0.98vw, 15px);
  line-height: 1.6;

}



@media (max-width: 1180px) {
  .balaba-media-row--feature-left,
  .balaba-media-row--feature-right,
  .balaba-intro-layout {
    grid-template-columns: 1fr;
  }

  .balaba-media-row--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .balaba-media-row--three > :last-child {
    grid-column: 1 / -1;
  }

  .balaba-media-card--hero,
  .balaba-media-tall {
    min-height: clamp(380px, 62vw, 620px);
  }
}

@media (max-width: 900px) {
  .vkDivsNSvg-bmw {
  
    background:
      radial-gradient(circle at 50% 0%, rgba(186, 143, 68, 0.14), transparent 24%),
      linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #020202 10%, #050505 44%, #040404 100%);
  }

  .melting-text {
    letter-spacing: 0.03em;
  }

  .melting-text--sub {
    letter-spacing: 0.14em;
  }

  .balaba-media-row--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .balaba-project-shell {
    padding-inline: clamp(18px, 4vw, 28px);
  }
}

@media (max-width: 700px) {
  .melting-text-container {
    text-align: left;
  }

  .balaba-project-shell,
  .balaba-intro-layout,
  .balaba-intro-layout > div {
    width: 100%;
    max-width: 100%;
  }

  .balaba-intro-layout > div {
    min-width: 0;
  }

  .balaba-section-heading,
  .balaba-title,
  .balaba-description {
    text-align: center;
  }

  .balaba-media-row--two,
  .balaba-media-row--three {
    grid-template-columns: 1fr;
  }

  .balaba-editorial-sequence > .balaba-media-row--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .balaba-editorial-sequence > .balaba-media-row--wide {
    grid-template-columns: 1fr;
  }

  .balaba-media-row--three > :last-child {
    grid-column: auto;
  }

  

  .balaba-project-shell {
    padding: 28px 16px 0px;
  }

  .balaba-section-heading .shiny-cta {
    width: 100%;
  }

  .balaba-slide img {
    min-height: clamp(240px, 72vw, 420px);
  }

  .balaba-arrow {
    width: 42px;
    height: 42px;
  }
}

/* ── Episode slider slides ─────────────────────────────────────────────── */
.balaba-slide {
  flex: 0 0 100%;
  min-width: 0;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background: #0d0d0d;
  aspect-ratio: 16 / 9;
}

.balaba-slide .balaba-ep-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  min-height: unset;
  aspect-ratio: auto;
}

.balaba-slide:hover .balaba-ep-thumb {
  transform: scale(1.03);
}

.balaba-slide .overlay-play {
  z-index: 3;
  inset: 0;
  margin: auto;
  transform: none;
}

.balaba-slide .overlay-play:focus-visible {
  outline: 2px solid rgba(226, 193, 135, 0.9);
  outline-offset: 4px;
}

.balaba-ep-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  padding: 3px 9px;
  border-radius: 4px;
  pointer-events: none;
  line-height: 1.4;
}

.balaba-ep-status-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.55);
  padding: 6px 14px;
  border-radius: 6px;
  text-align: center;
  pointer-events: none;
  white-space: nowrap;
}

/* Playing state: hide thumbnail layer, show iframe */
.balaba-slide--playing .balaba-ep-thumb,
.balaba-slide--playing .overlay-play,
.balaba-slide--playing .balaba-ep-play-overlay,
.balaba-slide--playing .balaba-ep-label,
.balaba-slide--playing .balaba-ep-status-badge {
  display: none;
}

.balaba-slide--playing iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Disabled state (e.g. not_filmed) */
.balaba-slide--disabled {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}

/* ── Episode copy box dynamic content ──────────────────────────────────── */
.balaba-copy-dynamic {
  transition: opacity 0.28s ease;
}

.balaba-copy-highlights {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}

.balaba-copy-highlights li {
  font-size: 0.82rem;
  color: rgba(240, 236, 227, 0.68);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.45;
}

.balaba-copy-highlights li::before {
  content: '–';
  position: absolute;
  left: 0;
}

.balaba-copy-sublabel {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c3a068;
  margin: 1rem 0 0.4rem;
}

.balaba-copy-chapters {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}

.balaba-copy-chapters li {
  font-size: 0.76rem;
  color: rgba(240, 236, 227, 0.5);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.4;
}

.balaba-copy-chapters li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #c3a068;
}

.balaba-copy-status {
  font-size: 0.78rem;
  color: rgba(240, 236, 227, 0.5);
  font-style: italic;
  margin-top: 0.75rem;
}
