/* Footer Styles */
.site-footer {
  padding: 60px 80px 100px;
  border-top: 1px solid #e0e0e0;
  background-color: #fff;
}

.site-footer .footer-content {
  display: flex;
  flex-direction: column;
}

.site-footer .footer-content .footer-top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-footer .footer-content .footer-middle-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  font-weight: 500;
  font-size: 16px;
  color: #111;
  line-height: 2;
  letter-spacing: -0.01em;
}

.site-footer .footer-content .footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

.site-footer .footer-content .footer-bottom-content .footer-bottom-content-right-menu {
  display: flex;
  gap: 24px;
  font-weight: 600;
  font-size: 16px;
  color: #111;
}

.site-footer .footer-content .footer-bottom-content .footer-bottom-content-right-menu a {
  color: #111;
  text-decoration: none;
}

.site-footer .footer-sns-list {
  display: flex;
  gap: 32px;
}

.site-footer .footer-sns-list .footer-sns-list-item a {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 24px;
  height: 24px;
  font-weight: 500;
  font-size: 14px;
  color: #333;
}

/* 중앙 정렬 케이스 */
.site-footer.footer-center-align .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-footer.footer-center-align .footer-sns {
  margin-bottom: 40px;
}

.site-footer.footer-center-align .footer-logo {
  margin-bottom: 20px;
}

.site-footer.footer-center-align .footer-info {
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 16px;
  color: #111;
  line-height: 2;
  letter-spacing: -0.01em;
  text-align: center;
}

.site-footer.footer-center-align .footer-copyright {
  margin-bottom: 40px;
  font-weight: 400;
  font-size: 15px;
  color: #111;
  letter-spacing: -0.01em;
  text-align: center;
}

.site-footer.footer-center-align .footer-bottom-menu {
  display: flex;
  gap: 24px;
  font-weight: 600;
  font-size: 16px;
  color: #111;
}

/* 좌측 정렬 케이스 */
.site-footer.footer-left-align .footer-content {
  max-width: 1280px;
  margin: 0 auto;
}

/* 반응형 - 모바일 */
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 20px 60px;
  }

  .site-footer .footer-content .footer-top-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .site-footer .footer-content .footer-middle-content {
    flex-direction: column;
    align-items: flex-start;
    font-size: 14px;
  }

  .site-footer .footer-content .footer-bottom-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .site-footer .footer-content .footer-bottom-content .footer-bottom-content-right-menu {
    gap: 16px;
    font-size: 14px;
  }

  .site-footer .footer-sns-list {
    gap: 20px;
  }
}

/* 반응형 - 태블릿 */
@media (min-width: 769px) and (max-width: 1279px) {
  .site-footer {
    padding: 50px 40px 80px;
  }
}

/* Company Info 반응형 */
@media (min-width: 1280px) {
  .company-info-mobile {
    display: none;
  }
}

@media (max-width: 1279px) {
  .company-info-pc {
    display: none;
  }
}
