/**
 * single-program_new.php 하단 sub_program(하위 프로그램) 섹션 전용.
 * 겹침 방지, ko/en/cn/jp 블록 세로 배치.
 */

/* 섹션 래퍼: 플렉스 세로 스택 */
.pnew-sub-program-section .sub-program-wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 2.5rem;
    width: 100%;
}

/* 하위 프로그램 카드 1개 = 1행 전체 너비, 블록 배치 */
.pnew-sub-program-section .sub-program-card {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 1.5rem 0;
}

/* 카드 내 이미지 + 언어 블록들 */
.pnew-sub-program-section .sub-program-card-inner {
    display: block;
    width: 100%;
}

.pnew-sub-program-section .sub-program-card .card-image {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-bottom: 1.5rem;
}

.pnew-sub-program-section .sub-program-card .card-image img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* 언어별 블록 (국문/영문/중문/일문) 세로로 쌓기 - 배경/구분선 없음 */
.pnew-sub-program-section .lang-block {
    display: block;
    width: 100%;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    box-sizing: border-box;
}

.pnew-sub-program-section .lang-block:last-child {
    margin-bottom: 0;
}

.pnew-sub-program-section .lang-block .lang-heading {
    display: inline-block;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.pnew-sub-program-section .lang-block .lang-title {
    display: block;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #111;
    line-height: 1;
}

.pnew-sub-program-section .lang-block .text {
    display: block;
    width: 100%;
    margin-top: 0.5rem;
}

.pnew-sub-program-section .lang-block .text-item {
    display: block;
    width: 100%;
    margin-bottom: 1.25rem;
    box-sizing: border-box;
}

.pnew-sub-program-section .lang-block .text-item:last-child {
    margin-bottom: 0;
}

.pnew-sub-program-section .lang-block .label {
    display: block;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    width: 100%;
    color: #333;
    line-height: 1.5;
}

.pnew-sub-program-section .lang-block .content {
    display: block;
    width: 100%;
    font-size: 2rem;
    line-height: 1;
    padding-bottom: 1rem;
    word-wrap: break-word;
    word-break: break-word;
    white-space: pre-wrap;
    color: #333;
    margin: 0;
}

/* 겹침 방지: 모든 텍스트 블록 */
.pnew-sub-program-section .label,
.pnew-sub-program-section .content,
.pnew-sub-program-section .title {
    float: none;
    overflow: visible;
    clear: both;
}
