
		.btn_profit{
			position: relative;
			max-width: 1210px;
    		margin: 0 auto;
		}

		.btn_profit a{
			display:block;
			position: absolute;
			right: 0;
			width: 100px;
			height: 100px;
			text-align: center;
			font-weight: 500;
			color: #e02b27;
			line-height: 95px;
			border: 1px solid #e02b27;
			border-radius: 50px;
		}

		.btn_profit a:hover{
			background-color: #e02b27;
			color:#fff;
        }
        
        
        @media all and (max-width: 960px) {
            .btn_profit a{
                top:50px;
                right: 20px;
                width: 60px;
                height: 60px;
                font-size: 10px;
                line-height: 60px;
            }
        }

/* ===== 조직도 HTML/CSS ===== */
.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 40px 0 60px;
}

/* 대표이사 — 아래쪽 수직선 포함 */
.org-ceo-wrap {
    display: flex;
    justify-content: center;
    padding-bottom: 40px;
    position: relative;
}
.org-ceo-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    background: #ccc;
}
.org-node-ceo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 8px solid #e02b27;
    background: #fff;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    text-align: center;
    line-height: 1.6;
}

/* 감사 + 기술연구소 행
   ::before: 수직 spine 이 행 상단부터 40px 아래까지 관통
   수평선이 spine 과 교차하는 접점에 빨간 점 */
.org-staff-row {
    display: flex;
    align-items: center;
    width: 580px;
    max-width: 100%;
    position: relative;
}
.org-staff-row::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: -40px;
    width: 2px;
    background: #ccc;
    z-index: 0;
}
.org-hline-fill {
    flex: 1;
    height: 2px;
    background: #ccc;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.org-node-staff {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px solid #ccc;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    text-align: center;
    line-height: 1.7;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

/* 부서 수평 연결선 + 각 열 수직선
   margin-top:40px 으로 staff-row::before 와 정확히 이어짐 */
.org-dept-bridge {
    display: flex;
    width: 720px;
    max-width: 100%;
    margin-top: 40px;
    position: relative;
}
/* 수평선: 첫 번째 ~ 마지막 열 중앙(12.5% ~ 87.5%)만 */
.org-dept-bridge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: #ccc;
}
.org-bridge-item {
    flex: 1;
    height: 40px;
    display: flex;
    justify-content: center;
    position: relative;
}
.org-bridge-item::after {
    content: '';
    width: 2px;
    height: 100%;
    background: #ccc;
}
.org-bridge-item {
    flex: 1;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}
.org-bridge-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #ccc;
}

/* 접점 빨간 점 — 링 + 펄스 애니메이션 */
@keyframes org-dot-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(224, 43, 39, 0.5); }
    70%  { box-shadow: 0 0 0 7px rgba(224, 43, 39, 0); }
    100% { box-shadow: 0 0 0 0 rgba(224, 43, 39, 0); }
}
.org-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e02b27;
    border: 2px solid #fff;
    outline: 2px solid #e02b27;
    position: relative;
    z-index: 3;
    animation: org-dot-pulse 2s infinite;
}

.org-dot-dark {
    background: #444;
    outline-color: #444;
    animation-name: org-dot-pulse-dark;
}
@keyframes org-dot-pulse-dark {
    0%   { box-shadow: 0 0 0 0 rgba(68, 68, 68, 0.5); }
    70%  { box-shadow: 0 0 0 7px rgba(68, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(68, 68, 68, 0); }
}

/* 부서 행 */
.org-dept-row {
    display: flex;
    width: 720px;
    max-width: 100%;
}
.org-dept-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 8px;
}
.org-dept-head {
    width: 100%;
    padding: 10px 0;
    background: #333;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    border-radius: 30px;
}
.org-dept-manager {
    width: 100%;
    padding: 8px 0;
    background: #fff;
    color: #333;
    font-size: 13px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 30px;
}
.org-dept-team {
    width: 90%;
    padding: 8px 0;
    background: #888;
    color: #fff;
    font-size: 13px;
    text-align: center;
    border-radius: 30px;
}

/* 도넛 차트 */
.org-donut-wrap {
    display: flex;
    justify-content: center;
    padding: 60px 20px 20px;
}
.donut-svg-desktop { display: block; }
.donut-mobile       { display: none; }

.donut-mobile {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}
.donut-mobile-legend {
    list-style: none;
    width: 100%;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.donut-mobile-legend li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
}
.donut-mobile-legend li span:first-child {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}
.donut-mobile-legend li span:nth-child(2) {
    flex: 1;
}
.donut-mobile-legend li strong {
    font-size: 15px;
}

/* ── 인사말 모바일 레이아웃 ── */
@media all and (max-width: 768px) {
    .greeting-inner h3 {
        padding-right: 20px !important;
    }
    .greeting-box.box {
        padding-right: 20px !important;
        display: flex;
        flex-direction: column;
    }
    .greeting-box.box .ceo-img {
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        text-align: center;
        margin-top: 20px;
    }
    .greeting-box.box .ceo-img img {
        width: 200px !important;
        height: auto !important;
    }
}

/* ── 반응형: 태블릿 (960px 이하) ── */
@media all and (max-width: 960px) {
    .org-staff-row { width: 100%; padding: 0 20px; box-sizing: border-box; }
    .org-dept-bridge, .org-dept-row { width: 100%; }
    .org-dept-col { padding: 0 5px; }
    .org-dept-head { font-size: 12px; }
    .org-dept-manager, .org-dept-team { font-size: 11px; }
}

/* ── 반응형: 모바일 (600px 이하) ── */
@media all and (max-width: 600px) {
    /* CEO + 스태프 */
    .org-node-ceo  { width: 110px; height: 110px; font-size: 14px; border-width: 6px; }
    .org-node-staff { width: 85px; height: 85px; font-size: 12px; }

    /* 부서: 2열 그리드 */
    .org-dept-bridge { display: none; }
    .org-dept-row {
        flex-wrap: wrap;
        margin-top: 32px;
        gap: 0;
    }
    .org-dept-col {
        flex: 0 0 50%;
        box-sizing: border-box;
        padding: 10px 8px;
        border-top: 2px dashed #e0e0e0;
    }
    .org-dept-col:nth-child(odd)  { border-right: 1px dashed #e0e0e0; }
    .org-dept-col:nth-child(even) { border-left: 1px dashed #e0e0e0; }
    .org-dept-head    { font-size: 12px; padding: 9px 0; }
    .org-dept-manager { font-size: 12px; padding: 7px 0; }
    .org-dept-team    { font-size: 11px; padding: 7px 0; }

    /* 도넛: 모바일 버전으로 교체 */
    .donut-svg-desktop { display: none; }
    .donut-mobile      { display: flex; }
}

/* ── 반응형: 소형 모바일 (400px 이하) ── */
@media all and (max-width: 400px) {
    .org-node-ceo   { width: 95px; height: 95px; font-size: 13px; }
    .org-node-staff { width: 72px; height: 72px; font-size: 11px; }
    .org-hline-fill .org-dot { width: 6px; height: 6px; }
    .org-dept-head    { font-size: 11px; border-radius: 20px; }
    .org-dept-manager { font-size: 11px; }
    .org-dept-team    { font-size: 10px; }
    .org-ceo-wrap     { padding-bottom: 30px; }
    .org-staff-row::before { bottom: -30px; }
    .org-dept-bridge  { margin-top: 30px; }
}