/* 페이지 네비게이션 전체 */
.page-navigation {
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
}

/* 내부 버튼 영역 */
.page-navigation ul {
    display: flex;
    justify-content: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    list-style: none;
}

/* 버튼 li */
.page-navigation li {
    margin: 0;
}

/* 버튼 디자인 */
.page-navigation a {
    display: block;
    padding: 20px 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    color: #111;
    background-color: #ffffff;
    border-right: 1px solid #ffffff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-navigation li:last-child a {
    border-right: none;
}

/* hover 효과 */
.page-navigation a:hover {
    background-color: #999999;
    color: #fff;
}

/* 활성 페이지 */
.page-navigation a.active {
    background-color: #555555;
    color: #fff;
}

/* 조직도 */
.company-organization {
    padding: 60px 20px;
    text-align: center;
}

.company-organization h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    /* 가운데 정렬 */
}

/* 조직도와 임원소개 사이 여백 추가 */
.org-chart {
    margin-bottom: 80px;
}

.executive-intro {
    text-align: center;
    padding: 60px 20px 40px 20px; 
}

/* 임원소개 */
.executive-intro {
    text-align: center;
    padding: 60px 20px;
}

.executive-intro h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.executive-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.executive-card {
    display: flex;
    width: 400px; 
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    flex-direction: column;
}

.executive-left {
    width: 100%;
    background-color: #f0f0f0;
    text-align: center;
    padding: 16px;
}

.executive-left img {
    width: auto;
    height: 240px;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    background-color: #fff;
    margin-bottom: 8px;
}

.executive-position {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.executive-name {
    font-weight: 700;
    font-size: 18px;
}

.executive-right {
    text-align: left;
    padding: 16px;
}

.executive-right p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 4px;
}
