/* 서브 페이지 상단 bar */
.page-topbar {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
  height: 8em;
  background: #fff;
  display: flex;
  align-items: center;
}
.page-topbar__back {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  height: 1.8rem;
}
.page-topbar__back img {
  height: 100%;
}
.page-topbar h1 {
  text-align: center;
  width: 100%;
  font-size: 2.3rem;
  font-weight: 700;
}

/*********************
     legal.php 
*********************/
/* 전체 리스트 컨테이너 */
.legal-desc {
  width: 100%;
}
.legal-desc p {
  width: 100%;
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.02rem;
}
.legal-desc p b {
  color: #fba31e;
  font-weight: 600;
}
.bac-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.legal-desc + .accordion-list {
  margin-top: 4rem;
}

/*********************
     action.php 
*********************/
.chk-wrap {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.chk-wrap h5 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.chk-wrap h5 i {
  width: 1rem;
}
.chk-wrap h5 i img {
}
.chk-wrap span {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.01rem;
}

.chk-wrap p {
  margin-left: 1.6rem;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #999;
  letter-spacing: 0.001rem;
}
.chk-wrap a {
  padding: 0.4rem 1.8rem;
  margin-left: 1.6rem;
  width: fit-content;
}

/*********************
     아코디언 공통 
*********************/
.accordion-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 2rem;
}

/* 개별 아코디언 아이템 영역 */
.accordion-item {
  width: 100%;
}
/* 아코디언 탭 (클릭 영역 전체) */
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 7rem;
  padding: 0 2rem;
  background: #f4f4f4;
  border-radius: 1rem;
  margin: 0;
  width: 100%;
}

/* 탭 좌측 제목 */
.accordion-header .title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  letter-spacing: 0.02rem;
}

/* 탭 우측 아이콘 (+, -) */
.accordion-header .icon {
  width: 2rem;
}

/* 펼쳐지는 내용 패널 영역 */
.accordion-panel {
  display: none; /* jQuery slideDown 동작을 위해 초기 숨김 필수 */
  padding: 2rem;
}

/* (내용 내) 혈중알코올농도 정보 영역 */
.accordion-panel .bac-info strong {
  font-size: 1.4rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 0.6rem;
  display: block;
}

/* (내용 내) 관련 처벌 등 상세 내용 영역 */
.accordion-panel .content-info {
  font-size: 1.4rem;
  color: #444;
  line-height: 1.4;
  letter-spacing: 0.02rem;
}

/*************************
        하단 링크 공통
*************************/
.link-wrap {
  width: 100%;
  margin-top: 4rem;
}
.link-wrap a {
  display: flex;
  width: 100%;
  padding: 3rem 2rem;
  background: #fffae7;
  align-items: center;
  justify-content: space-between;
  border-radius: 1rem;
}
.link-wrap a .left {
}
.link-wrap a .left span {
  font-size: 1.5rem;
}
.link-wrap a .left h3 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.01rem;
  margin-top: 0.6rem;
}
.link-btn {
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 2rem;
  text-align: center;
  background: #fba31e;
  letter-spacing: 0.02px;
  font-size: 1rem;
  cursor: pointer;
  width: 5.5rem !important;
  height: 2.5rem;
  font-size: 1.2rem !important;
  font-weight: 500;
  padding: 0 !important;
  line-height: 2.5rem;
}
