footer {
  font-family: 'GmarketSansMedium';
  background-color: #ff9a38;
  width: 100%;
  color:#fff;
}

footer .footer_container {
  padding-top: 50px;
  padding-bottom: 50px;
  width: 80%;
  margin: 0 auto;
}

footer .footer_container .footer_title {
  font-weight: 600;
  font-size: 24px;
  padding-bottom: 20px;
}

footer .footer_container .footer_info {
  display: flex;          /* 👉 좌우 2컬럼 유지 */
}

footer .footer_container .footer_info .footer_info_left {
  padding-right: 40px;
  flex: 0 0 auto;         /* 너비는 내용만큼 */
}

footer .footer_container .footer_info .footer_info_right {
  flex: 1 1 0;            /* 나머지 공간 채우기 */
  min-width: 0;           /* 줄바꿈 허용을 위한 안전장치 */
}

footer .footer_container .footer_info .footer_info_left div,
footer .footer_container .footer_info .footer_info_right div{
  padding: 8px 0;
}

/* 🔻 긴 텍스트 줄바꿈 허용 (URL, 주소 등) */
footer .footer_container .footer_info .footer_info_right div {
  word-break: break-all;
  overflow-wrap: anywhere;
}

/* 🔻 모바일 대응 */
@media (max-width: 768px) {
  footer .footer_container {
    width: 92%;           /* 살짝 여유 있게 */
    padding-top: 30px;
    padding-bottom: 30px;
  }

  footer .footer_container .footer_title {
    font-size: 20px;
  }

  footer .footer_container .footer_info .footer_info_left div,
  footer .footer_container .footer_info .footer_info_right div {
    font-size: 13px;
  }
}
