.col1 {
    list-style: none;
    height: 550px;
}

.col2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin: 20px 0 10px;
    color: #0099ee;
}
.recruit .container h5 {
    font-size: 24px;
    font-weight: 700;
    margin: 20px 0 10px;
    color: #0099ee;
}

/* 왼쪽에 제목, 오른쪽에 내용을 정렬하는 코드 */
.left-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px; /* 제목과 내용 사이의 간격 */
    width: 100%;
}

.left-col h5.item {
    display: block;
    width: 30%; /* 제목이 차지할 비율 */
    text-align: left; /* 제목을 왼쪽 정렬 */
}

.left-col .popup {
    display: block;
    /* width: 70%;  */
    text-align: left;
}

.row {
    display: flex;
    align-items: flex-start;
    width: 80%; /* 🔹 기존 너비 유지 */
    margin: 0 auto; /* 🔹 중앙 정렬 */
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
    max-width: 960px; /* 🔹 선의 최대 길이를 제한하여 줄이기 */
}

/* 왼쪽 제목 스타일 */
.row h5.item {
    width: 30%; /* 🔹 제목이 차지하는 비율 */
    min-width: 200px; /* 🔹 최소 너비 설정 */
    text-align: left;
    font-size: 24px;
    color: #0099ee;
}

/* 제목을 왼쪽으로 배치 */
.title {
    width: 30%;
    min-width: 200px;
    text-align: left;
}

/* 제목 스타일 */
.title h5 {
    font-size: 24px;
    color: #0099ee;
    margin: 0;
}


/* 오른쪽 내용 스타일 */
.row .popup {
    /* width: 70%; 
    font-size: 16px;
    color: black;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}



/* 제목을 왼쪽으로 정렬 */
.item {
    text-align: left;
    /* width: 30%; */
}

/* 팝업 내용 스타일 수정 */
.popup {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
    width: 680px; /* 🔹 기존 너비 유지 */
    max-width: none;
    height: auto;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
/* 팝업 내부 제목 숨김 코드 제거 */
.popup h5.item {
    display: block;
}

.popup p {
    white-space: nowrap; /* 자동 줄바꿈 방지 */
}

#detail p, #detail2 p {
    margin-bottom: 0px;
}

.pop_title {
    border: 2px solid #0099ee;
    padding: 10px 20px;
    text-align: left;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    height: auto;
    min-height: 100px;

    /* ✅ 크기 확장 설정 */
    flex-grow: 1; /* 부모 요소에서 가능한 최대 크기까지 확장 */
    width: 250px; /* 기본 크기를 자동으로 설정 */
    max-width: 260px; /* 최대 크기 증가 */
}



.pop_title h5 {
    font-size: 24px; /* 🔹 한글 제목 크기 */
    font-weight: bold; /* 🔹 두껍게 */
    color: #0099ee; /* 🔹 파란색 */
    margin-bottom: 5px; /* 🔹 영어와 간격 */
    white-space: nowrap;
}

.pop_title .eng {
    font-size: 12px; /* 🔹 영어 텍스트 크기 */
    font-style: italic; /* 🔹 기울임 */
    color: black; /* 🔹 검정색 */
}

.email {
    text-align: center;
    margin-top: 50px;
}

.row {
    display: flex;
    align-items: stretch; /* 🔹 제목과 내용을 동일한 높이로 맞춤 */
    width: 100%;
    padding: 10px 0;
    gap: 3px; /* 🔹 제목과 내용 사이 간격 */
    margin-right: -15px;
    margin-left: 70px;
}
