/* Footer */
.main-footer {
  width: 100%;
  /* max-width: 1400px; */
  margin: 0 auto; /* 상하 마진은 0, 좌우 마진은 auto로 설정하여 중앙 정렬 */
  height: 101px;
  background: #C0C0C0;
  display: flex;
  justify-content: center; /* 내용 가운데 정렬 */
  align-items: center; /* 세로 가운데 정렬 */
  position: relative; /* absolute 자식 요소를 위한 기준점 */
}

/* Footer Content */
.footer-content {
  display: flex;
  justify-content: center; /* 내용 가운데 정렬 */
  align-items: center; /* 세로 가운데 정렬 */
  width: 463px; /* Group 11의 width */
  height: 35px; /* Group 11의 height */
}

/* Copyright Text */
.copyright {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 35px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin-left: auto; /* 로고를 왼쪽으로 밀고 남은 공간을 모두 차지 */
}

/* Logo */
.footer-logo {
  width: 110.71px;
  height: 22px;
}

.footer-logo img {
  width: 100%; /* 이미지 너비를 부모 요소에 맞춤 */
  height: auto; /* 높이를 자동으로 조정 */
}

@media (max-width: 768px) {
  .main-footer {
    height: 80px !important;
    min-height: 80px !important;
    background: #C0C0C0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
  .footer-content {
    width: 100vw !important;
    height: auto !important;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 8px;
  }
  .footer-logo {
    margin: 0 auto;
    display: block;
  }
  .copyright {
    margin-left: 0 !important;
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
  }
}