/* ============================================
   ABOUT PAGE — /about basic page
   ============================================ */

/* About uses the global site container — no extra width override needed. */
body.about-page .page-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.3px;
  margin-bottom: 0.5rem;
  text-align: center;
}

body.about-page .node.about-page {
  margin-bottom: 0;
  padding: 1.5rem 1.75rem;
}

body.about-page .about-page__content {
  margin-bottom: 1.25rem;
}

body.about-page .about-page__content .field--name-body {
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--muted-light);
}

body.about-page .about-page__content .field--name-body p {
  margin-bottom: 1rem;
}

body.about-page .about-page__content .field--name-body p:last-child {
  margin-bottom: 0;
}

body.about-page .about-page__content .field--name-body a {
  color: var(--green-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.about-page .about-page__content .field--name-body a:hover {
  color: var(--green-pale);
}

/* Float clearance — keep copy off the photos */
body.about-page .about-page__content .spot-image-placeholder {
  width: min(40%, 250px);
  margin: 0 0 1.25rem 2.75rem;
}

body.about-page .about-page__content .spot-image-placeholder.left {
  margin: 0 2.75rem 1.25rem 0;
}

body.about-page .about-page__content .spot-image img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  border-radius: 6px;
}

body.about-page .about-page__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

body.about-page .about-page__actions-lead {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}

body.about-page .about-page__actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

@media (max-width: 600px) {
  body.about-page .about-page__content .spot-image-placeholder,
  body.about-page .about-page__content .spot-image-placeholder.left {
    float: none;
    width: 100%;
    margin: 1.25rem 0;
  }

  body.about-page .about-page__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
