/* ============================================
   INDEX PAGE (About)
   ============================================ */

/* Push content down ~1/3 from top */
.page .content {
  padding-top: var(--index-content-top);
}

/* Name above the photo row, aligned with text column */
.about-name {
  margin-left: calc(var(--profile-pic-size) + 2rem);
  padding-bottom: var(--about-name-pad-bottom);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 0;  /* LOCKED: line must sit at image top */
}

/* Photo + text side by side */
.about-intro {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.about-photo {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-pic {
  width: var(--profile-pic-size);
  height: var(--profile-pic-size);
  object-fit: cover;
  object-position: center 20%;
  border: 5px solid #222;
}

.about-photo .social-icons {
  margin: 0.75rem 0 0;
}

.about-photo .social-icons a {
  font-size: 1.75rem;
}

.about-text {
  flex: 1;
  min-width: 0;
  padding-top: 0.9rem;
}

/* Bio */
.bio {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 0.7em;
  text-align: justify;
}

.bio:last-child {
  margin-bottom: 0;
}

.bio a {
  text-decoration: underline;
  text-decoration-color: var(--color-border);
  text-underline-offset: 2px;
}

.bio a:hover {
  text-decoration-color: var(--color-text-secondary);
}

/* Contact line */
.contact {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
}

.contact a {
  color: var(--color-heading);
  text-decoration: underline;
  text-decoration-color: var(--color-border);
  text-underline-offset: 2px;
}

.contact a:hover {
  text-decoration-color: var(--color-text-secondary);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 720px) {
  .page .content {
    padding-top: 2rem;
  }

  .about-name {
    margin-left: 0;
    text-align: center;
  }

  .about-intro {
    flex-direction: column;
    align-items: center;
  }

  .profile-pic {
    width: 200px;
    height: 200px;
  }

  .about-text {
    text-align: center;
  }

  .bio { font-size: 0.88rem; }
}
