/* About page container */
.about-page {
  width: min(1000px, calc(100% - 48px));
  margin: 40px auto 60px;
}

/* Two-column layout */
.about-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  align-items: start;
}

/* Photo */
.about-grid__photo {
  margin: 0;
}

.about-grid__photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Text column */
.about-grid__text p {
  margin: 0 0 16px 0;
  line-height: 1.65;
  font-size: 1rem;
}

/* ---------- SIGNATURE ---------- */
.about-signature {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #eee;

  /* THIS is the key */
  text-align: center;
}

/* Name */
.about-name {
  font-weight: 600;
  margin-bottom: 6px;
}

/* Affiliation */
.about-affiliation {
  margin: 0 0 10px 0;
  font-size: 0.95rem;
  color: #444;
}

/* Links */
.about-links {
  font-size: 0.95rem;
}

.about-links a {
  color: #555;
  text-decoration: none;
}

.about-links a:hover {
  text-decoration: underline;
}

/* Mobile layout */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-signature {
    text-align: left; /* optional — feels more natural on mobile */
  }
}

.about-cv {
  margin-top: 12px;
  text-align: center;
}

.about-cv a {
  text-decoration: none;
  font-weight: 500;
  color: #555;
}

.about-cv a:hover {
  text-decoration: underline;
}

/* About page title — match Research section titles */
.about-title {
  margin: 0 0 14px 0;

  font-size: 1.35rem;      /* matches research headings */
  font-weight: 600;
  line-height: 1.3;

  text-align: center;
}
.about-title {
  color: #111;
}

.project__title{
  margin: 0 0 10px 0;
  font-size: 1.35rem;
  text-align: center;
}

/* About page divider (matches signature divider) */
.about-divider {
  border: none;
  height: 1px;
  background: #eee;
  margin: 16px 0 20px 0;
}


