/* Background */

body.about-zine-page {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(224, 50, 50, 0.14), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(255, 118, 170, 0.16), transparent 55%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.05), transparent 60%),
    #0a0710;
}

body.about-zine-page::before {
  content: "";
  position: fixed;
  inset: -35%;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.08), transparent 60%),
    radial-gradient(circle at 85% 80%, rgba(248, 220, 232, 0.12), transparent 65%);
  opacity: 0.55;
  mix-blend-mode: screen;
  animation: aboutAmbientDrift 40s ease-in-out infinite alternate;
}

@keyframes aboutAmbientDrift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(10px, -18px, 0) scale(1.03); }
  100% { transform: translate3d(-14px, 12px, 0) scale(1.02); }
}

/* Section */

.section-about-zine {
  padding: 4.2rem 0 3.2rem;
}

.about-zine-inner {
  max-width: 760px;
  margin: 0 auto;
}

/* Header */

.about-zine-header-full {
  text-align: center;
  margin-bottom: 2.2rem;
}

.about-zine-title-full {
  margin: 0 0 0.6rem;
  font-size: 1.55rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.about-zine-sub-full {
  margin: 0;
  font-size: 0.96rem;
  color: #f4f0f4;
  line-height: 1.7;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
  font-family: "Lora", "Times New Roman", serif;
}

/* Slider block */

.about-zine-slider-block {
  margin-top: 1.4rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(245, 242, 238, 0.16);
}

.about-zine-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.about-zine-slider-label {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-weight: 700;
  color: var(--accent-strong);
}

.slider-arrow {
  padding: 0 0.3em;
  font-size: 1.1em;
}

.about-zine-slider-hint {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(230, 224, 235, 0.8);
}

.about-zine-slider {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 0.8rem;
}

.slider-end {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(230, 224, 235, 0.75);
  white-space: nowrap;
}

#brotlos-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  background: rgba(245, 242, 238, 0.26);
  border-radius: 999px;
  outline: none;
  cursor: pointer;
}

#brotlos-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--accent-strong);
  border: 1px solid #fff;
  box-shadow: 0 0 0 3px rgba(224, 50, 50, 0.38);
}

#brotlos-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--accent-strong);
  border: 1px solid #fff;
  box-shadow: 0 0 0 3px rgba(224, 50, 50, 0.38);
}

.about-zine-slider-output {
  margin: 0;
  font-size: 0.89rem;
  color: rgba(245, 242, 238, 0.94);
  font-style: italic;
}

.about-zine-output-fade-out {
  opacity: 0;
  transition: opacity 0.15s ease;
}

.about-zine-output-fade-in {
  opacity: 1;
  transition: opacity 0.15s ease;
}

/* Text card */

.about-zine-main {
  position: relative;
  padding: 1.8rem 1.7rem 2rem;
  border-radius: 6px;
  border: 1px solid rgba(245, 242, 238, 0.18);
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 3px
    ),
    #08070b;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.7);
}

.about-zine-main::before {
  content: "";
  position: absolute;
  inset: 0.5rem -0.4rem auto auto;
  height: 16px;
  background-image:
    radial-gradient(circle at 4px 4px, rgba(255, 255, 255, 0.46), transparent 55%),
    radial-gradient(circle at 20px 4px, rgba(255, 255, 255, 0.46), transparent 55%),
    radial-gradient(circle at 36px 4px, rgba(255, 255, 255, 0.46), transparent 55%);
  opacity: 0.4;
}

.about-zine-body {
  font-size: 0.95rem;
  color: #e8e1e9;
  line-height: 1.85;
  font-family: "Lora", "Times New Roman", serif;
  text-align: justify;
}

.about-zine-body p {
  margin: 0 0 1rem;
}

/* CTA */

.about-zine-cta {
  padding-top: 1.6rem;
  border-top: 1px dashed rgba(245, 242, 238, 0.18);
  margin-top: 2rem;
  text-align: center;
}

.about-zine-cta-text {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  color: #e8e1e9;
}

.about-zine-cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 230, 236, 0.9);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background: rgba(248, 230, 236, 0.05);
  color: #f8e6ec;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.66);
  transition: background 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
  margin: 0.4rem auto;
}

.about-zine-cta-pill:hover {
  background: rgba(248, 230, 236, 0.14);
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.8);
}

.about-zine-cta-note {
  margin: 0.45rem 0 0;
  font-size: 0.78rem;
  color: rgba(230, 224, 235, 0.75);
  font-style: italic;
}

/* Responsive */

@media (max-width: 600px) {
  .section-about-zine {
    padding: 3.2rem 0 2.6rem;
  }

  .about-zine-title-full {
    font-size: 1.35rem;
  }

  .about-zine-main {
    padding: 1.4rem 1.2rem 1.6rem;
  }

  .about-zine-slider-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
