/* 1. 전체 영역 설정 */
    .background-size {
        height: 750px !important;
    }

.container {
    width: 100%;
    padding: 20px 0; /* 위아래 여백을 넉넉히 주어 중앙 공간 확보 */
    background-color: #fff;
}

.container_notice {
    width: 100%;
    padding: 40px 0; /* 위아래 여백을 넉넉히 주어 중앙 공간 확보 */
    background-color: #fff;
}

.wrap {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;

    /* [중요] 세로 정렬의 핵심 */
    justify-content: center; /* (선택) 전체를 가로 중앙으로 */
    min-height: 200px; /* 정렬될 수 있는 최소한의 높이 확보 */
}

/* 2. '공시정보' 타이틀 */
.box_notice {
    flex-shrink: 0;
    margin-right: 50px;
    /* 타이틀 자체에 위아래 마진이 있다면 제거 */
    margin-top: 0;
    margin-bottom: 0;
}

.box_notice h3 {
    font-size: 26px;
    font-weight: 400;
    color: #333;
    margin: 0; /* h3 기본 마진 제거 */
    line-height: 1;
}

/* 3. 공시 리스트 영역 */
.content_list {
    display: flex;
    flex: 1;
    gap: 60px;
    /* 리스트 뭉치 전체가 위로 치우치지 않게 마진 초기화 */
    margin: 0;
    padding: 0;
}

.box_content {
    flex: 1;
    min-width: 0;
    /* 개별 박스 상단 마진 확인 및 제거 */
    margin-top: 0;
    margin-right: 20px;
}

.box_content a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    /* 내용이 적어도 박스 높이를 유지하여 정렬 기준 제공 */
    justify-content: center;
}

/* 4. 제목: 2줄 높이 고정 */
.news-content_title {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    color: #333;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: keep-all;
    height: 2.8em;
}

/* 5. 요약 내용: 3줄 높이 고정 */
.news-content {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    color: #888;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 4.8em;
}

/* 6. 날짜 스타일 */
.new-content_date {
    font-size: 14px;
    color: #aaa;
    margin-top: auto;
}