
/* 푸터 전체 컨테이너 설정 */
.site-footer {
    background-color: var(--pm-color-800);
    color: #ffffff;
    padding: 1rem 0;
    }

.footer-inner {
  max-width: 1200px; 
  margin: 0 auto;
  padding: 0 2rem;
}

/* 상단 링크 및 소셜 아이콘 */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.policy-links {
  display: flex;
  align-items: center;
  font-size: 1rem;
  white-space: nowrap;
}

.policy-links li {
  color: #e0e6f2; /* 약간 옅은 흰색 */
  font-size: 0.8rem;
}

.policy-links .separator {
  margin: 0 .5rem;
  color: #8fa7d3; /* 구분선 색상 */
}

.policy-links .highlight {
  color: #ffc83d; /* 개인정보처리방침 노란색 포인트 */
  font-weight: var(--fw-bold);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  font-size: 1rem;
  color: #ffffff;
  transition: opacity 0.3s ease;
}

.social-icons a:hover {
  opacity: 0.7;
}

.social-icons img {
  filter: brightness(0) invert(1);
}

/* 중단 사이트맵 */
.footer-middle {
  display: flex;
  justify-content: flex-start;
  gap: 1rem; 
  margin-bottom: 2.5rem;
}

.sitemap-col h4 {
  font-size: 0.8rem;
  font-weight: var(--fw-bold);
  margin-bottom: 1rem;
}

.sitemap-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sitemap-col a {
  font-size: 0.7rem;
  color: #e0e6f2;
  transition: color 0.3s ease;
}

.sitemap-col a:hover {
  color: #ffffff;
}

/* 하단 사업자 정보 및 로고 */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

/* .company-info {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.8rem;
} */
 .company-info {
        margin-bottom: 1rem;
      
      } 

.info-row {
  display: flex;
  align-items: center;
}

.info-row .title {
  width: 150px;
  color: #e0e6f2;
  font-size: 0.7rem;
}

.info-row .desc {
  width: 150px; 
  font-size: 0.6rem;
}

.footer-logo {
  text-align: right;
}

.footer-logo img {
  object-fit: contain;
}

.footer-logo p {
  font-size:0.5rem;
  color: #e0e6f2;
  text-align: center;

}

/* 4. 최하단 저작권 */
.footer-copyright {
  text-align: center;
  font-size: 0.5rem;
  color: #aebce0;
}


@media (max-width: 1440px) {
        html{
        font-size: var(--basic-font-tab);}}
        .footer-bottom {
          flex-direction: column;}


@media (max-width: 768px) {
        html{
        font-size: var(--basic-font-mo);}
        .footer-middle {
          display: none;}
          
        .footer-top {
          flex-direction: column;
      }
        .social-icons {
          margin-top: 2rem;
      }
          .company-info {
        width: 260px;
    }
    .info-row .title {
      width: 50px;}
    .info-row .desc {
      width: 80px;}
       
    .footer-bottom {
        flex-direction: column;
        align-items: center;}
    .policy-links {
      width: 260px;
    white-space: unset;}
    .policy-links li {
    color: #e0e6f2;
    font-size: 0.7rem;
}
}
  