.narrator-watermark {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.narrator-watermark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.28;
  filter: saturate(0.7);
}

.narrator-watermark::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 8, 0.82) 0%, rgba(5, 5, 8, 0.55) 48%, rgba(5, 5, 8, 0.72) 100%),
    linear-gradient(180deg, rgba(5, 5, 8, 0.45) 0%, rgba(5, 5, 8, 0.78) 100%);
}

.narrator-page {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 4rem;
  position: relative;
  z-index: 2;
}

.narrator-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.2rem;
  align-items: start;
}

.narrator-photo-wrap {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 28px;
}

.narrator-story {
  position: relative;
  z-index: 3;
  padding: 1.2rem 1.3rem 1.4rem;
  border-radius: 22px;
  background: rgba(5, 5, 8, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.narrator-story h1 {
  margin: 0.2rem 0 0.35rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}

.narrator-title {
  color: var(--protv-cyan);
  font-weight: 600;
  margin-bottom: 1.4rem;
}

.narrator-story h2 {
  margin: 1.5rem 0 0.7rem;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.narrator-story p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0.95rem;
}

.narrator-story .btn-primary {
  margin-top: 0.6rem;
}

.narrator-photo {
  width: 100%;
  height: min(78vh, 720px);
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--glow);
  background: #111;
  display: block;
}

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

  .narrator-photo-wrap {
    position: relative;
    order: -1;
  }

  .narrator-photo {
    height: min(58vh, 520px);
  }
}
