  :root{
    --fg:#1f2937;        /* ?? ?? */
    --muted:#6b7280;     /* ?? ??? */
    --line:#e5e7eb;      /* ??? */
    --bg:#ffffff;        /* ?? */
    --card:#fafafa;      /* ??? ?? */
    --thead:#f1f5f9;     /* ? ?? ?? */
  }

  /* ?? ??? & ?? */
  html, body { height: 100%; }
  body{
    margin:0;
    background: var(--bg);
    color: var(--fg);
    font-family:"Noto Sans KR", sans-serif;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 32px 16px;     /* ?? ?? */
    box-sizing: border-box;
  }

  /* ??? ???(?? ??)? ????? ??? */
  body > table{
    width: 100% !important;       /* width="900" ???? ????? */
    max-width: 980px;             /* ?? ?? ?? ? */
    margin: 0 auto;               /* ??? ?? */
    overflow: hidden;             /* ??? ??? ?? */

  }

  /* ??? ??? ? ?? ?? */
  body > table td{
    padding: 24px;
  }

  /* ?? ?? ?? ?? ?? (?? p ?? ??) */
  p{ margin: 10px 0; }


  /* ???? ????(?? u/strong ??) */
  p u{ text-decoration: none; border-bottom: 3px solid #cbd5e1; padding-bottom: 2px; }
  p strong{ font-weight: 700; }

  /* ?? ?? ‘??/??’ ??? ?? ?? */
  .muted{ color: var(--muted); }

  /* ??? ??? ??? ?(?? ????) ??? */
  /* ??? ??? ??? ?? ?? ???? ?? */
  body > table table{
    width: 100% !important;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 640px;             /* ????? ?? ??? ?? */


    overflow: hidden;
    background: #fff;
    margin: 12px 0 18px;
  }

  body > table table th,
  body > table table td{
    padding: 12px 14px;
    border: 1px solid var(--line);
    vertical-align: top;
    text-align: left;             /* ??? ?? center??? ??? ?? ?? left, ? ??? align ??? ??? ?? */
    font-size: 15px;
  }

  /* ? ?? ?? */
  body > table table tr:first-child th,
  body > table table thead th{
    background: var(--thead);
    font-weight: 700;
    color: #111827;
  }

  /* ??? */
  body > table table tbody tr:nth-child(odd) td{ background:#fcfcfc; }


  /* ?? ??? ??? ?? ??? */
  .table-scroll{
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* ?? ?? ??? ? ?? ?? */
  body > table p + .table-scroll { margin-top: 8px; }

  /* ?? ??? */
  @media print{
    body{ padding:0; }
    body > table{ box-shadow:none; border-color:#ddd; }
  }

  /* ??? ?? ?? */
  @media (max-width: 600px){
    body > table td{ padding: 18px; }
  }





/* ???? ???? ?? ?? */
.policy-history{
  max-width:980px;
  margin:20px auto 0;
  font-size:15px;
}

.policy-history ul{
  list-style:none;
  padding:0;
  margin:0;
}

.policy-history li{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 10px;
  border-bottom:1px solid #e5e7eb;
}

.policy-history .btns{
  display:flex;
  gap:8px;
}

.policy-history .btn{
  padding:6px 14px;
  border:1px solid #cbd5e1;
  border-radius:6px;
  background:#f8fafc;
  text-decoration:none;
  font-size:14px;
  color:#1f2937;
}

.policy-history .btn:hover{
  background:#e2e8f0;
}

.policy-history .btn.outline{
  background:#fff;
}



  /* ===== ?? ??(?? ??) ===== */
    body{
      margin:0;
      padding:24px 12px;
      font-family:"Noto Sans KR", sans-serif;
      color:#111;
    }

    table[width="900"]{
      width:100% !important;
      max-width:900px;
      margin:0 auto;
    }

    h3{
      margin:0 0 6px;
      font-size:20px;
      font-weight:700;
    }

    p{
      margin:0 0 14px;
      color:#4b5563;
      line-height:1.7;
      font-size:14px;
    }

    .sec{ margin-top:10px; }

    /* ? ?? */
    .tbl{
      width:100%;
      border-collapse:collapse;
      table-layout:fixed;
      margin-top:8px;
      border-top:2px solid #0f766e;
    }
    .tbl th, .tbl td{
      border:1px solid #e5e7eb;
      padding:12px 12px;
      vertical-align:middle;
      font-size:14px;
    }
    .tbl th{
      background:#f8fafc;
      font-weight:700;
      text-align:center;
      color:#111827;
      padding:10px 12px;
    }

    /* ?? ???? ??? */
    .bullets{ margin:0; padding-left:18px; }
    .bullets li{ margin:6px 0; line-height:1.6; }
    .center{ text-align:center; color:#374151; font-weight:600; }

    /* “?? ?/?” ??? */
    .compare-head{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:0;
      margin-top:18px;
      border-top:2px solid #0f766e;
    }
    .compare-head div{
      text-align:center;
      font-weight:800;
      padding:10px 0;
      background:#f8fafc;
      border-left:1px solid #e5e7eb;
      border-right:1px solid #e5e7eb;
      border-bottom:1px solid #e5e7eb;
    }
    .compare-head div:first-child{
      border-left:1px solid #e5e7eb;
    }

    /* ====== ??: ?(row) ??? ?/? ?? ====== */
    .compare-body{
      border-left:1px solid #e5e7eb;
      border-right:1px solid #e5e7eb;
      border-bottom:1px solid #e5e7eb;
    }
    .compare-row{
      display:grid;
      grid-template-columns:1fr 1fr;
    }
    .compare-col{
      padding:14px;
      border-top:1px solid #e5e7eb;  /* ? ??? */
    }
    .compare-row:first-child .compare-col{
      border-top:none;               /* ? ?? ? ?? ?? ??? ?? */
    }
    .compare-col.right{
      border-left:1px solid #e5e7eb; /* ??? ?? ?? */
    }

    /* ???(???? ??) */
    .thumb{
      border:1px solid #d1d5db;
      background:#fff;
      padding:10px;
      margin:0;
    }

    /* ?? ??? ?? ??? */
    .table-scroll{
      overflow-x:auto;
      -webkit-overflow-scrolling:touch;
    }

    /* thumb ?? ?? ? 100% */
    .thumb table{
      width:100%;
      border-collapse:collapse;
    }

    /* thumb ?? p ?? ?? ??? ?? ?? ???? */
    .thumb p{ margin:0 0 10px; }

    /* ???: 1?? ?? + ?? ?? */
    @media (max-width:720px){
      .compare-head{ grid-template-columns:1fr; }
      .compare-row{ grid-template-columns:1fr; }
      .compare-col.right{
        border-left:none;
        border-top:1px solid #e5e7eb; /* ?????? ??? ????? ? ??? ?? */
      }
    }