.org-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* 상단 헤더 */
.org-header {
    text-align: center;
    margin-bottom: 80px;
}

.org-title {
    font-size: 42px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.org-intro {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* 조직도 컨테이너 */
.org-chart {
    max-width: 1200px;
    margin: 0 auto;
}

/* 각 레벨 */
.org-level {
    margin-bottom: 40px;
    position: relative;
}

.org-level:last-child {
    margin-bottom: 0;
}

/* 조직 박스 공통 스타일 */
.org-box {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.org-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FF8A3D, #FF6B35);
}

.org-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
}

/* 박스 아이콘 */
.box-icon {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
}

/* 박스 제목 */
.box-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin: 0 0 8px 0;
    text-align: center;
}

/* 박스 부제목 */
.box-subtitle {
    font-size: 13px;
    color: #999;
    margin: 0 0 10px 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 박스 설명 */
.box-desc {
    font-size: 14px;
    color: #666;
    margin: 15px 0 0 0;
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

/* 박스 업무 목록 */
.box-tasks {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.box-tasks li {
    font-size: 13px;
    color: #666;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.box-tasks li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #FF8A3D;
    font-size: 12px;
}

/* 레벨별 박스 스타일 */
.org-box.primary::before {
    background: linear-gradient(90deg, #4A90E2, #357ABD);
}

.org-box.monitor::before {
    background: linear-gradient(90deg, #66BB6A, #43A047);
}

.org-box.secondary::before {
    background: linear-gradient(90deg, #FF8A3D, #FF6B35);
}

.org-box.tertiary::before {
    background: linear-gradient(90deg, #AB47BC, #8E24AA);
}

.org-box.dept-1::before {
    background: linear-gradient(90deg, #FF6B6B, #EE5A6F);
}

.org-box.dept-2::before {
    background: linear-gradient(90deg, #4ECDC4, #44A08D);
}

.org-box.dept-3::before {
    background: linear-gradient(90deg, #FFA726, #FB8C00);
}

.org-box.dept-4::before {
    background: linear-gradient(90deg, #5C6BC0, #3F51B5);
}

/* 레벨 1: 총회 + 감사 */
.level-1 .org-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.level-1 .org-box {
    flex: 0 1 350px;
}

.level-1 .org-box.monitor {
    max-width: 280px;
}

/* 레벨 2, 3: 중앙 정렬 */
.level-2 .org-box,
.level-3 .org-box {
    max-width: 500px;
    margin: 0 auto;
}

/* 레벨 4: 실무 부서 */
.org-departments {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* 연결선 */
.connector {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    position: relative;
}

.connector-down::before {
    content: '';
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #FF8A3D, #FF6B35);
    display: block;
}

.connector-split {
    height: 60px;
    position: relative;
}

.connector-split::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, #FF8A3D, #FF6B35);
    transform: translateX(-50%);
}

.connector-split::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(to right, #FF8A3D, #FF6B35);
}

/* 태블릿 */
@media (max-width: 1200px) {
    .org-departments {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* 이사진 태블릿 */
    .directors-grid {
        gap: 30px;
    }
    
    .director-card.chairman {
        flex-direction: column;
        max-width: 500px;
    }
    
    .director-card.chairman .director-image {
        width: 100%;
        height: 350px;
    }
    
    /* 자문위원 태블릿 */
    .advisors-grid {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .org-container {
        padding: 40px 20px;
    }
    
    .org-title {
        font-size: 36px;
    }
    
    .org-header {
        margin-bottom: 60px;
    }
    
    .org-departments {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .box-title {
        font-size: 20px;
    }
    
    /* 이사진 992px */
    .directors-title {
        font-size: 32px;
    }
    
    .directors-intro {
        font-size: 15px;
        margin-bottom: 40px;
    }
    
    /* 자문위원 992px */
    .advisors-section {
        margin-top: 60px;
        margin-bottom: 80px;
    }
    
    .advisors-grid {
        gap: 30px;
    }
    
    .advisor-image {
        height: 300px;
    }
    
    .advisor-info {
        padding: 25px;
    }
    
    .advisor-name {
        font-size: 22px;
    }
}

/* 모바일 */
@media (max-width: 768px) {
    .org-container {
        padding: 30px 15px;
    }
    
    .org-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .org-intro {
        font-size: 14px;
    }
    
    .org-header {
        margin-bottom: 40px;
    }
    
    .org-level {
        margin-bottom: 30px;
    }
    
    .org-box {
        padding: 25px 20px;
    }
    
    .box-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .box-title {
        font-size: 18px;
    }
    
    .box-subtitle {
        font-size: 12px;
    }
    
    .box-desc {
        font-size: 13px;
    }
    
    .box-tasks li {
        font-size: 12px;
    }
    
    /* 레벨 1 모바일 */
    .level-1 .org-row {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .level-1 .org-box {
        width: 100%;
        max-width: 100%;
        padding: 20px 15px;
    }
    
    .level-1 .org-box.monitor {
        max-width: 100%;
        padding: 20px 15px;
    }
    
    .org-level {
        margin-bottom: 25px;
    }
    
    /* 실무 부서 모바일 - 2x2 그리드 유지 */
    .org-departments {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* 이사진 모바일 */
    .directors-section {
        margin-top: 60px;
        margin-bottom: 50px;
    }
    
    .directors-title {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .directors-intro {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .directors-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* 자문위원 모바일 */
    .advisors-section {
        margin-top: 50px;
        margin-bottom: 60px;
    }
    
    .advisors-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .advisor-image {
        height: 280px;
    }
    
    .advisor-info {
        padding: 25px 20px;
    }
    
    .advisor-name {
        font-size: 20px;
    }
    
    .advisor-position {
        font-size: 14px;
    }
    
    .advisor-company {
        font-size: 13px;
    }
    
    .preparing-text {
        font-size: 24px;
    }
    
    .director-card.chairman {
        grid-column: 1;
        max-width: 100%;
        width: 100%;
        flex-direction: column !important;
        display: flex !important;
    }
    
    .director-card.chairman .director-image {
        width: 100% !important;
        height: 300px;
        flex-shrink: 0;
    }
    
    .director-card:not(.chairman) .director-image {
        height: 250px;
    }
    
    .director-info {
        padding: 25px 20px;
        display: block;
        width: 100%;
    }
    
    .director-name {
        font-size: 22px;
    }
    
    .director-position {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .contact-item {
        font-size: 13px;
        gap: 10px;
    }
    
    .contact-text {
        font-size: 12px;
        word-break: break-all;
    }
    
    .contact-icon {
        width: 20px;
        font-size: 16px;
    }
    
    /* 연결선 간소화 */
    .connector-down::before {
        height: 30px;
    }
    
    .connector-split {
        height: 40px;
    }
    
    .connector-split::before {
        height: 20px;
    }
    
    .connector-split::after {
        top: 20px;
        left: 10%;
        right: 10%;
    }
}

/* 이사진 소개 */
.directors-section {
    margin-top: 0;
    margin-bottom: 100px;
}

.directors-title {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.directors-intro {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}

.directors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

/* 이사 카드 */
.director-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.director-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
}

.director-card.chairman {
    grid-column: 1 / -1;
    flex-direction: row;
    max-width: 800px;
    margin: 0 auto;
}

/* 이사 이미지 */
.director-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e9e9e9 100%);
}

.director-card:not(.chairman) .director-image {
    height: 300px;
}

.director-card.chairman .director-image {
    width: 350px;
    flex-shrink: 0;
}

.director-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.director-card:hover .director-image img {
    transform: scale(1.05);
}

/* 직책 배지 */
.director-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FF8A3D, #FF6B35);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.director-card.chairman .director-badge {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
}

.director-badge.auditor {
    background: linear-gradient(135deg, #66BB6A, #43A047);
}

/* 이사 정보 */
.director-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.director-name {
    font-size: 26px;
    font-weight: bold;
    color: #333;
    margin: 0 0 5px 0;
}

.director-name-en {
    font-size: 14px;
    color: #999;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.director-position {
    font-size: 16px;
    color: #666;
    margin: 0 0 25px 0;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

/* 연락처 */
.director-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #555;
}

.contact-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.contact-text {
    flex: 1;
    word-break: break-all;
    overflow-wrap: break-word;
    line-height: 1.5;
}

/* 상세보기 버튼 */
.btn-detail {
    display: inline-block;
    margin-left: 10px;
    padding: 6px 16px;
    background: linear-gradient(135deg, #FF8A3D, #FF6B35);
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.btn-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

/* 레이어 팝업 */
.director-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: #fff;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.modal-close:hover {
    background: #FF6B35;
    color: #fff;
    transform: rotate(90deg);
}

.modal-body {
    padding: 40px;
}

/* 상세정보 스타일 */
.detail-header {
    border-bottom: 3px solid #FF8A3D;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.detail-header h2 {
    font-size: 28px;
    color: #333;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.detail-header .name-en {
    font-size: 16px;
    color: #999;
    font-weight: normal;
}

.detail-position {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.detail-company {
    font-size: 15px;
    color: #888;
    margin: 5px 0 0 0;
}

.detail-section {
    margin-bottom: 35px;
}

.detail-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 20px;
    font-weight: bold;
    color: #FF8A3D;
    margin: 0 0 20px 0;
    padding-left: 12px;
    border-left: 4px solid #FF8A3D;
}

.subsection {
    margin-bottom: 25px;
}

.subsection:last-child {
    margin-bottom: 0;
}

.subsection h4 {
    font-size: 16px;
    font-weight: 600;
    color: #555;
    margin: 0 0 12px 0;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-list li {
    padding: 8px 0 8px 20px;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.detail-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #FF8A3D;
    font-size: 14px;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.activity-item {
    display: flex;
    gap: 15px;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.activity-item:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.activity-year {
    font-weight: 600;
    color: #FF8A3D;
    min-width: 80px;
    flex-shrink: 0;
}

.activity-content {
    color: #666;
    line-height: 1.6;
    flex: 1;
}

/* 특허 목록 */
.patent-list li {
    font-size: 15px;
    color: #555;
    background: #f9f9f9;
    padding: 10px 10px 10px 25px;
    margin-bottom: 5px;
    border-radius: 4px;
}

/* 저서 목록 */
.book-list li {
    font-size: 15px;
    color: #555;
    background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
    padding: 12px 12px 12px 28px;
    margin-bottom: 8px;
    border-radius: 6px;
    border-left: 3px solid #FFB74D;
}

.book-list li::before {
    content: '📚';
    left: 5px;
    font-size: 16px;
}

/* 강의 목록 */
.lecture-list li {
    font-size: 15px;
    color: #555;
    background: linear-gradient(135deg, #e8f5e9 0%, #fff 100%);
    padding: 10px 10px 10px 25px;
    margin-bottom: 6px;
    border-radius: 4px;
}

.lecture-list li::before {
    content: '🎤';
    font-size: 14px;
}

/* 자문위원 소개 */
.advisors-section {
    margin-top: 80px;
    margin-bottom: 100px;
}

.advisors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

/* 자문위원 카드 */
.advisor-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.advisor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
}

/* 준비중 카드 */
.advisor-card.preparing {
    opacity: 0.85;
}

.advisor-card.preparing:hover {
    transform: translateY(-5px);
    opacity: 0.9;
}

/* 자문위원 이미지 */
.advisor-image {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e9e9e9 100%);
}

.advisor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.advisor-card:hover .advisor-image img {
    transform: scale(1.05);
}

/* 준비중 오버레이 */
.preparing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
    z-index: 3;
}

.preparing-text {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

/* 자문위원 배지 */
.advisor-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 4;
}

.advisor-badge.tax {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.advisor-badge.law {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.advisor-badge.labor {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.advisor-badge.patent {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.advisor-badge.professor {
    background: linear-gradient(135deg, #FF8A3D, #FF6B35);
}

/* 자문위원 정보 */
.advisor-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.advisor-name {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 0 0 12px 0;
}

.advisor-position {
    font-size: 15px;
    color: #666;
    margin: 0 0 8px 0;
}

.advisor-company {
    font-size: 14px;
    color: #999;
    margin: 0;
}

/* 회사 정보 */
.org-info {
    margin-top: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.org-info-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px solid #FF8A3D;
}

.org-info-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.org-info-table th,
.org-info-table td {
    padding: 18px 25px;
    text-align: left;
    border-bottom: 1px solid #e9e9e9;
    font-size: 15px;
}

.org-info-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
    width: 180px;
    white-space: nowrap;
}

.org-info-table td {
    color: #555;
    font-weight: 400;
}

.org-info-table tr:last-child th,
.org-info-table tr:last-child td {
    border-bottom: none;
}

.org-info-table tr:hover {
    background-color: #fafafa;
}

/* 작은 모바일 */
@media (max-width: 480px) {
    .org-container {
        padding: 20px 10px;
    }
    
    .org-title {
        font-size: 24px;
    }
    
    .org-intro {
        font-size: 13px;
    }
    
    .org-box {
        padding: 18px 12px;
    }
    
    .level-1 .org-box {
        padding: 18px 12px;
    }
    
    .level-1 .org-row {
        gap: 12px;
    }
    
    .org-level {
        margin-bottom: 20px;
    }
    
    .box-icon {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .box-title {
        font-size: 17px;
        margin-bottom: 5px;
    }
    
    .box-subtitle {
        font-size: 11px;
    }
    
    .box-desc {
        font-size: 12px;
        margin-top: 10px;
        padding-top: 10px;
    }
    
    /* 작은 모바일에서도 2x2 유지 */
    .org-departments {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .box-subtitle {
        font-size: 10px;
    }
    
    .box-tasks {
        display: none;
    }
    
    /* 이사진 작은 모바일 */
    .directors-title {
        font-size: 22px;
    }
    
    .directors-intro {
        font-size: 13px;
    }
    
    /* 자문위원 작은 모바일 */
    .advisor-image {
        height: 240px;
    }
    
    .advisor-badge {
        font-size: 11px;
        padding: 6px 14px;
        top: 15px;
        right: 15px;
    }
    
    .advisor-info {
        padding: 20px 15px;
    }
    
    .advisor-name {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .advisor-position {
        font-size: 13px;
    }
    
    .advisor-company {
        font-size: 12px;
    }
    
    .preparing-text {
        font-size: 20px;
    }
    
    .btn-detail {
        display: block;
        margin-left: 0;
        margin-top: 10px;
        padding: 8px 16px;
        font-size: 11px;
    }
    
    .director-card {
        width: 100%;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .director-card.chairman {
        width: 100%;
        max-width: 100%;
        flex-direction: column !important;
    }
    
    .director-card:not(.chairman) .director-image {
        height: 220px;
        width: 100%;
        flex-shrink: 0;
    }
    
    .director-card.chairman .director-image {
        width: 100% !important;
        height: 250px;
        flex-shrink: 0;
    }
    
    .director-info {
        padding: 20px 15px;
        width: 100%;
        display: block;
        flex: 1;
    }
    
    .director-name,
    .director-name-en,
    .director-position,
    .director-contact {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    
    .director-name {
        font-size: 20px;
    }
    
    .director-name-en {
        font-size: 12px;
    }
    
    .director-badge {
        top: 15px;
        right: 15px;
        padding: 6px 16px;
        font-size: 12px;
    }
    
    .contact-text {
        font-size: 11px;
        word-break: break-all;
        overflow-wrap: anywhere;
    }
    
    .contact-icon {
        width: 18px;
        font-size: 14px;
    }
    
    /* 상세보기 버튼 작은 모바일 */
    .btn-detail {
        display: block;
        margin-left: 0;
        margin-top: 10px;
        padding: 8px 16px;
        font-size: 11px;
    }
    
    /* 모달 작은 모바일 */
    .modal-content {
        max-height: 95vh;
        border-radius: 12px;
    }
    
    .modal-body {
        padding: 30px 20px;
    }
    
    .modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
    
    .detail-header h2 {
        font-size: 22px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .detail-header .name-en {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .subsection h4 {
        font-size: 15px;
    }
    
    .detail-list li {
        font-size: 14px;
    }
    
    .activity-item {
        flex-direction: column;
        gap: 8px;
        padding: 10px;
    }
    
    .activity-year {
        min-width: auto;
        font-size: 13px;
    }
    
    .activity-content {
        font-size: 14px;
    }
    
    /* 회사 정보 모바일 */
    .org-info {
        margin-top: 50px;
    }
    
    .org-info-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .org-info-table {
        display: block;
    }
    
    .org-info-table tbody {
        display: block;
    }
    
    .org-info-table tr {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #e9e9e9;
    }
    
    .org-info-table tr:last-child {
        border-bottom: none;
    }
    
    .org-info-table th,
    .org-info-table td {
        display: block;
        width: 100%;
        padding: 12px 15px;
        border-bottom: none;
    }
    
    .org-info-table th {
        padding-bottom: 8px;
        background-color: transparent;
        font-size: 13px;
        color: #888;
        font-weight: 500;
    }
    
    .org-info-table td {
        padding-top: 0;
        font-size: 15px;
        color: #333;
        font-weight: 400;
    }
}

