/* ===============================
   제보하기 안내 영역 전체 스타일
=============================== */

/* 전체 영역 (좌우 꽉 차게) */
.report_intro{
  width: 100%;
  margin: 0 0 30px;
  padding: 0;
  box-sizing: border-box;
}

/* 내부 정렬 컨테이너 */
.report_inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px 30px;
  box-sizing: border-box;
}

/* 설명 글 */
.report_desc{
  margin: 14px 0 22px;
  font-size: 16px;
  line-height: 1.75;
  color:#333;
}

/* 아이콘 목록 */
.report_icon_grid{
  list-style:none;
  padding:0;
  margin: 0 0 56px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 36px;
}

.report_icon_grid li{
  display:flex;
  align-items:center;
  gap: 12px;
  font-size: 16px;
  color:#222;
  min-height: 30px;
}

.report_icon_grid .ico{
  width: 32px;
  height: 22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid #cfd6dd;
  border-radius: 3px;
  background:#fff;
  box-sizing:border-box;
}

.report_icon_grid .ico i{
  font-size: 15px;
  color:#111;
  opacity:.85;
}

/* 섹션 타이틀 */
.report_section_title{
  position: relative;
  margin: 26px 0 0px;
  padding-left: 16px;
  font-size: 18px;
  font-weight: 900;
  color:#111;
}

.report_section_title:before{
  content:"";
  position:absolute;
  left:0; 
  top:50%;
  transform: translateY(-50%);
  width: 4px;
  height: 16px;
  border-radius: 2px;
  background:#2aaea1;
}

/* 처리절차 */
.report_process{
  list-style:none;
  padding:0;
  margin: 0 0 20px;
  display:flex;
  gap: 20px;
  align-items:flex-start;
  flex-wrap: wrap;
}

.report_process li{
  position: relative;
  width: 130px;
  text-align:center;
}

.report_process .step_label{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 24px;
  padding: 0 14px;
  border-radius: 999px;
  background:#2aaea1;
  color:#fff;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 8px;
}

.report_process .step_box{
  height: 58px;
  border: 2px solid #2aaea1;
  border-radius: 8px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 15px;
  font-weight: 800;
  color:#111;
}

/* 스텝 연결선 */
.report_process li:not(:last-child)::after{
  content:"";
  position:absolute;
  top: 46px;
  right: -20px;
  width: 20px;
  height: 2px;
  background:#2aaea1;
  opacity:.35;
}

.report_process li:not(:last-child)::before{
  content:"";
  position:absolute;
  top: 41px;
  right: -24px;
  border-left: 8px solid #2aaea1;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  opacity:.35;
}

/* STEP4 포인트 화살표 */
.report_process li.is_focus .focus_arrow{
  margin-top: 10px;
  font-size: 22px;
  color:#2aaea1;
  line-height: 1;
}

/* 안내 문구 */
.report_notice{
  font-size: 15px;
  line-height: 1.9;
  color:#333;
}

.report_notice p{
  margin: 14px 0 10px;
}

/* ===============================
   하단 버튼 영역 (크게 강조)
=============================== */

.report_btns{
  margin-top: 50px;
  display:flex;
  justify-content:center;
  gap: 24px;
  flex-wrap: wrap;
}

.report_btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 60px;
  min-width: 280px;
  padding: 0 40px;
  border: 2px solid #bfc7cf;
  border-radius: 999px;
  background: #fff;
  color:#222;
  font-size: 18px;
  font-weight: 800;
  text-decoration:none;
  box-sizing:border-box;
  letter-spacing: -0.02em;
  transition: transform .08s ease, box-shadow .15s ease, border-color .15s ease;
}

.report_btn:hover{
  border-color:#7f8a96;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transform: translateY(-1px);
}

/* 강조 버튼 (제보하기) */
.report_btn.is_primary{
  background:#2aaea1;
  border-color:#2aaea1;
  color:#fff;
}

.report_btn.is_primary:hover{
  box-shadow: 0 8px 18px rgba(42,174,161,0.25);
}

/* ===============================
   반응형
=============================== */

@media (max-width: 900px){
  .report_icon_grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report_process li{
    width: 48%;
  }

  .report_process li::before,
  .report_process li::after{
    display:none;
  }
}

@media (max-width: 480px){
  .report_inner{
    padding: 0 18px 26px;
  }

  .report_icon_grid{
    grid-template-columns: 1fr;
  }

  .report_btn{
    width: 100%;
    min-width: 0;
    height: 58px;
    font-size: 17px;
  }
}


/* ===============================
   제보 접수결과 확인 영역
   (제보하기 페이지와 톤 통일)
=============================== */

.report_intro{
  width: 100%;
  margin: 0 0 30px;
  padding: 0;
  box-sizing: border-box;
}

.report_inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px 30px;
  box-sizing: border-box;
}

/* 타이틀 (제보하기와 동일 톤) */
.report_result_title{
  margin: 26px 0 14px;
  padding-left: 16px;
  position: relative;
  font-size: 22px;
  font-weight: 900;
  color:#111;
}

.report_result_title:before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  transform: translateY(-50%);
  width:4px;
  height:16px;
  border-radius:2px;
  background:#2aaea1;
}

/* 설명문 */
.report_result_desc{
  margin: 0 0 30px;
  font-size: 16px;
  line-height: 1.8;
  color:#444;
}

/* 폼 영역 */
.report_result_form{
  margin-top: 20px;
}

/* 한 줄 정렬 */
.report_result_row{
  display:flex;
  align-items:center;
  gap: 20px;
  flex-wrap: wrap;
}

/* 라벨 */
.report_result_label{
  min-width: 100px;
  font-size: 15px;
  font-weight: 800;
  color:#111;
}

.report_result_label .req{
  color:#2aaea1;
  font-weight: 900;
  margin-left: 3px;
}

/* 인풋 + 버튼 */
.report_result_field{
  display:flex;
  align-items:center;
  gap: 14px;
  flex: 1 1 600px;
}

/* 인풋 크게 */
.report_result_input{
  flex: 0 1 420px;
  height: 48px;
  padding: 0 16px;
  border: 2px solid #d8dde3;
  border-radius: 6px;
  font-size: 16px;
  color:#222;
  box-sizing:border-box;
}

.report_result_input:focus{
  border-color:#2aaea1;
  outline:none;
}

.report_result_input::placeholder{
  color:#a0a7b0;
}

/* 결과확인 버튼 (제보하기 버튼과 유사 크기) */
.report_result_btn{
  height: 48px;
  min-width: 140px;
  padding: 0 24px;
  border: 2px solid #2aaea1;
  background: #2aaea1;
  color:#fff;
  font-size: 16px;
  font-weight: 800;
  border-radius: 999px;
  cursor: pointer;
  transition: all .15s ease;
}

.report_result_btn:hover{
  background:#23998d;
  border-color:#23998d;
  box-shadow: 0 6px 16px rgba(42,174,161,0.25);
}

.report_result_row{
  display:flex;
  align-items:center;
  gap: 20px;
  flex-wrap: wrap;
}

.report_result_row + .report_result_row{
  margin-top: 16px;
}

/* 반응형 */
@media (max-width: 600px){
  .report_inner{
    padding: 0 18px 26px;
  }

  .report_result_row{
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .report_result_label{
    min-width: 0;
  }

  .report_result_field{
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .report_result_input,
  .report_result_btn{
    width: 100%;
    height: 52px;
    font-size: 17px;
  }
}
