@charset "utf-8";

#pos {
  padding: 0 60px;
  margin: 130px 0;
}
#pos .inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* 좌측 텍스트 */
#pos .txt_area {
  flex-shrink: 0;
  width: 480px;
}
#pos .txt_area .eng {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--primary);
  font-family: var(--e-font);
  margin-bottom: 16px;
}
#pos .txt_area h2 {
  font-size: 38px;
  font-weight: 700;
  color: #111;
  line-height: 1.35;
  margin-bottom: 18px;
  word-break: keep-all;
}
#pos .txt_area h2 span {
  color: var(--secondary);
}
#pos .txt_area .sub {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  word-break: keep-all;
  margin-bottom: 28px;
}
#pos .txt_area .badge_list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
#pos .txt_area .badge_list li {
  padding: 6px 14px;
  background: rgba(82, 230, 136, 0.12);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
}

/* 우측 이미지 */
#pos .img_area {
  flex: 1;
  min-width: 0;
}
#pos .img_area img {
  display: block;
  width: 100%;
  border-radius: 20px;
}
#pos .img_placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  border: 2px dashed #d5d9de;
  background: #f5f7f9;
  display: flex;
  align-items: center;
  justify-content: center;
}
#pos .img_placeholder span {
  font-size: 14px;
  color: #aab0b7;
}

/* 반응형 [s] */
@media (max-width: 1380px) {
  #pos {
    padding: 0 2.5%;
  }
  #pos .inner {
    gap: 50px;
  }
  #pos .txt_area {
    width: 400px;
  }
  #pos .txt_area h2 {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  #pos {
    margin: 110px 0;
  }
  #pos .inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  #pos .txt_area {
    width: 100%;
  }
  #pos .txt_area h2 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  #pos {
    margin: 90px 0;
  }
  #pos .txt_area h2 {
    font-size: 26px;
  }
  #pos .txt_area .sub {
    font-size: 14px;
  }
  #pos .txt_area .sub br {
    display: none;
  }
}
@media (max-width: 480px) {
  #pos {
    margin: 70px 0;
  }
  #pos .txt_area h2 {
    font-size: 22px;
  }
}
/* 반응형 [e] */
