 .passrate-info {
    background: #1D1B20;
    padding: 60px 0;
  }
  .passrate-info .sub-title,
  .passrate-info h6 {
    color: #fff;
  }
  .passrate-info .sub-title {
    padding-top: 0;
  }
  .passrate-info .c-pm {
    color: #FF6B00;
  }

  /* 상단 헤더 + 범례 */
  .pr-head-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
  }
  .pr-legend {
    color: #A9A9AE;
    white-space: nowrap;
  }
  .pr-legend .pr-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    margin: 0 4px 0 14px;
    vertical-align: middle;
  }
  .pr-legend .pr-dot:first-child {
    margin-left: 0;
  }
  .pr-legend .pr-dot-other {
    background: #8B8C90;
  }
  .pr-legend .pr-dot-kd {
    background: #FF6B00;
  }
  .pr-foot {
    color: #fff;
    font-size: 13px;
    margin-top: 6px;
  }

  /* 합격률 카드 그리드 (데스크톱) */
  .pr-chart {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    list-style: none;
    margin: 0 0 8px;
    padding: 0;
  }
  .pr-chart > li {
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    background: #343138;
    text-align: center;
    padding: 20px 10px 16px;
    min-width: 0;
  }
  .pr-mobile-row {
    display: contents;
  }
  .pr-icon-mobile {
    display: none;
  }
  .pr-axis {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .pr-bar-row {
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
  .pr-icon-desktop img,
  .pr-icon-desktop {
    width: 24px;
    height: 24px;
    flex: none;
  }
  .pr-cert-name {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    min-width: 0;
    font-size: 15px;
  }
  .pr-cert-name .pr-ct {
    min-width: 0;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: anywhere;
    line-height: 1.3;
  }

  /* 막대그래프 */
  .pr-bar-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
    height: 110px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }
  .pr-bar {
    width: 30px;
    border-radius: 4px 4px 0 0;
    position: relative;
  }
  .pr-bar span {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
  }
  .pr-bar-other {
    background: #8B8C90;
  }
  .pr-bar-other span {
    color: #D5D5D8;
  }
  .pr-bar-kd {
    background: linear-gradient(180deg, #FF8A3D, #FF6B00);
  }
  .pr-bar-kd span {
    color: #FFB27A;
  }

  /* 막대 높이 유틸리티 (인라인 style 대체) */
  .pr-h-78 { height: 78%; }
  .pr-h-80 { height: 80%; }
  .pr-h-82 { height: 82%; }
  .pr-h-85 { height: 85%; }
  .pr-h-88 { height: 88%; }
  .pr-h-90 { height: 90%; }
  .pr-h-91 { height: 91%; }
  .pr-h-93 { height: 93%; }

  /* 시험일정 표 */
  .pr-schedule-title {
    margin-top: 40px;
    margin-bottom: 16px;
    font-size: 18px;
  }
  .pr-schedule-wrap {
    background: #343138;
    border-radius: 16px;
    padding: 6px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .35);
    position: relative;
    overflow: hidden;
    overflow-x: auto;
  }
  .pr-schedule-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B00, #FF8A3D);
  }
  .pr-col-name {
    width: 26%;
  }
  .pr-col-round {
    width: 18.5%;
  }
  table.pr-schedule {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    min-width: 520px;
  }
  table.pr-schedule thead th {
    background: rgba(255, 255, 255, .04);
    color: #fff;
    font-weight: 700;
    padding: 14px 10px;
    text-align: center;
  }
  table.pr-schedule thead th.pr-al {
    text-align: left;
  }
  table.pr-schedule tbody td {
    padding: 16px 10px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: #D5D5D8;
  }
  table.pr-schedule td.pr-al {
    font-weight: 700;
    color: #fff;
    text-align: left;
  }
  table.pr-schedule td.pr-al .pr-cn {
    display: inline-flex;
    align-items: flex-start;
    gap: 6px;
    min-width: 0;
  }
  table.pr-schedule td.pr-al .pr-cn img {
    width: 20px;
    height: 20px;
    flex: none;
  }
  table.pr-schedule td.pr-al .pr-cn-text {
    min-width: 0;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: anywhere;
    line-height: 1.3;
  }

  /* 반응형: 태블릿 (~700px) */
  @media (max-width: 700px) {
    .pr-chart {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  /* 반응형: 모바일 (~480px) */
  @media (max-width: 480px) {
    .pr-chart {
      grid-template-columns: 1fr;
    }
    .pr-chart > li {
      padding: 18px;
      text-align: left;
    }
    .pr-mobile-row {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .pr-icon-mobile {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      width: 80px;
      flex: none;
      text-align: center;
    }
    .pr-icon-mobile img {
      width: 56px;
      height: 56px;
    }
    .pr-name-mobile {
      font-weight: 700;
      font-size: 14px;
      line-height: 1.3;
      color: #fff;
      word-break: keep-all;
      overflow-wrap: anywhere;
      text-align: center;
    }
    .pr-icon-desktop,
    .pr-cert-name {
      display: none;
    }
    .pr-bar-row {
      flex: 1;
      justify-content: flex-start;
      gap: 10px;
      min-width: 0;
    }
    .pr-axis {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 110px;
      margin-right: 2px;
      font-size: 10px;
      color: #8B8C90;
      text-align: right;
    }
    .pr-bar-wrap {
      flex: 1;
      justify-content: space-evenly;
    }
    .pr-bar {
      width: 32px;
    }
    .pr-schedule-wrap {
      overflow-x: visible;
    }
    table.pr-schedule {
      min-width: 0;
      font-size: 11px;
    }
    .pr-col-name {
      width: 90px;
    }
    .pr-col-round {
      width: auto;
    }
    table.pr-schedule thead th {
      padding: 8px 4px;
    }
    table.pr-schedule tbody td {
      padding: 10px 4px;
    }
  }