.snsContainer {
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 20px;
  font-family: "Pretendard", sans-serif;
}

.snsTitle {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 70px;
  color: #1d1d1d;
}

.snsGrid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  text-align: center;
}

.snsGrid a {
  width: 180px;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  color: #000;
  transition: transform 0.3s;
}

.snsGrid a:hover {
  transform: scale(1.08);
}

.snsGrid img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  background-color: #fff;
  padding: 10px;
  box-sizing: border-box;
}

.snsGrid p {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 15px;
}

/* 모바일 대응 */
@media (max-width: 768px) {
  .snsTitle {
    font-size: 2.2rem;
    margin-bottom: 50px;
  }
  .snsGrid a {
    width: 45%;
    height: auto;
  }
  .snsGrid p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .snsGrid a {
    width: 100%;
  }
  .snsGrid img {
  width: 80%;

}
}
