/* V161: Style official social media icons */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 6px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 18px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.social-icons a:hover {
  transform: scale(1.1);
  background: #FFD700;
  color: #000;
}
