.author-page-wrap{
  background:#fff;
  padding:5px 0;
}

.author-page-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 16px;
}

.author-hero{
  display:flex;
  align-items:center;
  gap:22px;
  padding:22px;
  border:1px solid #ececec;
  background:#fff;
  margin-bottom:26px;
}

.author-hero__avatar{
  flex:0 0 120px;
}

.author-hero__avatar img{
  width:120px;
  height:120px;
  border-radius:50%;
  object-fit:cover;
  display:block;
  border:1px solid #e7e7e7;
  background:#f7f7f7;
}

.author-hero__content{
  flex:1;
  min-width:0;
}

.author-hero__eyebrow{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  letter-spacing:.3px;
  color:#bd081c;
  text-transform:uppercase;
  margin-bottom:8px;
}

.author-hero__title{
  font-size:32px;
  line-height:1.2;
  margin:0 0 12px;
  color:#111;
  font-weight:700;
}

.author-hero__text{
  margin:0;
  font-size:16px;
  line-height:1.8;
  color:#444;
}

.author-section{
  padding:22px 0;
  border-bottom:1px solid #f0f0f0;
}

.author-section:last-child{
  border-bottom:none;
}

.author-section h2{
  font-size:22px;
  line-height:1.3;
  color:#111;
  margin:0 0 14px;
  font-weight:700;
}

.author-section p{
  margin:0 0 14px;
  font-size:16px;
  line-height:1.85;
  color:#444;
}

.author-list{
  margin:0;
  padding-left:20px;
}

.author-list li{
  margin:0 0 10px;
  font-size:16px;
  line-height:1.75;
  color:#222;
}

.author-links-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.author-link-card{
  display:block;
  text-decoration:none;
  color:inherit;
  border:1px solid #ececec;
  background:#fff;
  padding:16px;
  transition:border-color .2s ease, background-color .2s ease;
}

.author-link-card:hover{
  border-color:#bd081c;
  background-color:#fffafa;
}

.author-link-card strong{
  display:block;
  font-size:16px;
  line-height:1.4;
  color:#111;
  margin-bottom:6px;
}

.author-link-card span{
  display:block;
  font-size:14px;
  line-height:1.6;
  color:#666;
}

@media (max-width:767px){
  .author-hero{
    display:block;
    padding:18px 16px;
  }

  .author-hero__avatar{
    float:left;
    width:76px;
    margin:0 14px 8px 0;
  }

  .author-hero__avatar img{
    width:76px;
    height:76px;
  }

  .author-hero__eyebrow{
    display:block;
    font-size:11px;
    margin:2px 0 4px;
  }

  .author-hero__title{
    font-size:22px;
    margin:0 0 10px;
    line-height:1.2;
  }

  .author-hero__text{
    clear:both;
    font-size:14px;
    line-height:1.7;
    margin-top:12px;
  }

  .author-links-grid{
    grid-template-columns:1fr;
  }
}

.author-socials{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:16px;
}

.author-socials{
  display:flex;
  align-items:center;
  gap:8px;
}

.author-socials a{
  width:34px;
  height:34px;
  background:#f5f5f5;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#444;
  text-decoration:none;
  transition:.25s;
  line-height:0;
}

.author-socials a:hover{
  background:#bd081c;
  color:#fff;
}

.author-socials svg{
  width:18px;
  height:18px;
  display:block;
  fill:currentColor;
}

@media (max-width:767px){
  .author-socials{
    margin-top:14px;
    gap:10px;
  }

  .author-socials a{
    width:42px;
    height:42px;
    border-radius:11px;
  }

  .author-socials svg{
    width:21px;
    height:21px;
  }
}