/* 일반 사이트 footer(components/site-common.css)와 동등한 정보 레이아웃 — TEST ti 셸 전용 */
/* 마크업은 ti-footer--slot-pc(좌측 시간표 아래, PC만) + ti-footer--slot-mobile(본문 아래, 모바일만) 이중 슬롯.
   내용은 partials/site-footer.html 한 파일만 수정하면 됨(data-ti-site-footer 로 동시 주입). */

.ti .footer.footer--slot-pc {
  flex: 0 0 auto;
  min-width: 0;
  margin-top: auto;
}

@media (max-width: 820px) {
  .ti .footer.footer--slot-pc {
    display: none !important;
  }
}

@media (min-width: 821px) {
  .ti .footer.footer--slot-mobile {
    display: none !important;
  }
}

/* figma/gnb.css SNB footer — white bg, 40×24 padding, column layout */
.ti .footer.site-footer {
  box-sizing: border-box;
  padding: 40px 24px;
  background: #ffffff;
  border-top: 1px solid #e2e2e2;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: #595959;
}

@media (min-width: 821px) {
  .ti .footer.site-footer {
    border-right: 1px solid #e2e2e2;
  }
}

.ti .footer.site-footer .biz {
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.ti .footer.site-footer .footer-logo-box {
  flex-shrink: 0;
  align-self: flex-start;
  display: block;
  box-sizing: border-box;
  width: 88px;
  height: 32px;
  max-width: none;
  aspect-ratio: auto;
  padding: 0;
  margin: 0;
  line-height: 0;
  background: transparent;
  overflow: hidden;
}

.ti .footer.site-footer .footer-logo-box img {
  display: block;
  width: 88px;
  height: 32px;
  max-width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  object-fit: contain;
  object-position: left center;
}

.ti .footer.site-footer .footer-text {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.ti .footer.site-footer .footer-meta {
  margin: 0;
  line-height: 1.35;
}

.ti .footer.site-footer .footer-meta--org {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.ti .footer.site-footer .footer-meta__sep {
  color: #b3b3b3;
}

.ti .footer.site-footer .footer-text .copyright {
  margin: 0;
  color: #808080;
}

.ti .footer.site-footer .footer-sns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin: 0;
  font-size: 12px;
  line-height: 1;
  color: #404040;
}

.ti .footer.site-footer .footer-sns__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #404040;
  text-decoration: none;
  white-space: nowrap;
}

.ti .footer.site-footer .footer-sns__link:hover,
.ti .footer.site-footer .footer-sns__link:focus-visible {
  color: #111111;
  text-decoration: none;
}

.ti .footer.site-footer .footer-sns__link:hover .footer-sns__icon-wrap,
.ti .footer.site-footer .footer-sns__link:focus-visible .footer-sns__icon-wrap {
  background: #d4d4d4;
}

.ti .footer.site-footer .footer-sns__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e2e2e2;
}

.ti .footer.site-footer .footer-sns__icon {
  flex-shrink: 0;
  display: block;
  width: 12px;
  height: 12px;
  color: #808080;
}

.ti .footer.site-footer .footer-sns__handle {
  font-weight: 400;
  letter-spacing: 0;
}

.ti .footer.site-footer .footer-sns__sep {
  display: none;
}

@media (max-width: 820px) {
  .ti .footer.site-footer {
    border-top: 1px solid #e2e2e2;
  }
}
