body {
  margin: 0;
  font-family: "Pretendard", sans-serif;
}

.container {
  display: flex;
  width: 100%;
  height: 100vh;
}

.left {
  width: 35%;
  background-color: #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  border-right: 1px solid #ccc;
  padding-top: 50px;
  font-size: 18px;
}

.left img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.left img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.right {
  width: 100%;
  padding: 30px;
  align-items: flex-start; /* 상단 정렬 */
  justify-content: flex-start;
  gap: 20px; /* 요소 간 간격 20px */
  font-size: 18px;
  line-height: 1.6;
  background-color: #ffffff;  
}

 #description-box_albumin {
  background-image: url('/yeastech/resources/common/images/albumin_main.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;    /* ✅ 병 이미지를 왼쪽 상단에 배치 */
    display: flex;
    flex-direction: row;              /* ✅ 가로 정렬로 텍스트가 옆에 오게 함 */
    align-items: center;              /* 수직 중앙 정렬 */
    justify-content: flex-start;      /* 왼쪽 정렬 */
    height: 600px;
    width: 100%;
    border-radius: 12px;
    background-color: #000;           /* 이미지 외 영역 대비용 */
    padding-left: 630px;              /* ✅ 이미지 오른쪽에 여백 확보 (이미지 폭에 따라 조정) */
    box-sizing: border-box;
  }
  
   #description-box_factor {
  background-image: url('/yeastech/resources/common/images/factor_main.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;    /* ✅ 병 이미지를 왼쪽 상단에 배치 */
    display: flex;
    flex-direction: row;              /* ✅ 가로 정렬로 텍스트가 옆에 오게 함 */
    align-items: center;              /* 수직 중앙 정렬 */
    justify-content: flex-start;      /* 왼쪽 정렬 */
    height: 600px;
    width: 100%;
    border-radius: 12px;
    background-color: #000;           /* 이미지 외 영역 대비용 */
    padding-left: 630px;              /* ✅ 이미지 오른쪽에 여백 확보 (이미지 폭에 따라 조정) */
    box-sizing: border-box;
  }
  
     #description-box_cytokine {
  background-image: url('/yeastech/resources/common/images/cytokine_main.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;    /* ✅ 병 이미지를 왼쪽 상단에 배치 */
    display: flex;
    flex-direction: row;              /* ✅ 가로 정렬로 텍스트가 옆에 오게 함 */
    align-items: center;              /* 수직 중앙 정렬 */
    justify-content: flex-start;      /* 왼쪽 정렬 */
    height: 600px;
    width: 100%;
    border-radius: 12px;
    background-color: #000;           /* 이미지 외 영역 대비용 */
    padding-left: 630px;              /* ✅ 이미지 오른쪽에 여백 확보 (이미지 폭에 따라 조정) */
    box-sizing: border-box;
  }

  .desc-text {
    color: #FFF;
    font-size: 20px;
    line-height: 1.6;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    max-width: 360px;                 /* ✅ 텍스트 영역 제한 */
    
  }
  
  .fontsize1816{
   font-size: 18px;
  }

  .contents_wrap{
  padding-left:5%;
  }

@media all and (max-width:768px) {
	
  .fontsize1816{
   font-size: 16px;
  }	
  
  .contents_wrap{
  padding-left:0;
  }
	
 .left {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    padding-left: 30px;
    font-size: 16px;     
  }

  .left img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
  }

  .desc-box {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    width: 98%;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #333;
    border-radius: 6px;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }	
	
}



