/* ============================================================
   company.css - (주)늘푸른정보기술 회사소개 페이지
   ============================================================ */


/* .page-header → 히어로 섹션으로 대체됨 (hero-slider.css) */
/* .container / h2 / .section-subtitle / main / section → common.css */


/* ======================
   회사 개요
   ====================== */
.company-overview {
    background: var(--light-gray);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.overview-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.overview-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #666;
}

.overview-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-number {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-number:not(:last-child) {
    font-size: 3rem;
}

.stat-number:last-child {
    font-size: 2rem;
}

.stat-label {
    font-weight: 600;
    color: #666;
}


/* ======================
   CEO 인사말
   ====================== */
.ceo-section {
    padding: 60px 20px;
    background: white;
    text-align: center;
}

.ceo-section .section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
}

.ceo-message {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
}

.ceo-image {
    width: 300px;
    position: relative;
    top: -60px;
}

.ceo-text {
    max-width: 700px;
    font-size: 1rem;
    color: #555;
    text-align: left;
    line-height: 1.6;
}

.ceo-sign {
    display: flex;
    justify-content: flex-end;
    position: relative;
    top: -60px;
}

.ceo-sign img {
    max-width: 300px;
}


/* ======================
   여정 타임라인
   ====================== */
.journey {
    background: var(--light-gray);
}

.journey-timeline {
    position: relative;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-content {
    width: 45%;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: white;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: white;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-color);
    border: 4px solid white;
    box-shadow: 0 0 0 4px var(--secondary-color);
    z-index: 10;
}

