/*     1793744 : 타이틀 텍스트      */
/* 전체 컨테이너 */
.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;
  }
}


/*     1793754 : 타이틀 텍스트      */
/* Pretendard – 사이트에 이미 있으면 중복 선언 안 해도 됨 */
@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard-regular.woff2') format('woff2');
  font-weight: 400;
}
@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard-medium.woff2') format('woff2');
  font-weight: 500;
}

.tube-spec-wrap {
  font-family: 'Pretendard', sans-serif;
  margin-top: 30px;
  line-height: 1.5;
  color: #333;
}

/* 제목 + 파란 점 */
.tube-spec-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tube-spec-title .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2b73b6;
}

/* 상단/중간 이미지 */
.tube-top-img img,
.tube-main-img img {
  width: 100%;
  display: block;
}

/* 이미지 사이 간격 */
.tube-top-img {
  margin-bottom: 20px;
}
.tube-main-img {
  margin-bottom: 20px;
}

/* 표 래퍼 – 모바일에서 가로 스크롤 */
.tube-spec-table-wrap {
  width: 100%;
  overflow-x: auto;
}

/* 표 스타일 – 기존 상세사양 표와 동일 톤 */
.tube-spec-table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
  font-size: 13px;
  text-align: center;
  border-top: 2px solid #5c8bbd;
}

.tube-spec-table th {
  background: #dbe7f5;
  color: #003b74;
  border: 1px solid #c7d3e0;
  padding: 6px 4px;
  font-weight: 500;
}
.tube-spec-table th br {
  line-height: 1.2;
}

.tube-spec-table td {
  border: 1px solid #d4d4d4;
  padding: 6px 4px;
  background: #ffffff;
}

/* 줄무늬 효과 */
.tube-spec-table tbody tr:nth-child(even) td {
  background: #f8f8f8;
}

/* 안내 문구 */
.tube-spec-note {
  font-size: 13px;
  color: #666;
  margin-top: 8px;
}

/* 하단 이미지 2개 */
.tube-bottom-images {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}
.tube-bottom-images img {
  width: 48%;
  display: block;
}

/* 반응형 */
@media (max-width: 768px) {
  .tube-spec-title {
    font-size: 18px;
  }
  .tube-spec-table {
    font-size: 12px;
  }
  .tube-spec-table th,
  .tube-spec-table td {
    padding: 5px 3px;
  }
}


/*     1793764 : 타이틀 텍스트      */


