.fb-author-box {
  display: flex;
  align-items: center;
  gap: 16px;               
  background: transparent;
  color: #fff;
}

.fb-author-name {
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}

.fb-author-icons {
  display: flex;
  gap: 8px;      
}

.fb-author-icons .fb-fi {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;      
  border: 2px solid #fff;
  border-radius: 5px;      
  color: #fff;
  text-decoration: none;
  box-sizing: border-box;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.fb-author-icons .fb-fi i {
  font-size: 14px;        
  line-height: 1;
}

.fb-author-icons .fb-fi:hover {
  background-color: #fff;
  color: #e85b6b;
}