.footer_wrapper {
  width: 100%;
  background: rgba(240, 242, 247, 0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 80px;
  box-sizing: border-box;
  font-family: "Pretendard", "Poppins", sans-serif;
}

.footer_left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer_text {
  color: #7b818d;
  font-family: Pretendard;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px; /* 100% */
  letter-spacing: -0.42px;
}

.footer_divider {
  margin: 0 8px;
  color: #c0c4cc;
}

.mo_line {
  width: 100%;
  height: 1px;
  background: rgba(187, 193, 206, 0.3);
  display: none;
}

.footer_right {
  font-size: 14px;
  color: #8c929b;
}
.footer_copyright {
  color: #7b818d;
  text-align: right;
  font-family: Pretendard;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px; /* 100% */
  letter-spacing: -0.42px;
}

/* 반응형 */

/* ✅ 모바일 공통 — 0~739px */
@media (max-width: 739px) {
  .footer_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    padding: 40px 28px;
  }

  .footer_left {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 32px;
    flex-direction: column;
  }
  .mo_line {
    display: block;
  }
  .footer_text {
    color: #7b818d;
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px; /* 100% */
    letter-spacing: -0.42px;
  }

  .footer_divider {
    margin: 0 8px;
    color: #c0c4cc;
  }

  .footer_right {
    font-size: 14px;
    color: #8c929b;
  }
  .footer_copyright {
    color: #7b818d;
    text-align: right;
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px; /* 100% */
    letter-spacing: -0.42px;
  }
}

/* ✅ 태블릿 세로(portrait) 전용 — 740~1100px */
@media (min-width: 740px) and (max-width: 1100px) and (orientation: portrait) {
  .footer_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    padding: 40px 32px;
  }

  .footer_left {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 32px;
    flex-direction: column;
  }
  .mo_line {
    display: block;
  }
  .footer_text {
    color: #7b818d;
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px; /* 100% */
    letter-spacing: -0.42px;
  }

  .footer_divider {
    margin: 0 8px;
    color: #c0c4cc;
  }

  .footer_right {
    font-size: 14px;
    color: #8c929b;
  }
  .footer_copyright {
    color: #7b818d;
    text-align: right;
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px; /* 100% */
    letter-spacing: -0.42px;
  }
}
/* ✅ 태블릿 가로(landscape) 전용 — 740~1100px */
@media (min-width: 740px) and (max-width: 1366px) and (orientation: landscape) {
  .footer_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    padding: 40px 32px;
  }

  .footer_left {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 32px;
    flex-direction: column;
  }
  .mo_line {
    display: block;
  }
  .footer_text {
    color: #7b818d;
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px; /* 100% */
    letter-spacing: -0.42px;
  }

  .footer_divider {
    margin: 0 8px;
    color: #c0c4cc;
  }

  .footer_right {
    font-size: 14px;
    color: #8c929b;
  }
  .footer_copyright {
    color: #7b818d;
    text-align: right;
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px; /* 100% */
    letter-spacing: -0.42px;
  }
}
