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


/*     1793724 : 타이틀 텍스트      */
/* 공통 폰트 - 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;
  }
}


/*     1793734 : 타이틀 텍스트      */
/* 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;
}

.lmx-spec-wrap {
  font-family: 'Pretendard', sans-serif;
  margin-top: 30px;
  line-height: 1.5;
  color: #333;
}

/* 제목 + 파란 점 (상단 ● 상세사양) */
.lmx-spec-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lmx-spec-title .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2b73b6;
}

/* 테이블 래퍼 – 작은 화면에서 가로 스크롤 */
.lmx-spec-table-wrap {
  width: 100%;
  overflow-x: auto;
}

/* 테이블 본체 – 기존 상세사양 테이블과 같은 컬러 */
.lmx-spec-table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
  font-size: 13px;
  text-align: center;
  border-top: 2px solid #5c8bbd;
}

.lmx-spec-table th {
  background: #dbe7f5;
  color: #003b74;
  border: 1px solid #c7d3e0;
  padding: 6px 4px;
  font-weight: 500;
}
.lmx-spec-table th br {
  line-height: 1.2;
}

.lmx-spec-table td {
  border: 1px solid #d4d4d4;
  padding: 6px 4px;
  background: #ffffff;
}

/* 줄무늬 효과 */
.lmx-spec-table tbody tr:nth-child(even) td {
  background: #f8f8f8;
}

/* 하단 안내문 */
.lmx-spec-note {
  font-size: 13px;
  color: #666;
  margin-top: 8px;
}

/* 하단 이미지 3개 */
.lmx-spec-images {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}
.lmx-spec-images img {
  width: 32%;
  display: block;
}

/* 반응형 */
@media (max-width: 768px) {
  .lmx-spec-title {
    font-size: 18px;
  }
  .lmx-spec-table {
    font-size: 12px;
  }
  .lmx-spec-table th,
  .lmx-spec-table td {
    padding: 5px 3px;
  }
}


