@charset "utf-8";
/* 회사 소개 페이지 스킨 전용 스타일 - 공통 스타일은 theme/basic/css/common.css .company-page 참조 */

.sub-page .container {
    max-width: 1472px;
}

/* 제목 파란 점 */
.sub-page .section-title {
    font-size: 30px;
    font-weight: 700;
    color: #212121;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .sub-page .section-title {
        font-size: 24px;
        gap: 10px;
        margin-bottom: 30px;
    }
}

.sub-page .section-title::before {
    content: '';
    width: 20px;
    height: 20px;
    background-color: #2563EB; /* 시안의 파란색 */
    border-radius: 50%;
}

@media (max-width: 768px) {
    .sub-page .section-title::before {
        width: 14px;
        height: 14px;
    }
}

/* 인트로 배너 공션 스타일 */
.sub-page .intro-banner {
    position: relative;
    width: 100%;
    height: 200px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.sub-page .intro-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.sub-page .intro-banner .text-wrap {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.sub-page .intro-banner p {
    color: #212121;
    font-size: 26px;
    line-height: 1.5;
    font-weight: 500;
}

@media (max-width: 768px) {
    .sub-page .intro-banner { height: auto; border-radius: 20px; padding: 40px 0; }
    .sub-page .intro-banner p { font-size: 18px; }
}

/* 조직도 전용 스타일 */
.organization-page .organization-chart-wrap img {
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.05));
}

/* Intersection Observer Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for children */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-stagger.reveal-active > * {
    opacity: 1;
    transform: translateY(0);
}

/* Add delays for staggered effect */
.reveal-active > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-active > *:nth-child(2) { transition-delay: 0.25s; }

/* Base state for reveal elements */
[class*="reveal"] {
    will-change: transform, opacity;
}

/* Detailed Responsive Adjustments */
@media (max-width: 768px) {
    .organization-page .organization-chart-wrap {
        padding: 0 10px;
    }
}
