/* === SOLO AUTOR PERSONA (taxonomía) === */
.s-body__author.s-body__author--tax{
  display:flex;
  align-items:flex-start;
  gap:22px;

  padding:22px 26px;
  border-radius:20px;
  border: solid 3px #009fdf;

  background:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.08);
}

/* Foto redonda */
.wrap__profile-img{
  width: 50%;
}

.s-body__author--tax .s-body__author-img{
  margin:0;
  width:auto;
  height:auto;
  flex:0 0 92px;

  border-radius:999px;
  overflow:hidden;
  background:#fff;
  border:3px solid rgba(255,255,255,.85);
}

.s-body__author--tax .s-body__author-img img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

/* Contenedor texto */
.s-body__author--tax .s-body__author-info{
  min-width:0;
}

/* === Wrap: nombre + profesión === */
.s-body__author--tax .s-body__author-head{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin:0;
}

/* Nombre */
.s-body__author--tax .s-body__author-name{
  margin:0;
  font-size:22px;
  line-height:1.15;
  font-weight:500;
  letter-spacing:-0.2px;
  color: black;
}

.s-body__author--tax .s-body__author-name a{
  text-decoration:none;
}

/* Profesión / expertiz */
.s-body__author--tax .s-body__author-role{
  display:inline-flex;
  width:fit-content;
  padding:6px 10px;
  border-radius:999px;

  font-size:13px;
  line-height:1;
  font-weight:700;

  background:rgba(0,0,0,.06);
  opacity:.9;

  margin:0; /* anulamos el margin-top anterior */
}

/* Bio */
.s-body__author--tax .s-body__author-desc{
  margin-top:10px;
  font-size:14px;
  line-height:1.55;
  opacity:.9;
}

/* Redes (mantienes estructura actual, solo maquetamos) */
.s-body__author--tax .s-body__author-social{
  display:flex;
  gap:12px;
  margin:14px 0 0;
  padding:0;
  list-style:none;
}

.s-body__author--tax .s-body__author-social a{
  width:34px;
  height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:rgba(0,0,0,.06);
  text-decoration:none;
}

.s-body__author--tax .s-body__author-social i{
  font-size:15px;
}

/* === Responsive === */

/* Tablet: ajustamos tamaños un poco */
@media (max-width: 920px){
  .s-body__author.s-body__author--tax{
    padding:20px 22px;
    gap:18px;
  }
  
  .s-body__author.s-body__author--tax{
    flex-direction: row;
    align-items: flex-start;
  }

  .s-body__author--tax .s-body__author-name{
    font-size:20px;
  }

  .s-body__author--tax .s-body__author-img{
    width: auto;
    height: auto;
    flex-basis:86px;
  }
}

/* Móvil: apilado */
@media (max-width: 640px){
  .s-body__author.s-body__author--tax{
    flex-direction:column;
    align-items:flex-start;
    padding:18px 18px;
  }

  .s-body__author--tax .s-body__author-img{
    width:84px;
    height:84px;
    flex-basis:84px;
  }

  .s-body__author--tax .s-body__author-head{
    gap:8px;
    position: absolute !important;
  }

  .s-body__author--tax .s-body__author-name{
    font-size:19px;
  }

  .s-body__author--tax .s-body__author-social{
    flex-wrap:wrap;
  }
}

/* Override: desactivar posicionamiento absoluto antiguo en tablet */
@media screen and (max-width: 920px) {
  .s-body__author--tax .s-body__author-name{
    position: static !important;
    top: auto !important;
    left: auto !important;
  }
}

@media screen and (max-width: 920px) {
  .s-body__author--tax .s-body__author-head{
    top: clamp(-100px, -10vh, -90px);
    left: clamp(100px, 12vw, 130px);
  }
  .s-body__author--tax .s-body__author-desc {
    margin-top: 0px;
  }
}


/* COLORES DEL ICONO REDES SOCIALES */

/* Base: enlaces redes (solo archive autor) */
.s-body__author.s-body__author--tax.s-body__author--tax-archive .s-body__author-social a{
  transition: background-color .2s ease, transform .15s ease, color .2s ease;
}

/* Hover pastel por red (según clase del LI) */
.s-body__author-social li.s-body__author-social-item--web a:hover{
  background: rgba(0, 159, 223, .14);
}

.s-body__author-social li.s-body__author-social-item--linkedin a:hover{
  background: rgba(10, 102, 194, .14);
}

.s-body__author-social li.s-body__author-social-item--instagram a:hover{
  background: rgba(225, 48, 108, .14);
}

/* X (fa-x-twitter) */
.s-body__author-social li.s-body__author-social-item--x a:hover{
  background: rgba(0, 0, 0, 0.25); /* X pastel (gris suave) */
}

.s-body__author-social li.s-body__author-social-item--youtube a:hover{
  background: rgba(255, 0, 0, .12);
}

/* Micro-animación */
.s-body__author-social a:hover{
  transform: translateY(-1px);
}


.s-body__author-social .isil-icon-x{
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}


/*================CORRECCIÓN DE ESTILOS PARA TEXTO LARGO==================*/

ga esto en el CSS que aplica a esa caja (single y/o archive):

/* En flex, permite que el bloque de texto se encoja */
.s-body__author .s-body__author-info{
  min-width: 0;
}

/* Evita que strings largos (sin espacios) se desborden */
.s-body__author .s-body__author-desc,
.s-body__author .s-body__author-desc p{
  max-width: 100%;
  overflow-wrap: anywhere;   /* corta donde sea si es necesario */
  word-break: break-word;    /* fallback */
  hyphens: auto;             /* si hay idiomas/guiones */
}