/* ============================================
   ABOUT PAGE STYLES (v3)
   ============================================ */

/* Page hero handled in styles.css */

/* --- Bio --- */
.bio {
  padding-top: 3rem;
}

.bio__inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: start;
}

.bio__img-wrap {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--border-light);
}

.bio__img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.bio__text p {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 560px;
}

/* --- Credentials --- */
.credentials__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.credentials__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: var(--text-body);
}

/* --- CTA Final --- */
.cta-final {
  position: relative;
  padding: 56px 0;
  overflow: hidden;
}

.cta-final h2 {
  margin-bottom: 0.5rem;
}

.cta-final__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .bio__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .bio__photo {
    display: flex;
    justify-content: center;
  }

  .bio__img-wrap {
    width: 180px;
    height: 180px;
  }

  .bio__text p {
    margin: 0 auto;
  }
}
