.social-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.social-icons__link,
.site-header__social-link {
  display: inline-block;
  inline-size: 24px;
  block-size: 24px;
  position: relative;
  text-decoration: none;
}
.social-icons__link::before,
.site-header__social-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--wp--preset--gradient--champagne);
  -webkit-mask: var(--icon-mask) center/contain no-repeat;
  mask: var(--icon-mask) center/contain no-repeat;
}

.social-icons__link:focus-visible,
.site-header__social-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--wp--preset--color--yellow);
  border-radius: 4px;
}

.wp-block-celebrityautobiography-social-icons.has-text-align-left .social-icons {
  justify-content: flex-start;
}
.wp-block-celebrityautobiography-social-icons.has-text-align-center .social-icons {
  justify-content: center;
}
.wp-block-celebrityautobiography-social-icons.has-text-align-right .social-icons {
  justify-content: flex-end;
}