/* Страница спикера — раскладка (общие компоненты — в site.css). */

.sp-hero{display:flex; flex-direction:column; gap:24px; align-items:flex-start; margin-bottom:44px;}
.sp-hero__photo{width:130px; height:130px; border-radius:16px; overflow:hidden; flex:none;
  background:linear-gradient(135deg,var(--avatar-from),var(--avatar-to));
  display:flex; align-items:center; justify-content:center; font-size:34px; font-weight:700; color:var(--avatar-ink);}
.sp-hero__photo img{width:100%; height:100%; object-fit:cover;}
.sp-hero__body{flex:1; min-width:0;}
.sp-hero__role{font-size:13px; font-weight:500; color:var(--faint); margin-bottom:8px;}
.sp-hero__bio{font-size:16px; line-height:1.6; color:var(--ink); max-width:560px; margin:0 0 16px;}
.sp-hero__bio p{margin:0 0 12px;}
.sp-hero__bio p:last-child{margin-bottom:0;}

.sp-badges{display:flex; gap:8px; flex-wrap:wrap; margin:0 0 16px;}

.sp-links{display:flex; gap:20px; flex-wrap:wrap; align-items:center;}
.sp-links a{text-decoration:none; font-size:14px; font-weight:500; color:var(--mute);}
.sp-links a:hover{color:var(--accent);}

@media (min-width:761px){
  .sp-hero{flex-direction:row; align-items:flex-start; gap:28px;}
}
