/* footer.css - 푸터 관련 전용 스타일 */
.footer {
    background-color: #f8f9fa;
    padding: 8px 0;
    width: 100%;
    border-top: 1px solid #dee2e6;
    font-size: 0.85rem;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    color: #666;
  }
  
  /* 카피라이트 문구 */
  .footer-copyright {
    text-align: center;
    margin: 0 0 6px 0;
    font-weight: 500;
    color: #333;
    font-size: 0.85rem;
  }
  
  /* 오른쪽에 링크 배치 (float 또는 text-align 으로 조정) */
  .footer-links {
    float: right; /* 또는 text-align: right; */
  }
  
  .footer-links a {
    color: #0066cc;
    text-decoration: none;
    font-size: 0.85rem;
    margin-left: 15px;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }
  
  /* 하단 정보 (회사명, 사업자등록번호 등) */
  .footer-info {
    text-align: center;
    line-height: 1.3;
  }
  
  .footer-info-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 12px;
    margin-bottom: 2px;
  }
  
  .footer-info-item {
    position: relative;
    white-space: nowrap;
    font-size: 0.85rem;
  }
  
  .footer-info-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 10px;
    background-color: #ddd;
  }
  
  /* 모바일 대응 */
  @media (max-width: 768px) {
    .footer {
      padding: 6px;
    }
  
    /* float 제거하고 중앙 정렬 */
    .footer-links {
      float: none;
      text-align: center;
      margin-bottom: 8px;
    }
  
    .footer-links a {
      margin-left: 8px;
      margin-right: 8px;
    }
  
    .footer-info-row {
      flex-direction: column;
      gap: 3px;
    }
  
    .footer-info-item:not(:last-child)::after {
      display: none;
    }
  }
  