/* SECTION */
.bio-index {
  padding: 6rem 0;
}

/* LAYOUT PRINCIPAL */
.bio-layout {
  display: flex;
  gap: 3rem;
  align-items: flex-start; /* TEXTO ARRIBA, ALINEADO CON LA IMAGEN */
  /* padding: 1rem 3rem; */
}

/* IMAGEN: ocupa SIEMPRE el alto total del contenido */
.bio-image-wrapper {
  flex: 0 0 35%;
}

.bio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* TEXTO */
.bio-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center !important; /* TEXTO ARRIBA */
}

.bio-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 0.4rem;
  margin-top: 1rem;
}

.bio-sub {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.6;
  margin-bottom: 1.5rem;
}

.bio-text {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
  margin-bottom: 1rem;
}

/* ACCIONES */
.bio-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.bio-button {
  display: inline-flex;
  padding: 0.7rem 1.6rem;
  background: #111111;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: background 0.25s ease;
}

.bio-button:hover {
  background: #333;
}

.bio-social {
  display: flex;
  gap: 1rem;
}

.bio-social a {
  font-size: 0.9rem;
  color: #111;
  opacity: 0.7;
  text-decoration: none;
}

.bio-social a:hover {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .bio-index {
    padding: 1.5rem 0;
  }
  .bio-layout {
    flex-direction: column;
    border-left: none;
    border-right: none;
    padding: 0;
    gap: 0.5rem;
  }

  .bio-image-wrapper {
    width: 100%;
    height: auto;
  }

  .bio-image {
    height: auto;
    max-height: 380px;
  }
}
