.top-bar{
  background:#167ac6;
  color:#fff;
  font-size:14px;
}

.top-bar a{
  color:#fff;
  text-decoration:none;
}

.top-bar i{
  margin-right:6px;
  color:#fff;
}

/* Social Icons */
.social-icons{
  display: flex;
  align-items: center;
  justify-content: center;        /* mobile center */
  gap: 12px;
  flex-wrap: nowrap;              /* 👈 IMPORTANT */
}
.social-icons a{
  font-size: 16px;
  white-space: nowrap;
}


@media (min-width: 768px){
  .social-icons{
    justify-content: flex-end;    /* desktop right */
  }
}

