/* === ABP Social Icons ===
   Blue circles, white icons, perfect centering
   Last updated: 2025-10-09
*/

/* Container */
.social {
  display: flex;
  justify-content: center;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

/* Each circle */
.social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #015293;  /* ABP blue */
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Hover effect */
.social li a:hover {
  background-color: #0d5292; /* lighter blue on hover */
  transform: scale(1.1);
}

/* Reset global italic <i> styling */
.social i {
  font-style: normal !important;
  color: #fff !important;
  line-height: 1;
  font-size: 28px;
  display: block;
  text-align: center;
}



/* Fine-tuned Bluesky butterfly */
.social img.bluesky-icon {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}



/* Mobile adaptation */
@media (max-width: 480px) {
  .social li a {
    width: 50px;
    height: 50px;
  }
  .social i,
  .social img.icon {
    width: 24px;
    height: 24px;
    font-size: 24px;
  }
}

/* Optional tooltip style (uses title="...") */
.social a[title] {
  position: relative;
}
.social a[title]:hover::after {
  content: attr(title);
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  font-size: 12px;
  padding: 5px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0.9;
}




