/* 📱 모바일·태블릿 전용 css 코드  */
/* 모바일 버전 푸터 */
.footer_logo {
  display: block;
}
.footer_line {
  display: block;
}
@media screen and (max-width: 768px) {
  .footer_logo {
    display: none;
  }
  .footer_line {
    display: none;
  }
  /* 푸터 */
  footer {
    padding: 48px 24px;
  }

  .company_name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 13px;
  }

  .company_info {
    font-size: 13px;
    font-weight: 400;
    line-height: 24px;
  }
  .footer_line {
    width: 100%;
    height: 1px;
    background: #777777;
    margin: 13px 0;
  }

  .company_address {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 24px;
  }

  .copyright {
    font-size: 12px;
    letter-spacing: 0px;
  }

  .version {
    display: none;
  }

  .footer_logo {
    padding-bottom: 13px;
  }
}

/* 테플릿 */

/* ✅ 태블릿 세로(portrait) 전용 — 768~1100px */
@media (min-width: 748px) and (max-width: 1100px) and (orientation: portrait) {
  .footer_logo {
    display: none;
  }
  /* 푸터 */
  footer {
    padding: 56px;
  }

  .company_info {
    font-size: 13px;
    font-weight: 400;
    line-height: 24px;
  }
  .footer_line {
    width: 100%;
    height: 1px;
    background: #777777;
    margin: 13px 0;
  }

  .company_address {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 24px;
  }

  .copyright {
    font-size: 13px;
    letter-spacing: 0px;
  }

  .version {
    display: none;
  }
}

/* ✅ 태블릿 가로(landscape) 전용 — 768~1100px */
@media (min-width: 748px) and (max-width: 1366px) and (orientation: landscape) {
  .footer_logo {
    display: none;
  }
  /* 푸터 */
  footer {
    padding: 56px 56px;
  }

  .company_info {
    font-size: 13px;
    font-weight: 400;
    line-height: 24px;
  }
  .footer_line {
    width: 100%;
    height: 1px;
    background: #777777;
    margin: 13px 0;
  }

  .company_address {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 24px;
  }

  .copyright {
    font-size: 13px;
    letter-spacing: 0px;
  }

  .version {
    display: none;
  }
}
