/* ================================
   조직구성 페이지 CSS
   ================================ */

@import url('./common.css');

/* 조직도 이미지 스타일 */
.org-chart {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0;
}

.org-chart img {
    max-width: 100%;
    height: auto;
    width: 80%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
}

.org-chart img.show {
    opacity: 1;
    animation: slideUp 0.6s ease-in-out forwards;
}

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

.org-chart img:hover {
    transform: scale(1.02);
}

/* ================================
   반응형 디자인 - 태블릿 (1024px 이하)
   ================================ */
@media (max-width: 1024px) {
    .org-chart img {
        width: 90%;
    }
}

/* ================================
   반응형 디자인 - 모바일 (768px 이하)
   ================================ */
@media (max-width: 768px) {
    .org-chart {
        margin: 40px 0;
    }
    .org-chart img {
        width: 95%;
    }
}

/* ================================
   반응형 디자인 - 작은 모바일 (480px 이하)
   ================================ */
@media (max-width: 480px) {
    .org-chart {
        margin: 30px 0;
    }
    .org-chart img {
        width: 100%;
    }
}
