/* /resource/www/css/about/organization.css */

.organization-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inner-wrap {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

/* Director's message section */
.director-section {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #fcfcfc;
    overflow: hidden;
}

.director-section .inner-wrap {
    height: 1000px;
    display: flex;
    align-items: center;
}

.director-content {
    display: flex;
    flex-direction: column;
    gap: 56px;
    width: 100%;
    max-width: 926px;
    z-index: 1; 
}

.director-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw; 
    max-width: 800px;
    height: 1000px;
    background-size: cover;
    background-position: center;
}

.director-content .title {
    font-family: 'Ria Sans', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.5;
    letter-spacing: -0.04em;
    color: #222222;
}

.director-content .title .highlight {
    color: #00754a;
}

.director-content .message {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    color: #222222;
    white-space: pre-wrap;
}

.director-signature {
    display: flex;
    align-items: center;
    gap: 32px;
}

.director-signature .name {
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #222222;
}

.director-signature .signature-img {
    height: 41px;
    width: auto;
}

/* Org chart section */
.org-chart-section {
    width: 100%;
    padding: 120px 0;
    display: flex;
    justify-content: center;
    background-color: #FCFCFC;
    position: relative;
}

.org-chart-title-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}

.org-chart-title-section .title {
    font-family: 'Ria Sans', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #222222;
    letter-spacing: -0.04em;
    margin: 0;
}

.org-chart-title-section .description {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.5;
    color: #222222;
    max-width: 1440px;
    white-space: pre-line;
    margin: 0;
}
.org-chart-title-section .description .highlight {
    color: #2793c2;
    font-weight: 700;
}

.org-chart-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.org-chart-image-wrapper img {
    width: 100%;
    height: auto;
}

/* Committee Section */
.committee-section {
    width: 100%;
    padding: 0 0 120px;
    display: flex;
    justify-content: center;
    background-color: #FCFCFC;
}

.committee-section .inner-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.committee-section .title {
    font-family: 'Ria Sans', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #222222;
    letter-spacing: -0.04em;
    margin: 0;
}

.committee-list {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.committee-list li {
    align-items: center;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(25px);
    border-radius: 24px;
    padding: 0;
    width: 100%;
}

.committee-name {
    width: 326px;
    padding: 16px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.5;
    color: #222222;
    display: flex;
    align-items: center;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.committee-desc {
    padding: 16px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    color: #222222;
    display: flex;
    align-items: center;
    gap: 8px;
}

.committee-desc::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #00754a;
    border-radius: 50%;
    flex-shrink: 0;
}

.committee-desc .highlight {
    font-weight: 700;
    color: #00754a;
}

.pc-only { display: block; }
.mo-only { display: none; }

/* Responsive / Mobile */
@media (max-width: 1280px) {
    .director-section {
        flex-direction: column;
        align-items: center;
    }
    .director-image {
        position: relative;
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    .director-section .inner-wrap {
        height: auto;
        padding-top: 40px;
        padding-bottom: 40px;
        justify-content: center;
        box-sizing: border-box;
    }
    .director-content {
        padding: 0;
        gap: 24px;
    }
    .director-content .title {
        font-size: 20px;
        line-height: 30px;
    }
    .director-content .message {
        font-size: 12px;
        line-height: 20px;
    }
    .director-signature {
        gap: 16px;
    }
    .director-signature .name {
        font-size: 16px;
    }
    .director-signature .signature-img {
        height: 31px;
    }

    .org-chart-title-section .title {
        font-size: 20px;
        line-height: 30px;
    }
    .org-chart-title-section .description {
        font-size: 12px;
        line-height: 20px;
        text-align: left;
    }
    .org-chart-section {
        padding: 40px 0;
    }
    .org-chart-title-section {
        gap: 24px;
        margin-bottom: 40px;
    }

    .committee-section .title {
        font-size: 20px;
        line-height: 30px;
    }
    .committee-section {
        padding: 0 0 40px;
    }
    .committee-section .inner-wrap {
        gap: 24px;
    }
    .committee-list {
        gap: 16px;
    }
    .committee-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-radius: 0;
        border-bottom: 1px solid #d4d4d4;
        padding-bottom: 16px;
        background: transparent;
        backdrop-filter: none;
    }
    .committee-list li:last-child {
        border-bottom: none;
    }
    .committee-name {
        width: 100%;
        justify-content: center;
        padding: 8px;
        font-size: 16px;
        line-height: 24px;
    }
    .committee-desc {
        flex-direction: column;
        align-items: center;
        padding: 8px;
        font-size: 12px;
        line-height: 20px;
        text-align: center;
    }
    .committee-desc::before {
        display: none;
    }
}


@media (max-width: 1280px) {
	.pc-only { display: none; }
    .mo-only { display: block; }
}