/* =========================
/* =========================
   ABOUT PAGE STYLES
========================= */

.about-page {
  padding: 60px 20px;
  background: #0b0b0b;
  color: #eaeaea;
  min-height: 70vh;
}

.about-page .content-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* Headings */
.about-page h1 {
  font-size: 32px;
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: #ffffff;
}

/* Paragraphs */
.about-page p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.85);
}

/* Emphasis */
.about-page strong {
  font-weight: 600;
  color: #ffffff;
}

/* Footer spacing fix */
.about-page + .site-footer {
  margin-top: 40px;
}

/* =========================
   Anchor navigation
========================= */

.about-anchors {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 40px;
}

.about-anchors a {
  font-size: 13px;
  color: #d43a6b;
  text-decoration: none;
  border-bottom: 1px dashed rgba(212, 58, 107, 0.4);
  white-space: nowrap;
}

.about-anchors a:hover {
  border-bottom-style: solid;
}

/* =========================
   Section headings
========================= */

.about-page h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}

/* =========================
   MOBILE ADAPTATION
========================= */

@media (max-width: 600px) {
  .about-page {
    padding: 40px 16px;
  }

  .about-page .content-inner {
    max-width: 100%;
  }

  .about-page h1 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .about-page h2 {
    font-size: 18px;
    margin-top: 36px;
    margin-bottom: 14px;
  }

  .about-page p {
    font-size: 14px;
    line-height: 1.65;
  }

  /* anchors — удобнее для тапа */
  .about-anchors {
    gap: 10px;
    margin: 16px 0 32px;
  }

  .about-anchors a {
    font-size: 12px;
    padding: 4px 0;
  }
}