.timeline-year {
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-year::before {
    content: '📅';
    font-size: 1.2rem;
}

.timeline-title {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.timeline-desc {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

.timeline-phase {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ======================
   미션/비전/가치 & 인재상
   ====================== */
.mission-vision {
    background: white;
}

.ideal-profile {
    background: var(--light-gray);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.mvv-item {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mvv-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.mvv-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: white;
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    margin: 0 auto 2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.mvv-item h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-size: 1.5rem;
    font-weight: 600;
}

.mvv-item p {
    line-height: 1.6;
    color: #666;
}


/* ======================
   보유 인증
   ====================== */
.certificate {
    background: white;
}

.org-cert {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 4rem auto 0;
    padding: 0 1rem;
}

.org-cert img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 0 auto;
    display: block;
}


/* 조직 구조 */
.organization {
    background: var(--light-gray);
}

/* --- 조직도 컨테이너 --- */
.org-chart {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 4rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* --- 공통 org-item 기본 스타일 --- */
.org-item {
    background: white;
    padding: 1.2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.org-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/* .org-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
} */

.org-title {
    font-weight: 600;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.org-dept {
    color: #666;
    font-size: 0.95rem;
}


/* --- 1계층: 대표이사 (7칸 중앙) --- */
.org-level:nth-child(1) {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    padding: 1rem;
}

.org-level:nth-child(1) .org-item {
    grid-column: 3 / span 3;
    padding: 1rem;
}


/* --- 2계층: 기업부설연구소(좌) / 자문위원회(우) --- */
.org-level:nth-child(2) {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.8rem;
}

.org-level:nth-child(2) .org-item:nth-child(1) {
    grid-column: 1 / 3;
}
.org-level:nth-child(2) .org-item:nth-child(2) {
    grid-column: 6 / 8;
}

.org-level:nth-child(2) .org-item {
    padding: 0.5rem;
}

.org-level:nth-child(2) .org-item::before {
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
}


/* --- 3계층: 본부 5개 (사업본부 2칸, 기술본부 2칸) --- */
.org-level:nth-child(3) {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
}

.org-level:nth-child(3) .org-item:nth-child(1) {
    grid-column: 1;
}
.org-level:nth-child(3) .org-item:nth-child(2) {
    grid-column: 2;
}
.org-level:nth-child(3) .org-item:nth-child(3) {
    grid-column: 3 / 5;
}
.org-level:nth-child(3) .org-item:nth-child(4) {
    grid-column: 5 / 7;
}
.org-level:nth-child(3) .org-item:nth-child(5) {
    grid-column: 7;
}

.org-level:nth-child(3) .org-item {
    background: rgba(121, 205, 52, 0.5);
    padding: 1rem 0.8rem;
    overflow: visible;
}

.org-level:nth-child(3) .org-item::before { display: none; }

.org-level:nth-child(3) .org-title {
    background: #666;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.org-level:nth-child(3) .org-item:hover {
    background: rgba(121, 205, 52, 0.6);
}


/* --- 4계층: 팀 5개 (기술부 2칸) --- */
.org-level:nth-child(4) {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
}

.org-level:nth-child(4) .org-item:nth-child(1) {
    grid-column: 1;
}
.org-level:nth-child(4) .org-item:nth-child(2) {
    grid-column: 2;
}
.org-level:nth-child(4) .org-item:nth-child(3) {
    grid-column: 3;
}
.org-level:nth-child(4) .org-item:nth-child(4) {
    grid-column: 4;
}
.org-level:nth-child(4) .org-item:nth-child(5) {
    grid-column: 5;
}

.org-level:nth-child(4) .org-item:nth-child(6) {
    grid-column: 6;
}
.org-level:nth-child(4) .org-item:nth-child(7) {
    grid-column: 7;
}

.org-level:nth-child(4) .org-item {
    padding: 1rem 0.8rem;
}

.org-level:nth-child(4) .org-title {
    font-size: 1rem;
}


/* --- 5계층: 부서, 팀별 업무, 역할--- */
.org-level:nth-child(5) {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
}

.org-level:nth-child(5) .org-item:nth-child(1) { grid-column: 1; }
.org-level:nth-child(5) .org-item:nth-child(2) { grid-column: 2 / 5; }
.org-level:nth-child(5) .org-item:nth-child(3) { grid-column: 5 / 7; }

.org-level:nth-child(5) .org-item {
    background: rgba(121, 205, 52, 0.1);
    padding: 1rem 0.8rem;
}

.org-level:nth-child(5) .org-item::before { display: none; }

.org-level:nth-child(5) .org-title {
    background: #666;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.95rem;
}

.org-level:nth-child(5) .org-dept {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.3;
}

.org-level:nth-child(5) .org-item:hover {
    background: rgb(96 239 221 / 0.4);
}

/* 조직도 선 연결 */

/* 레벨 wrapper에 position: relative 추가 */
.org-level:nth-child(1),
.org-level:nth-child(2) {
    position: relative;
}

/* 연결선보다 박스가 앞에 오도록 */
.org-level:nth-child(2) .org-item {
    z-index: 2;
}

/* CEO(1계층) 하단 수직선 - 3계층까지 내려오도록 길게 */
.org-level:nth-child(1)::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 7rem; 
    background: #7CB342;
    z-index: 3;
}

/* 2계층 수평선 - 중앙(대표이사 수직선)에서 좌우로만 */
.org-level:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 14%;
    right: 14%;
    height: 2px;
    background: #7CB342;
    transform: translateY(-50%);
    z-index: 1;
}
/* 2계층 박스 z-index 유지 */
.org-level:nth-child(2) .org-item {
    z-index: 2;
}

/* 3계층에 position 추가 */
.org-level:nth-child(3) {
    position: relative;
    margin-top: 4rem;
}

/* 3계층 상단 수평선 (본부 5개 연결) */
.org-level:nth-child(3)::before {
    content: '';
    position: absolute;
    top: -3.1rem;
    left: calc(100% / 15.2);
    right: calc(100% / 15.2);
    height: 2px;
    background: #7CB342;
    z-index: 1;
}

/* 3계층 각 본부 상단 수직선 */
.org-level:nth-child(3) .org-item::after {
    content: '';
    position: absolute;
    top: -3.1rem;    /* 수평선 위치까지 올라가도록 */
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 3.1rem;  /* top과 같은 값 */
    background: #7CB342;
    z-index: 1;
}

/* 반응형 디자인 */

/* --- 태블릿 (1024px 이하) --- */
@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .overview-stats {
        grid-template-columns: 1fr 1fr;
    }

    .journey-timeline::before {
        left: 2rem;
    }

    .timeline-item {
        justify-content: flex-start !important;
    }

    .timeline-content {
        width: calc(100% - 5rem) !important;
        margin-left: 5rem !important;
        margin-right: 0 !important;
        margin-bottom: 1rem;
    }

    .timeline-content::before {
        left: -30px !important;
        right: auto !important;
        border-right-color: white !important;
        border-left-color: transparent !important;
    }

    .timeline-dot {
        left: 2rem !important;
        transform: translate(-50%, -50%) !important;
    }
}

/* ══════════════════════════════════
   보유인증 Swiper (PC 기본)
   ══════════════════════════════════ */
.cert-swiper {
    width: 100%;
    padding: 1.5rem 3rem 3rem;
    margin-top: 3rem;
}

.cert-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cert-swiper .swiper-slide img {
    width: auto;
    max-width: 340px;
    max-height: 440px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cert-swiper .swiper-slide img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

.cert-swiper .swiper-button-next,
.cert-swiper .swiper-button-prev {
    color: var(--primary-color);
}

.cert-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.cert-swiper .swiper-pagination-fraction {
    font-size: 0.95rem;
    font-weight: 600;
    color: #555;
    bottom: 0;
}

/* ══════════════════════════════════
   보유인증 모달 (클릭 시 확대)
   ══════════════════════════════════ */
.cert-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.cert-modal.active {
    display: flex;
}

.cert-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
}

.cert-modal-inner {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-modal-inner img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.cert-modal-close {
    position: absolute;
    top: -44px;
    right: 0;
    font-size: 2.2rem;
    line-height: 1;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.cert-modal-close:hover { opacity: 1; }

/* ══════════════════════════════════
   모바일 반응형 (768px 이하)
   ══════════════════════════════════ */
@media (max-width: 768px) {

    /* ── 전체 섹션 여백 축소 ── */
    .company-overview .container,
    .ceo-section .container,
    .journey .container,
    .mission-vision .container,
    .ideal-profile .container,
    .certificate .container,
    .organization .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* ── 회사 개요 ── */
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .overview-text h3 { font-size: 1.3rem; margin-bottom: 1rem; }
    .overview-text p  { font-size: 0.9rem; margin-bottom: 1rem; }

    .overview-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-item { padding: 1.2rem 0.8rem; border-radius: 14px; }
    .stat-number:not(:last-child) { font-size: 2rem; }
    .stat-number:last-child       { font-size: 1.1rem; line-height: 1.3; }
    .stat-label { font-size: 0.82rem; }

    /* ── CEO ── */
    .ceo-section { padding: 3rem 0; }
    .ceo-message { flex-direction: column; align-items: center; gap: 1.5rem; }
    .ceo-image   { width: 160px; top: 0; }
    .ceo-text    { font-size: 0.88rem; text-align: left; max-width: 100%; }
    .ceo-sign    { top: 0; justify-content: center; }
    .ceo-sign img { max-width: 150px; }

    /* ── 타임라인 ── */
    .journey-timeline::before { left: 1.2rem; }

    .timeline-content {
        width: calc(100% - 3rem) !important;
        margin-left: 3rem !important;
        margin-right: 0 !important;
        margin-bottom: 1rem;
        padding: 1rem;
    }

    .timeline-dot { left: 1.2rem !important; }

    .timeline-year { font-size: 1rem; }
    .timeline-desc { font-size: 0.82rem; line-height: 1.5; }

    /* ── 미션/비전 · 인재상 ── */
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
        margin-top: 1.2rem;
    }

    .mvv-item {
        padding: 1.2rem 1rem;
        border-radius: 12px;
        display: grid;
        grid-template-columns: 44px 1fr;
        grid-template-rows: auto 1fr;
        column-gap: 1rem;
        row-gap: 0.3rem;
        text-align: left;
    }

    .mvv-item::before { display: none; }

    .mvv-icon {
        grid-column: 1;
        grid-row: 1 / 3;
        align-self: center;
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 1.3rem;
        margin: 0;
        border-radius: 12px;
    }

    .mvv-item h3 {
        grid-column: 2;
        grid-row: 1;
        align-self: start;
        font-size: 1rem;
        margin-bottom: 0;
    }

    .mvv-item p {
        grid-column: 2;
        grid-row: 2;
        align-self: end;
        font-size: 0.84rem;
        line-height: 1.5;
    }

    /* ── 보유인증 Swiper (모바일: 1개) ── */
    .cert-swiper {
        padding: 1rem 2.5rem 2.5rem;
        margin-top: 1.5rem;
    }

    .cert-swiper .swiper-slide img {
        max-width: 240px;
        max-height: 300px;
    }

    /* ════════════════════════════
       조직도 모바일 — 수직 트리
       ════════════════════════════ */
    .organization .container {
        overflow-x: visible;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .org-chart {
        min-width: unset;
        gap: 0;           /* 레벨 간 간격은 세로선으로 표현 */
        margin-top: 2rem;
    }

    /* ── 가로 연결선 전부 숨김 ── */
    .org-level:nth-child(1)::after,
    .org-level:nth-child(2)::before,
    .org-level:nth-child(3)::before,
    .org-level:nth-child(3) .org-item::after {
        display: none !important;
    }

    /* ── 레벨 2 ::before: 전체높이 배경 → 4px 상단 테두리로 복원 ── */
    .org-level:nth-child(2) .org-item::before {
        height: 4px !important;
        opacity: 1 !important;
    }

    /* ── 모든 레벨: flex-direction column, 중앙 정렬 ── */
    .org-level:nth-child(1),
    .org-level:nth-child(2),
    .org-level:nth-child(3),
    .org-level:nth-child(4),
    .org-level:nth-child(5) {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
        padding: 0 !important;
        margin-top: 0 !important;
        position: relative;
    }

    /* ── 레벨 간 세로선 ── */
    .org-level:nth-child(1),
    .org-level:nth-child(2),
    .org-level:nth-child(3),
    .org-level:nth-child(4) {
        padding-bottom: 20px !important;
    }

    .org-level:nth-child(1)::after,
    .org-level:nth-child(2)::after,
    .org-level:nth-child(3)::after,
    .org-level:nth-child(4)::after {
        content: '';
        display: block !important;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 20px;
        background: #7CB342;
        z-index: 1;
    }

    /* ── 모든 아이템: grid-column 초기화, 너비 85% ── */
    .org-level:nth-child(1) .org-item,
    .org-level:nth-child(2) .org-item,
    .org-level:nth-child(3) .org-item,
    .org-level:nth-child(4) .org-item,
    .org-level:nth-child(5) .org-item {
        grid-column: auto !important;
        width: 85% !important;
        max-width: 340px !important;
        overflow: hidden !important;
        padding: 0.9rem 1rem !important;
    }

    /* ── 레벨 3: overflow hidden 복원 ── */
    .org-level:nth-child(3) .org-item {
        overflow: hidden !important;
    }

    /* ── 레벨 3 마지막 레벨 세로선 없음 ── */
    .org-level:nth-child(5)::after { display: none !important; }

    /* ── 폰트 크기: PC 수준 유지 ── */
    .org-title { font-size: 1rem !important; }
    .org-dept  { font-size: 0.85rem !important; }
}

/* ══════════════════════════════════
   소형 모바일 (480px 이하)
   ══════════════════════════════════ */
@media (max-width: 480px) {
    .overview-stats { grid-template-columns: 1fr 1fr; }
    .timeline-content { padding: 0.8rem; }

    .cert-swiper .swiper-slide img {
        max-width: 200px;
        max-height: 260px;
    }

    .org-level:nth-child(1) .org-item,
    .org-level:nth-child(2) .org-item,
    .org-level:nth-child(3) .org-item,
    .org-level:nth-child(4) .org-item,
    .org-level:nth-child(5) .org-item {
        width: 92% !important;
    }
}