/* 상담안내 플로팅 위젯 */
.cgcf-widget{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999999;
  width: 280px;
  max-width: calc(100vw - 36px);
  background: #fff;
  border: 1px solid rgba(17,24,39,.12);
  border-radius: 14px;
  padding: 16px 18px; /* 상하 여백 살짝 */
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center; /* 전체 가운데 정렬 */
  text-align: center;  /* 텍스트 가운데 정렬 */
  gap: 0;
  cursor: default; /* PC에서 클릭 반응 느낌 제거 */
  font-family: "Apple SD Gothic Neo","Malgun Gothic","맑은 고딕","Noto Sans KR",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.cgcf-ico{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2px 0 10px;
}

.cgcf-title{
  display: block;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.15;
  color: #111827;
  margin: 0 0 8px;
}

.cgcf-sub{
  display: block;
  font-size: 14px;      /* 문구 살짝 키움 */
  line-height: 1.25;
  color: #4b5563;
  font-weight: 600;     /* 살짝 두껍게 */
  margin: 0 0 12px;
}

.cgcf-subLine{ display:block; }

.cgcf-divider{
  width: 100%;
  height: 1px;
  background: rgba(17,24,39,.14);
  margin: 4px 0 12px; /* 상하 여백 */
}

.cgcf-num{
  display: block;
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
  color: #f3b400;
  letter-spacing: -0.4px;
  margin: 0 0 4px;
}

/* 모바일: 하단 고정 + 터치 시 전화 연결 */
@media (max-width: 767px){
  .cgcf-widget{
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    padding: 12px 14px;
    box-shadow: 0 -10px 30px rgba(0,0,0,.12);
    cursor: pointer;
  }
  .cgcf-ico{ margin: 0 0 6px; }
  .cgcf-title{ font-size: 17px; margin: 0 0 6px; }
  /* 모바일에서는 안내 문구(궁금하신 사항은 ~) 숨김 */
  .cgcf-sub{ display:none !important; }
  .cgcf-num{ font-size: 22px; margin: 0; }
  /* Baa8Bc14C77cC5d0C11cB294 Ad6cBd84C120B3c4 C228Ae40 */
  .cgcf-divider{ display:none !important; }
  .cgcf-ico svg{ width: 34px; height: 34px; }
}
