.cs-wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 26px 16px 22px;
  font-family: system-ui, -apple-system, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  color:#222;
}

.cs-call-banner{
  background:#efefef;
  padding: 40px 20px;
  display:flex;
  justify-content:center;
}

.cs-call-inner{
  display: flex;
  flex-direction: column;   /* ← 핵심 */
  align-items: center;      /* 가운데 정렬(선택) */
  gap: 12px;                /* 위/아래 간격 */
}
.cs-call-main{
  display:grid;
  grid-template-columns: auto 1fr;
  gap:30px;
}
.cs-call-icon{
  display:flex;
  align-items:center;
  justify-content:center;
}
.cs-headset{
  width: 80px;
  /*height: 70px;*/
  object-fit: contain;
}

html body .pretendard,
html body .pretendard *{
  font-family: 'Pretendard', sans-serif !important;
  font-weight: 600 !important;
}

.cs-phone{
  font-size: 60px;
  letter-spacing: -0.8px;
  line-height: 1;
  font-family: 'Pretendard', sans-serif;
}
.cs-phone a{ color:#333; text-decoration:none; }
.cs-phone a:hover{ /*text-decoration: underline;*/ text-decoration: none; }

.cs-call-sub{
  margin-top: 6px;
  font-size: 20px;
  color:#444;
}

.cs-guide{
  margin: 50px;
  line-height: 1.55;
}

.point{
  color:#63021a;
  font-weight: 800;
}

/* ===== 하단 ===== */
.cs-divider{
  margin: 70px 0 40px;
  border:0;
  border-top:1px solid rgba(0,0,0,.22);
}

.cs-notice{
  margin: 0;
  padding-left: 18px;
  font-size: 17px;
  line-height: 1.8;
  color:#333;
}

/* ===== PC에서만 조금 키우기 ===== */
@media (min-width: 900px){
  .cs-phone{ font-size: 80px; }
  .cs-guide{ margin: 50px; line-height: 1.55; }
  .cs-pill{ height: 58px; font-size: 18px; }
  .cs-pill__icon{ width: 34px; height: 34px; }
  .cs-call-banner{ padding: 80px 20px; }
}

/* 아주 작은 화면(아이폰 SE급)에서 글자 줄임 */
@media (max-width: 360px){
  .cs-pill{ font-size: 14px; gap:8px; }
  .cs-pill__icon{ width: 26px; height: 26px; }
}


/* ===== 추가 ===== */
/* 2개 카드 가로 배치 */
.cs-cards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  width: 80%;
  margin: 0 auto;
}

/* 카드 공통 */
.cs-card{
  display:block;
  border-radius: 10px;
  overflow:hidden;
  text-decoration:none;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 5px 11px rgba(0, 0, 0, .03);
  background:#fff;
  transform: translateZ(0);
}

.cs-card:active{ transform: translateY(1px); }

/* 헤더 */
.cs-card__head{
  height: 78px; 
  display:flex;
  align-items:center;
  gap: 14px;
  padding: 0 22px;
  justify-content: center;
}

.cs-card__icon{
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.cs-card__title{
  font-weight: 700;
  font-size: 30px; /*pc*/
  letter-spacing: -0.6px;
  line-height: 1;
  white-space: nowrap;
  font-family: 'Pretendard', sans-serif !important;
}

@media (max-width: 1024px) and (min-width: 768px){
  .cs-card__title{
    font-size: 23px;   /* 태블릿 */
  }
}
/* 바디 */
.cs-card__body{
  padding: 30px 20px;
  border-top: 1px solid rgba(0,0,0,.08); /* 헤더-바디 경계선 */
  display:flex;
  justify-content:center;
  background: #f6f6f6;
}

/* 가운데 버튼(입체) */
.cs-card__btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width: min(420px, 88%);
  height: 60px;
  border-radius: 10px;
  font-weight: 600; /*pc*/
  font-size: 25px; /*pc*/
  letter-spacing: -0.2px;
  border: 1px solid rgba(0, 0, 0, .05);
  box-shadow: 0 3px 7px rgba(0, 0, 0, .10);
}

@media (max-width: 1024px) and (min-width: 721px){
.cs-card__btn{
    font-size: 20px;   /* 태블릿 */
    font-weight: 600; /* 태블릿 */
  }
}

/* 카카오 테마 */
.cs-card--kakao .cs-card__head{
  background: #f7d600;
}
.cs-card--kakao .cs-card__title{ color:#381e1f; }

.cs-card--kakao .cs-card__body{
  background: #fbf6dd;
}
.cs-card__btn--kakao{
  background:#f7d600;
  color:#381e1f;
}

/* 네이버 테마 */
.cs-card--naver .cs-card__head{
  background: #18b04a;
}
.cs-card--naver .cs-card__title{ color:#fff; }

.cs-card--naver .cs-card__body{
  background: #eaf7ee;
}
.cs-card__btn--naver{
  background:#18b04a;
  color:#fff;
}

ul.cs-notice{
  list-style: disc;
  padding-left: 150px;
  list-style-position: inside;
}

ul.cs-notice > li{
  list-style: disc;
}

@media (max-width: 720px){
  ul.cs-notice{
    padding-left: 30px;  /* 모바일 */
  }
.cs-notice{
  font-size: 12px;
}
.cs-call-sub{
  font-size: 15px;
}
.cs-headset {
    width: 50px;
}
.cs-phone    {
font-size: 40px;
}
.cs-call-main{
gap: 10px;
}
.cs-divider {
margin: 40px 0 30px;
}
.cs-guide {
    margin: 30px 10px;
        font-size: 13px;
}
}
/* 반응형: 모바일에서 1줄(원하면 2줄 유지로 바꿀 수 있음) */
@media (max-width: 720px){
  .cs-cards{
    grid-template-columns: 1fr;   /* 모바일 1개씩 */
    gap: 14px;
  }
  .cs-card__title{ font-size: 24px; }
  .cs-card__head{ height: 72px; }
}


/*모바일*/
.cs-pills{
  display:flex;
  gap:10px;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
}

.cs-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  height:45px;
  padding:0 20px;
  border-radius:12px;
  text-decoration:none;
  font-weight:600;
  font-size:12px;
  border:1px solid rgba(0,0,0,.10);
  box-shadow:0 8px 14px rgba(0,0,0,.10);
  white-space:nowrap;
}

.cs-pill__icon{
  width:26px;
  height:26px;
  object-fit:contain;
}

.cs-pill--kakao{ background:#f7d600; color:#1d1d1d; }
.cs-pill--naver{ background:#18b04a; color:#fff; }

/* 밑줄 방지 */
.cs-pills a,
.cs-pills a:hover{ text-decoration:none; }

/* ===== PC/모바일 노출 제어 (맨 아래에 두는 게 안전) ===== */
.cs-only-mo{ display:none !important; }
.cs-only-pc{ display:block !important; }

@media (max-width: 720px){
  .cs-only-pc{ display:none !important; }
  .cs-only-mo{ display:block !important; }
}
