/* footer.css */

.site-footer {
    background: #f4f4f4;
    padding: 30px 0;
    line-height: 1;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
}

.footer-logo {
    display: block;
    width: 200px;
    margin-bottom: 30px;
}

.footer-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 14px;
}

.footer-info-title {
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-info-item {
    display: flex;
    gap: 40px;
}

.footer-info-item dt {
    min-width: 60px;
}

.footer-nav {
    display: flex;
    gap: 25px;
}

.footer-nav a {
    font-weight: 500;
}

.footer-nav a:hover {
    opacity: 0.5;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid #D9D9D9;
    font-size: 13px;
}

.footer-legal {
    display: flex;
    gap: 8px;
}

.footer-legal a:hover {
    color: #1a1a1a;
}

.footer-legal a + a::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 16px;
    background: #e0e0e0;
    margin-right: 8px;
    vertical-align: middle;
}




/* =========================
   MOBILE FOOTER
   375 기준 / inner 343
   PC 절대 영향 없음
========================= */

@media screen and (max-width: 767px) {
  .site-footer {
    padding: 32px 0 34px;
  }

  .site-footer .container {
    width: 100%;
    max-width: 343px;
    margin: 0 auto;
    padding: 0;
  }

  .footer-inner {
    padding-bottom: 34px;
  }

  .footer-logo {
    width: 178px;
    margin-bottom: 36px;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 42px;
    font-size: 14px;
  }

  .footer-info-title {
    margin: 0 0 28px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
  }

  .footer-info-list {
    gap: 8px;
    margin: 0;
  }

  .footer-info-item {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 26px;
    align-items: start;
  }

  .footer-info-item dt {
    min-width: 0;
    color: #777;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
    text-transform: uppercase;
  }

  .footer-info-item dd {
    margin: 0;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    word-break: keep-all;
  }

  .footer-nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    width: 100%;
  }

  .footer-nav a {
    display: flex;
    align-items: center;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
  }

  .footer-nav a + a::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 14px;
    margin: 0 11px;
    background: #d9d9d9;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;

    padding: 0;
    border-top: 0;
    font-size: 14px;
  }

  .footer-legal {
    display: flex;
    gap: 0;
  }

  .footer-legal a {
    display: flex;
    align-items: center;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
  }

  .footer-legal a + a::before {
    width: 1px;
    height: 14px;
    margin: 0 13px;
    background: #d9d9d9;
  }

  .footer-copy {
    margin: 0;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
  }
}

