/* ===== 1. 기본 레이아웃 덮어쓰기 ===== */
.table {
    background: none;
    border: none;
    border-radius: 0;
}

.row {
    display: block !important; 
    grid-template-columns: none !important;
    padding: 0 !important;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e2e8f0;
    margin-bottom: 8px; 
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    overflow: hidden;
}

.row > div {
    display: block;
}

/* ===== 2. 아코디언 헤더 (로고 영역) ===== */
.row > div:first-child {
    padding: 12px 15px;
    display: flex !important;
    justify-content: center; /* 로고를 가운데로 정렬 */
    align-items: center;
    position: relative;
    background-color: #f0f7ff; /* 옅은 파란색 배경 */
}

.row > div:first-child a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.row .brand .logo {
    max-height: 24px !important;
}

.accordion-toggle {
    display: inline-block;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.8rem;
    font-weight: 300;
    color: #007bff;
    padding: 5px 10px;
    line-height: 1;
    z-index: 10;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}


/* ===== 3. 아코디언 콘텐츠 (버튼 묶음) ===== */
.row .stack {
    display: none !important; /* 기본 상태에서 '전체'를 강제로 숨김 */
    padding: 12px 15px; 
    border-top: 1px dashed #eee;
    background-color: #fcfdff; 
}

/* 상단 2열 버튼 그리드 */
.row .stack .grid-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px; 
    align-items: stretch;
}

/* 하단 1열 버튼 리스트 */
.row .stack .grid-bottom {
    display: flex;
    flex-direction: column;
    gap: 6px; 
    align-items: stretch;
    margin-top: 6px;
}

/* 모든 버튼 (글씨 가운데 정렬) */
.row .stack .btn {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 12px; 
    font-weight: 600;
    padding: 8px 6px; 
    min-height: 34px; 
}

/* 전화 버튼 (flex 아이템 가운데 정렬) */
.row .stack .btn-call {
    justify-content: center !important;
    font-size: 13px;
    padding-top: 6px; 
    padding-bottom: 6px;
}
.row .stack .btn-call .num {
    margin-left: 8px;
}

/* "전산 접속" 버튼 숨기기 */
.row .stack .btn-primary {
    display: none !important;
}


/* ===== 4. 활성화 상태 ===== */
.row.active .stack {
    display: block !important;
}

/* 아코디언 아이콘 회전 */
.row.active .accordion-toggle {
    transform: translateY(-50%) rotate(45deg);
    color: #dc3545; 
}


/* ===== 5. index.html 모바일 요소 숨기기 ===== */
/* 가로 스크롤 방지 */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
}

/* 주요 컨테이너 요소들 box-sizing */
main, section, div, form, input, select, button {
    box-sizing: border-box !important;
}

/* 모바일에서 숨길 요소들 */
#loss-count, #life-count,
header nav {
    display: none !important;
}

.hero-search .text-xs {
    display: none;
}

.section-head {
    margin: 20px 0 10px;
    text-align: center !important;
}

.section-title {
    font-size: 24px;
    text-align: center !important;
}

/* 히어로 섹션 최적화 */
section.maxw h1 {
    font-size: 24px !important;
    line-height: 1.4 !important;
    padding: 0 10px;
    margin-bottom: 8px;
    text-align: center !important;
}

section.maxw h1 + p {
    font-size: 13px !important;
    padding: 0 10px;
    margin-bottom: 12px;
    text-align: center !important;
}

/* 검색 카드 모바일 최적화 */
.hero-search {
    width: 100% !important;
    padding: 0 !important;
}

.search-card {
    padding: 12px !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

.search-title {
    font-size: 13px !important;
}

.search-card input {
    font-size: 14px !important;
    padding: 10px 12px !important;
}

.search-card .btn {
    font-size: 12px !important;
    padding: 8px 12px !important;
}

/* 검색 카드 안의 작은 버튼들 모바일 최적화 */
.search-actions {
    gap: 8px !important;
    margin-top: 10px !important;
}

.mini-btn {
    font-size: 12px !important;
    padding: 8px 12px !important;
    white-space: nowrap;
}

/* 계산기 섹션 모바일 최적화 */
#calc-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
}

#calc-grid::before {
    display: none !important;
}

/* 계산기 카드 - 잘림 방지 */
#age .calc-card,
#medcalc .mc-card {
    padding: 10px !important;
    max-width: 100% !important;
    width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
}

#age-form input {
    font-size: 14px !important;
    height: 38px !important;
}

#medcalc input[type="text"],
#medcalc input[type="number"] {
    font-size: 14px !important;
    height: 38px !important;
}

.gbtn {
    font-size: 13px !important;
    padding: 10px 14px !important;
}

/* 여백 최소화 및 가운데 정렬 */
.maxw {
    padding-left: 12px !important;
    padding-right: 12px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

section {
    margin-top: 20px !important;
}

/* 계산 패널 섹션 가운데 정렬 */
#calc-panels {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

#calc-panels .section-head {
    width: 100% !important;
    text-align: center !important;
}

#calc-panels #calc-grid {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
}

.panel {
    width: 100% !important;
}

.panel-card {
    width: 100% !important;
    max-width: 100% !important;
}

