.profile-card {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #fff;
  padding: 18px 20px;

  display: grid;
  grid-template-columns: 140px 1fr; /* columna fija para la foto */
  align-items: center;
  column-gap: 1.5rem;

  width: 100%;
  margin: 1.5rem 0;
  padding: 1.5rem;

  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.profile-card__img img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
  flex-shrink: 0;
  border: 2px solid #e5e7eb;
  background: #fafafa;
  margin: 0 auto 1rem auto; /* centrado arriba */

  /* CLAVE: nada de espacio interno */
  padding: 0;
  box-sizing: border-box;

  /* Si el tema pone un borde, lo controlamos aquí */

  display: flex;
  align-items: center;
  justify-content: center;
}


@media (max-width: 640px) {
  .profile-card {
    display: grid;
    grid-template-columns: 1fr; /* una sola columna */
    text-align: center;
    row-gap: 1rem;
  }
}
.profile-card__info {
  display: flex;
  flex-direction: column;
  justify-content: center;  /* centra el texto respecto a la imagen */
}

.profile-card__info {
  display: flex;
  flex-direction: column;
  justify-content: center;  /* centra el texto respecto a la imagen */
}

.profile-card__name {

  margin: 0 0 0.4rem 0;
  font-size: 1.25rem;
  font-weight: 600;
}


.profile-card__affiliation {
  margin: 0 0 0.3rem 0;
  line-height: 1.3;
}

.profile-card__area {
  margin: 0.4rem 0 0.4rem 0;
  line-height: 1.35;
  color: #666;
}

.profile-card__links a {
  text-decoration: none;
  color: #0b57d0;
  margin-right: 0.75rem;
}

.profile-card__links a:hover {
  text-decoration: underline;
}


.profile-card__links {
  margin-top: 0.4rem;
}


