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


/*     1793694 : 타이틀 텍스트      */
/* 공통 폰트 - 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;
}

.lamp-info-wrap {
  font-family: 'Pretendard', sans-serif;
  line-height: 1.6;
  margin-top: 25px;
}

/* 상단 이미지 + 텍스트 공통 */
.lamp-info-top {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.lamp-img img {
  width: 100%;
  display: block;
}

.lamp-info-title {
  font-size: 20px;
  font-weight: 700;
  color: #0056d6;
  margin-bottom: 10px;
}

.lamp-text p {
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
}

/* 구조도 / 스펙트럼 이미지 */
.lamp-structure-img img,
.lamp-spectrum-img img {
  width: 100%;
  display: block;
  margin-top: 20px;
}

/* 반응형 */
@media (max-width: 768px) {
  .lamp-info-top {
    flex-direction: column;
  }
}


/*     1793704 : 타이틀 텍스트      */
/* 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-style: normal;
}
@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;
  font-style: normal;
}

.lamp-spec-wrap {
  font-family: 'Pretendard', sans-serif;
  margin-top: 30px;
  line-height: 1.5;
  color: #333;
}

/* 제목 + 파란 점 */
.lamp-spec-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lamp-spec-title .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2b73b6;
}

/* 모델명 표기법 라인 */
.lamp-spec-head {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 8px;
}
.lamp-spec-head .head-left {
  color: #555;
}
.lamp-spec-head .head-right {
  color: #777;
}

/* 표 전체 영역 */
.lamp-spec-table-area {
  display: flex;
  border-top: 1px solid #c9d3e1;
}

/* 왼쪽 세로 텍스트 박스 */
.side-label {
  background: #f4f4f4;
  border-left: 1px solid #c9d3e1;
  border-bottom: 1px solid #c9d3e1;
  border-top: 0;
  padding: 0 6px;
  font-size: 12px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

/* 테이블 스크롤 래퍼 */
.table-scroll {
  overflow-x: auto;
  flex: 1;
}

/* 실제 테이블 */
.lamp-spec-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  font-size: 12px;
  text-align: center;
}

.lamp-spec-table thead tr:first-child th {
  background: #d6e3f3;   /* 윗줄 파란 헤더 */
  color: #234f7f;
  border: 1px solid #b4c4d8;
  padding: 6px 4px;
  font-weight: 500;
}
.lamp-spec-table thead tr:nth-child(2) th {
  background: #e7edf7;   /* 아랫줄 연한 헤더 */
  color: #234f7f;
  border: 1px solid #bfcfe0;
  padding: 5px 3px;
  font-weight: 500;
}

.lamp-spec-table td {
  border: 1px solid #d4d4d4;
  padding: 5px 4px;
  background: #ffffff;
}

/* 줄무늬 효과 */
.lamp-spec-table tbody tr:nth-child(even) td {
  background: #f8f8f8;
}

/* 하단 안내 문구 */
.lamp-spec-note {
  font-size: 12px;
  color: #666;
  margin-top: 8px;
}

/* 하단 이미지 */
.lamp-spec-images {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}
.lamp-spec-images img {
  width: 48%;
  display: block;
}

/* 반응형 */
@media (max-width: 768px) {
  .lamp-spec-title {
    font-size: 18px;
  }
  .lamp-spec-head {
    flex-direction: column;
    gap: 2px;
  }
  .side-label {
    font-size: 11px;
    padding: 4px;
  }
  .lamp-spec-table {
    font-size: 11px;
  }
  .lamp-spec-table thead tr:first-child th,
  .lamp-spec-table thead tr:nth-child(2) th,
  .lamp-spec-table td {
    padding: 4px 3px;
  }
}


