/* ——— About Page ——— */

.about-headlines {
  padding: 80px var(--gutter) 80px;
  text-align: center;
  max-width: var(--container);
  margin: 0 auto;
}

.about-title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-text);
}

/* Two-column body */
.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter) 120px;
  align-items: center;
}

/* Bio text */
.about-text p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: 24px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-text a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--color-text);
}

.about-text a:hover {
  opacity: 0.7;
}

.about-text strong {
  font-weight: 500;
}

/* Portrait image */
.about-image {
  border-radius: 4px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-body {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 80px;
  }

  .about-image {
    position: static;
    order: -1;
  }

  .about-headlines {
    padding: 48px var(--gutter) 40px;
  }
}
