/* footer.css */
.main-footer {
  background: #0f1117;
  color: #ddd;
  padding: 4em 0 2em;
  font-family: 'Pretendard', sans-serif;
}

.footer-inner {
  max-width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2em;
}




/* ========================
   브랜드 영역
======================== */
.footer-brand {
  flex: 1 1 30%;
  min-width: 200px;
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.6em;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #bbb;
}

/* ========================
   링크 그룹
======================== */
.footer-links {
  display: flex;
  flex: 1 1 60%;
  justify-content: space-between;
  gap: 3em;
  flex-wrap: wrap;
}

.footer-section h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1em;
}

.footer-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-section li {
  margin-bottom: 0.6em;
}

.footer-section a {
  color: #bbb;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-section a:hover {
  color: #6bbf59;
}

/* ========================
   하단 카피라이트
======================== */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3em;
  padding-top: 1.5em;
  text-align: center;
  color: #aaa;
  font-size: 0.85rem;
}

/* ========================
   반응형
======================== */
@media screen and (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    gap: 2em;
  }

  .footer-brand {
    margin-bottom: 2em;
  }
}
