/* Genel görünüm */
.social-media-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  background-color: #f0f0f0;
  padding: 10px 0;
  gap: 10px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px;
  text-decoration: none;
  color: #333;
}

.social-icon-img {
  width: 30px;
  height: 30px;
  margin-right: 8px;
}

.social-icon span {
  font-size: 14px;
  font-weight: bold;
}

.social-icon:hover {
  opacity: 0.8;
}

/* Mobil uyum (2x2 grid için) */
@media screen and (max-width: 576px) {
  .social-media-container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 15px 0;
    padding: 15px 0;
  }

  .social-icon {
    margin: 0 !important;
    justify-content: center !important;
    width: 100% !important;
  }
}
