@charset "EUC-KR";


.sa-footer {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 46px 20px;
}

.sa-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.sa-footer strong {
  font-size: 28px;
  font-weight: 900;
}

.sa-footer p {
  color: #999;
}

.sa-footer__links {
  margin: 24px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sa-footer__links a {
  color: #ccc;
  text-decoration: none;
  font-weight: 700;
}

.sa-footer__links a:hover {
  color: #ffd36b;
}


/* =========================
   FOOTER ICON CARD STYLE
   ========================= */

.sa-footer__links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.sa-footer__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #dfe9ff;
  font-size: 13px;
  font-weight: 700;
  transition: all .2s ease;
}

.sa-footer__card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  transition: all .25s ease;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.5));
}

/* hover È¿°ú */
.sa-footer__card:hover img {
  transform: translateY(-6px) scale(1.08);
  filter: drop-shadow(0 10px 24px rgba(255,211,107,.35));
}

.sa-footer__card:hover span {
  color: #ffd36b;
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 768px) {

  .sa-footer__links {
    gap: 18px;
  }

  .sa-footer__card img {
    width: 56px;
    height: 56px;
  }

  .sa-footer__card span {
    font-size: 12px;
  }

}