/* Footer Styles */
.footer {
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid var(--border-color);
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.8),
    rgba(255, 245, 245, 0.8)
  );
  border-radius: 0 0 15px 15px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-image {
  height: 40px; /* 로고 이미지 크기 축소 */
  width: auto;
  object-fit: contain;
}

.footer-info {
  color: var(--light-text);
  font-size: 0.9rem;
}

/* Media Queries */
@media (max-width: 768px) {
  .footer {
    border-radius: 0;
    margin: 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }

  .footer-logo-image {
    height: 35px; /* 모바일에서 더 작게 조정 */
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 1.5rem 0;
  }

  .footer-logo-image {
    height: 30px; /* 더 작은 화면에서 더욱 작게 조정 */
  }

  .footer-info {
    font-size: 0.8rem;
  }
}
