/*     1792235 : 타이틀 텍스트      */
/* 전체 컨테이너 */
.uv-grid-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 기본 3열 → 9개씩 두 줄 */
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 10px;
  font-family: 'Pretendard', sans-serif;
}

/* 버튼 스타일 */
.uv-item {
  background: #ffffff;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* hover 효과: 라인 강조 + 전체 컬러 변화 */
.uv-item:hover {
  border-color: #4a6bff;
  color: #4a6bff;
  box-shadow: 0 4px 12px rgba(74, 107, 255, 0.15);
}

/* 왼쪽 포인트 라인 */
.uv-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #4a6bff;
  opacity: 0;
  transition: 0.3s;
}

.uv-item:hover::before {
  opacity: 1;
}

/* ✨ 반응형 세팅 */
/* 태블릿 1024px → 2열 */
@media (max-width: 1024px) {
  .uv-grid-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 모바일 600px → 1열 */
@media (max-width: 600px) {
  .uv-grid-wrap {
    grid-template-columns: 1fr;
  }
}


/*     1792245 : 타이틀 텍스트      */
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css" />
 .uv-product-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 16px 40px;
    font-family: "Pretendard", sans-serif !important;
    color: #222;
  }

  /* 상단 메인 비주얼 */
  .uv-hero {
    background: radial-gradient(circle at 10% 0, #3f8cff 0, #172034 55%, #050910 100%);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 28px;
  }

  .uv-hero-inner {
    border-radius: 18px;
    background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.1) 0, transparent 55%);
    padding: 16px;
  }

  .uv-hero-img {
    width: 100%;
    display: block;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
  }

  /* 내용 카드 공통 */
  .uv-content-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 24px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
    font-family: "Pretendard", sans-serif !important;
  }

  .uv-sections {
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 24px;
  }

  /* 섹션 타이틀 */
  .uv-section-title {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    padding-left: 20px;
    font-family: "Pretendard", sans-serif !important;
  }

  .uv-section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1fa2ff, #12d8fa);
  }

  .uv-section-sub {
    font-size: 13px;
    color: #777;
    margin: -4px 0 10px;
    padding-left: 20px;
    font-family: "Pretendard", sans-serif !important;
  }

  /* 리스트 */
  .uv-list {
    list-style: none;
    margin: 0;
    padding: 0 0 0 4px;
  }

  .uv-list li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 6px;
    line-height: 1.6;
    font-size: 14px;
    font-family: "Pretendard", sans-serif !important;
  }

  .uv-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #3f8cff;
    font-weight: 900;
  }

  /* 단일 이미지 */
  .uv-one-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e3e5ee;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  }

  .uv-one-image img {
    display: block;
    width: 100%;
  }

  /* 반응형 */
  @media (max-width: 960px) {
    .uv-sections {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 600px) {
    .uv-product-wrap {
      padding: 24px 12px 30px;
    }
    .uv-hero {
      padding: 18px;
      border-radius: 18px;
    }
    .uv-section-title {
      font-size: 17px;
    }
    .uv-list li {
      font-size: 13px;
    }
  }
.spec-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 10px;
    font-family: "Pretendard", sans-serif;
  }

  .spec-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .spec-title::before {
    content: "";
    width: 7px;
    height: 7px;
    background: #3f8cff;
    border-radius: 999px;
  }

  .spec-table-wrap {
    border-radius: 12px;
    background: #fff;
    padding: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  }

  .spec-scroll {
    overflow-x: auto;
  }

  table.spec-table {
    border-collapse: collapse;
    width: 100%;
    min-width: 1100px;
    font-size: 13px;
  }

  table.spec-table th,
  table.spec-table td {
    border: 1px solid #cfd6e4;
    padding: 6px 8px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
  }

  table.spec-table th {
    background: #eef3ff;
    font-weight: 600;
  }

  table.spec-table td:first-child {
    background: #f7f9fc;
    font-weight: 600;
    text-align: left;
  }

  .category {
    background: #f1f4fb !important;
    font-weight: 700;
  }

  .note {
    margin-top: 12px;
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    padding-left: 4px;
  }