/* 실손 계산기 selector 박스 */
#medcalc .selector-row {
    width: 100% !important;
    max-width: 100% !important;
    gap: 12px !important;
}

#medcalc .selector-box {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px !important;
}

#medcalc .mc-select {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* 실손 계산기 입력 필드 */
#medcalc input[type="text"],
#medcalc input[type="number"] {
    width: 100% !important;
    max-width: 100% !important;
}

/* 실손 계산기 버튼들 */
#medcalc .gbtn {
    white-space: nowrap !important;
    font-size: 12px !important;
    padding: 8px 12px !important;
}

/* 실손 계산기 고급 설정 */
#medcalc details {
    width: 100% !important;
}

#medcalc details .grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
}

#medcalc details input {
    width: 100% !important;
    max-width: 100% !important;
}

/* 보험나이 계산기 입력 필드 */
#age-form .dob-wrap {
    justify-content: center !important;
    flex-wrap: wrap !important;
}

#age-form input {
    box-sizing: border-box !important;
    max-width: 100px !important;
}

#dobY {
    width: 100px !important;
    max-width: 100px !important;
}

#dobM, #dobD {
    width: 60px !important;
    max-width: 60px !important;
}

/* 보험나이 계산기 버튼 */
#age-form .age-actions {
    flex-wrap: wrap !important;
    gap: 6px !important;
}

#age-form .key {
    min-width: 80px !important;
    flex: 1 !important;
    max-width: 120px !important;
}

/* 계산 결과 카드들 */
#age .card {
    padding: 8px !important;
    font-size: 12px !important;
}

/* ===== 6. index.html '청구닷컴' 로고 가로 정렬 (실패한 코드) ===== */
/* (이전 JS 수정으로 대체되었으므로, CSS는 남겨두거나 지워도 무방합니다) */
header > .maxw {
    justify-content: center !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}
header > .maxw > a[href="/"] {
    writing-mode: horizontal-tb !important;
    transform: none !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    font-size: 20px !important;
}


/*
=========================================
  e-enroll.html 모바일 전용 스타일 (v10 수정)
=========================================
*/
@media (max-width: 767px) {
  
  /* * 1. 확대(줌인) 현상 방지 (필수) */
  html, 
  body.page-enroll {
    min-width: 100% !important;
    width: 100% !important;
    overflow-x: hidden !important;
  }

  /* * 2. 큰 컨테이너들은 1열로 강제 (줌인 방지) */
  .page-enroll main.grid-2,
  .page-enroll #common_2col,
  .page-enroll .compact-grid,
  .page-enroll .row-2col,
  .page-enroll .hero .rows {
    grid-template-columns: 1fr !important; /* 무조건 1열로 변경 */
  }

  /* * 3. (핵심 수정) Key-Value 쌍은 모바일용 2열로 복원 */
  /*
   * '사용기한 | 값' 같이 2열로 나와야 할 항목들입니다.
   * 1열 강제를 해제하고, 모바일에 맞는 2열로 재정의합니다.
   */
  .page-enroll .rowspec .spec,
  .page-enroll .row-kv,
  .page-enroll .kv-mini {
    /* 1열 강제 해제 -> '키'는 자동, '값'은 나머지 2열 */
    grid-template-columns: auto 1fr !important; 
    gap: 12px !important; /* 키/값 사이 간격 */
  }

  /* * 4. (핵심 수정) 값(Value) 텍스트 왼쪽 정렬 */
  /* * site.css에 'text-align: center'가 걸려있어 값(Value) 부분이
   * 가운데 정렬되므로, 이를 왼쪽 정렬로 덮어씁니다.
   */
  .page-enroll .rowspec .spec .val,
  .page-enroll .row-kv .v,
  .page-enroll .kv-mini .v {
    text-align: left !important; /* 왼쪽 정렬! */
    word-break: keep-all; /* 단어 안깨지게 */
  }
  
  /* * 5. (핵심 수정) 키(Key) 칩 스타일 모바일 최적화 */
  /* * '사용기한' 같은 파란색 칩이 너무 넓지 않게 
   * site.css의 min-width: 16rem을 무시합니다.
   */
  .page-enroll .rowspec .spec .key {
     min-width: 0 !important; /* 최소 너비 제한 해제 */
     padding: 6px 10px !important; /* 패딩 살짝 줄임 */
     font-size: 11px !important;
     flex-shrink: 0; /* 찌그러지지 않게 */
  }

  /* * 6. (기존 유지) 헤더 버튼/로고 정리 */
  .page-enroll .quick-nav {
    display: none;
  }
  .page-enroll header.maxw .hstack:nth-of-type(2) {
    flex-wrap: nowrap; 
    gap: 10px !important;
  }
  .page-enroll header.maxw .logo {
    height: 32px !important;
    width: 32px !important;
    border: none !important;
    background: none !important;
    border-radius: 0 !important;
  }
  .page-enroll header.maxw .title {
    font-size: 24px !important;
  }
  .page-enroll .hero {
    padding: 16px;
  }
  .page-enroll .hero .heading {
    font-size: 18px;
    padding: 10px 14px;
  }
}
