/* Sponsors Social Icons Styles */
.sponsor-social-icon {
  margin-top: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.spnsors-logo:hover .sponsor-social-icon {
  opacity: 1;
}

.sponsor-social-icon .social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.sponsor-social-icon .social-icons li {
  display: inline-block;
}

.sponsor-social-icon .social-icons li a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Facebook */
.sponsor-social-icon .social-icons li:nth-child(1) a {
  background: linear-gradient(45deg, #3b5998, #4267B2);
}

.sponsor-social-icon .social-icons li:nth-child(1) a:hover {
  background: linear-gradient(45deg, #2d4373, #365899);
  transform: translateY(-2px);
}

/* Twitter */
.sponsor-social-icon .social-icons li:nth-child(2) a {
  background: linear-gradient(45deg, #1da1f2, #0d95e8);
}

.sponsor-social-icon .social-icons li:nth-child(2) a:hover {
  background: linear-gradient(45deg, #0c7cd5, #0a6bc2);
  transform: translateY(-2px);
}

/* LinkedIn */
.sponsor-social-icon .social-icons li:nth-child(3) a {
  background: linear-gradient(45deg, #0077b5, #00a0dc);
}

.sponsor-social-icon .social-icons li:nth-child(3) a:hover {
  background: linear-gradient(45deg, #005885, #007bb5);
  transform: translateY(-2px);
}

/* Behance */
.sponsor-social-icon .social-icons li:nth-child(4) a {
  background: linear-gradient(45deg, #1769ff, #0057ff);
}

.sponsor-social-icon .social-icons li:nth-child(4) a:hover {
  background: linear-gradient(45deg, #0052cc, #0041a3);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .sponsor-social-icon .social-icons {
    gap: 8px;
  }
  
  .sponsor-social-icon .social-icons li a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
  }
}