:root {
    --page-hero-bg: linear-gradient(180deg, rgba(43, 57, 133, 0.08) 0%, rgba(223, 233, 247, 0.55) 100%);
}

.padding0{padding:0;}
.margintop0{margin-top:0;}
.margintop20{margin-top:20px;}
.margintop100{margin-top:100px;}
.bordernone{border:none;}
li.stylenone{list-style:none !important; padding:0; margin:0;}
.breadcrumb-wrap {
    padding: 18px 0 0;
    display: flex;
    justify-content: start;
    padding-left: 20px;
}
.border-box{border: 1px solid var(--color-border-default); box-sizing:border-box;}
.colG{
  width: fit-content; /* 너비를 텍스트 길이에 맞춤 */
  background-color:#3481f3; padding:0.12rem 0.68rem; box-sizing:border-box; color:#fff; border-radius:14px; font-weight: 500;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--color-text-muted);
    font-size: 14px;
}
.textcenter{
    text-align:center;
}
.fsize145{font-size:1.45rem;}

.breadcrumb li + li::before {
    content: "/";
    margin-right: 8px;
    color: var(--color-border-strong);
}

.breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.breadcrumb a img {
    display: block;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.subpage-main {
    padding: 24px 0 96px;
}

.page-hero {
    margin-top: 24px;
    padding: 40px 44px;
    border: 1px solid var(--color-border-default);
    border-radius: 28px;
/*     background: var(--page-hero-bg); */
	background: url(../images/page-hero-bg01.jpg) center center;
    background-size: cover;
    box-shadow: var(--shadow-soft);
}

.page-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.22;
}

.page-hero p {
    margin: 0;
    max-width: 800px;
    color: var(--color-text-secondary);
    font-size: 18px;
}

.subpage-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    margin-top: 28px;
    align-items: start;
}

.subpage-layout > * {
    min-width: 0;
}

.side-nav {
    position: sticky;
    top: 120px;
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    border: 1px solid var(--color-border-default);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.side-nav__head {
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--color-border-default);
	position:relative;
	z-index:1;
    color:#fff;
    margin-bottom: 20px;
    /* padding-bottom: 14px; */
    border-bottom: 1px solid var(--color-border-default);
    position:relative;
    z-index:1;
    background: linear-gradient(158deg, #3f55cd 0%, #2b3985 100%);
    padding: 1.42rem;
    border-radius: 14px;
}
.side-nav__head::after{
/*    display:block;
    content: '';
    clear: both;
    width: 0;
    height: 20px;
    border-bottom: 25px solid #cbcbcb;
    border-top: 30px solid transparent;
    border-left: 18px solid #e3e3e3;
    border-right: 37px solid transparent;
    position: absolute;
    left: -14px;
    top: -34px;
    z-index: 2;
    rotate: 90deg; */
}
.side-nav__head p {
    color:#fff;
	font-weight:700;
}
.side-nav__head h2 {
    margin: 0;
    font-size: 16px;
    line-height: 1.45;
	color:#a19ff5;
}

.side-nav ul {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.side-nav li {
    border-radius: 14px;
}

.side-nav a {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    text-decoration: none;
    color: var(--color-text-secondary);
    font-weight: 700;
}

.side-nav li.is-active a,
.side-nav a:hover,
.side-nav a:focus-visible {
    background: rgba(43, 57, 133, 0.08);
    color: var(--color-brand-primary);
}

.page-content {
    display: grid;
    gap: 24px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
/*     overflow-x: hidden; */
}

.content-section {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 32px;
    border: 1px solid var(--color-border-default);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-soft);
	max-width:944px;
    overflow-x: hidden;
}

.content-section h2 {
    margin: 0 0 14px;
    font-size: 28px;
}

.content-section p {
    margin: 0;
    color: var(--color-text-secondary);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}
.feature-grid2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}
.feature-grid3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.feature-card {
    padding: 22px;
    border: 1px solid var(--color-border-default);
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.feature-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.4;
}

.feature-card p {
    font-size: 15px;
}

.point-list {
    display: grid;
    gap: 12px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.point-list li {
    position: relative;
    padding-left: 16px;
    color: var(--color-text-secondary);
}

.point-list li span {
    width:100%;
	display:inline-block;
	margin-top:6px;
}

.point-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent-sky);
}
.point-list-none li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent-sky);
	display:none;
}


.step-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.step-grid1 {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.step-grid img{
    display:block;
    width: 100%;       /* 부모 영역의 100%를 채우려고 시도함 */
    max-width: 100%;   /* 하지만 이미지의 본래 너비(100%)를 넘지는 않음 */
    height: auto;      /* 비율 유지 */
}

.step-card {
    padding: 22px;
    border-radius: 20px;
    background: linear-gradient(180deg, #eef4fb 0%, #ffffff 100%);
    border: 1px solid var(--color-border-default);
}

.step-card-bgcolw {
    background:#fff;
}

.step-card span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--color-brand-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.step-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
}




/* --------------------------------------------------------------------
오시는 길
-------------------------------------------------------------------- */
.map-area{}
.map-area div{}
.map-area div p{}
.map-area div p span{
	display:inline-block;
	vertical-align:middle;
}




.cta-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
    padding: 32px;
    border-radius: 24px;
    background: linear-gradient(135deg, #1d2138 0%, #2f407f 60%, #4665aa 100%);
    color: #fff;
}

.cta-panel h2,
.cta-panel p {
    color: #fff;
}

.cta-panel h2 {
    margin: 0 0 12px;
    font-size: 30px;
}

.cta-panel p {
    margin: 0;
    max-width: 640px;
}

.cta-panel__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 220px;
}

.subpage-footer {
    margin-top: 0;
}

@media (max-width: 1024px) {
    .subpage-layout {
        grid-template-columns: 1fr;
    }

    .side-nav {
        position: static;
    }

    .feature-grid,
    .step-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-panel {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 768px) {
    .subpage-layout {
        gap: 16px;
    }

    .page-hero,
    .content-section,
    .cta-panel {
        padding: 24px;
    }

    .page-hero,
    .side-nav,
    .content-section,
    .cta-panel,
    .search-form-panel,
    .org-chart-scroll {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .content-section {
        max-width: 100%;
    }

    .side-nav {
        padding: 12px;
    }

    .feature-grid,
    .step-grid {
        grid-template-columns: 1fr;
    }

    .cta-panel__actions {
        min-width: 0;
    }
}

.search-form-panel {
    padding: 28px;
    border: 1px solid var(--color-border-default);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.search-form-panel .search-box {
    margin-top: 0;
}

.search-results {
    display: grid;
    gap: 16px;
}

.search-results__toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.search-results__meta {
    color: var(--color-text-secondary);
    font-size: 15px;
    margin: 0;
}

.search-sort {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-secondary);
    font-size: 14px;
    font-weight: 700;
}

.search-sort select {
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid var(--color-border-default);
    border-radius: 12px;
    background: #fff;
    color: var(--color-text-primary);
}

.search-result-card {
    padding: 24px;
    border: 1px solid var(--color-border-default);
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: var(--shadow-soft);
	margin-bottom: 12px;
}
.search-result-card:last-child{
	margin-bottom: 0;	
}

.search-result-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.search-result-card__section {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(43, 57, 133, 0.08);
    color: var(--color-brand-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.search-result-card__board {
    color: var(--color-text-muted);
    font-size: 13px;
    font-weight: 700;
}

.search-result-card h2 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.4;
}

.search-result-card p {
    margin: 0 0 14px;
    color: var(--color-text-secondary);
}

.search-result-card__link {
    color: var(--color-brand-primary);
    font-weight: 700;
    text-decoration: none;
}

.search-result-card mark {
    padding: 0 2px;
    background: rgba(247, 118, 60, 0.18);
    color: inherit;
    border-radius: 4px;
}

.search-empty {
    padding: 32px;
    border: 1px dashed var(--color-border-strong);
    border-radius: 20px;
    background: rgba(238, 243, 248, 0.45);
}

.search-empty h2 {
    margin: 0 0 10px;
    font-size: 24px;
}

.search-empty p {
    margin: 0;
    color: var(--color-text-secondary);
}






/*  
----------------------------------------------------------------------------
안전보건교육 테이블 css
----------------------------------------------------------------------------
*/
.safety-edu-table {
  width: 100%;
  border-collapse: collapse;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 1.6;
  background:#fff;
}

.safety-edu-table th, 
.safety-edu-table td {
  border: 1px solid #999;
  padding: 12px;
  text-align: left;
}

.safety-edu-table thead th {
/*   background-color: #3b5998; */
  background: rgba(43, 57, 133, 0.08);
  color: #111;
  text-align: center;
  font-weight: normal;
}

.safety-edu-table td.category {
  text-align: center;
  font-weight: bold;
  background-color: #fff;
  width: 15%;
}

.red-text {
  color: #d93025; /* 이미지의 강조된 빨간색 텍스트 */
}

/* 마우스 오버 시 가독성을 위한 효과 (선택사항) */
.safety-edu-table tr:hover {
  background-color: #f9f9f9;
}



/* 
----------------------------------------------------------------------------
회사연혁 css
----------------------------------------------------------------------------
*/
:root {
    --primary-color: #4451A0;    /* 메인 블루 */
    --accent-green: #00a441;    /* 포인트 그린 */
    --text-dark: #333;
    --text-gray: #666;
    --line-color: #e0e0e0;
}

.feature-grid.history-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
}

.history-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    padding-bottom: 40px;
}

/* 타임라인 수직선 */
.history-item::before {
    content: "";
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: 0;
    width: 2px;
    background: var(--line-color);
    z-index: 1;
}

.history-item:last-child::before {
    display: none;
}

/* SVG 연도 아이콘 */
.history-svg-wrapper {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
}

.history-svg-wrapper svg {
    width: 100%;
    height: 100%;
}

/* 내용 영역 */
.history-content {
    padding-top: 10px;
    flex-grow: 1;
}

.history-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.history-row {
    display: flex;
    margin-bottom: 12px;
    line-height: 1.6;
}

.history-month {
    font-weight: 700;
    color: var(--primary-color);
    min-width: 45px;
    margin-right: 15px;
}

.history-desc {
    color: #111;
    font-size: 0.95rem;
    word-break: keep-all;
}

.history-desc span {
    color: var(--accent-green);
    font-weight: 600;
}

/* 반응형 모바일 */
@media (max-width: 600px) {
    .history-item { gap: 15px; }
    .history-svg-wrapper { width: 60px; height: 60px; }
    .history-item::before { left: 30px; top: 60px; }
    .history-month { min-width: 35px; margin-right: 10px; }
}




/* 
----------------------------------------------------------------------------
수상내역 css
----------------------------------------------------------------------------
*/
/* 기본 스타일 */
.awards-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "Malgun Gothic", sans-serif;
  color: #333;
}

/* 이미지 빈칸(Placeholder) 스타일 */
.image-box {
  background-color: #f2f2f2;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 13px;
}

/* 상단 사진 1개 씩 */
.photo-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-direction: column;
}

.main-photo {
  flex: 1;
  height: 250px;
}

/* 제목 및 수상자 */
.award-info {
  text-align: center;
  margin-bottom: 30px;
}

.award-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}

.awardee {
  font-size: 15px;
  color: #666;
}

/* 공적 내용 및 표창장 레이아웃 */
.merit-container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.merit-text {
  flex: 1;
}

.merit-badge {
  display: inline-block;
  background-color: #00aeef;
  color: #fff;
  padding: 4px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
}

.merit-text ul {
  padding-left: 20px;
  margin: 0;
}

.merit-text li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
  list-style-type: disc;
}

.merit-desc {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 5px;
}

/* 표창장 이미지 영역 */
.certificate-photo {
  width: 200px;
  height: 280px;
  flex-shrink: 0;
}

.certificate-photo.small {
  height: 200px; /* 메달이 포함된 하단 표창장 크기 조정 */
}

/* 구분선 */
.section-divider {
  border: 0;
  border-top: 1px solid #eee;
  margin: 50px 0;
}





/* 
----------------------------------------------------------------------------
조직도 css
----------------------------------------------------------------------------
*/

.org-chart-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  width: max-content;
  min-width: 760px;
  margin: 0 auto;
  font-family: "Malgun Gothic", sans-serif;
  background-color: #fff;
}

.org-chart-scroll {
  width: 100%;
  display: block;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  background: #fff;
  border: 1px solid #eef0f2;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* 노드 공통 스타일 */
.node {
  padding: 12px 30px;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  font-size: 15px;
  text-align: center;
  min-width: 120px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* 색상 정의 */
.ceo { background-color: #1a237e; } /* 진한 남색 */
.director { background-color: #7986cb; } /* 연한 파란색 */
.committee { background-color: #3f51b5; } /* 중간 파란색 */
.team { background-color: #888; } /* 회색 */

/* 세로 연결선 */
.vertical-line {
  width: 1px;
  height: 40px;
  background-color: #ccc;
}

/* 3단계 레이아웃 (운영위원회 & 자문위원) */
.org-row {
  display: flex;
  align-items: center;
  position: relative;
}

.committee-row {
  gap: 182px; /* 좌우 간격 */
}

.horizontal-connector {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 1px;
  background-color: #ccc;
  z-index: 0;
}

/* 자문위원 설명 박스 */
.advisor-group {
  position: relative;
}

.advisor-desc {
  position: absolute;
  top: 60px;
  left: 0;
  width: 250px;
  padding: 15px;
  border: 1px solid #ddd;
  background-color: #fff;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

.advisor-desc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.advisor-desc li::before {
  content: "- ";
}

/* 하단 팀 브랜치 스타일 */
.team-branch-container {
  width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-bridge {
  width: 1px;
  height: 150px;
  background-color: #ccc;
}

.team-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid #ccc; /* 가로 연결선 */
  padding-top: 0;
}

.team-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 33%;
}

.bridge {
  width: 1px;
  height: 20px;
  background-color: #ccc;
}

@media (max-width: 767px) {
  .content-section--org-chart {
    overflow: hidden;
  }

  .content-section--org-chart .org-chart-scroll {
    width: calc(100% + 48px);
    margin: 0 -24px;
    padding: 0 24px 8px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .org-chart-scroll {
    padding-bottom: 8px;
  }

  .org-chart-container {
    margin: 0;
    padding: 24px 20px 32px;
  }
}



/* 
----------------------------------------------------------------------------
부서안내
----------------------------------------------------------------------------
*/
.content-section .feature-grid .dept-tabs {
    width: 100%;
	max-width:878px;
    color: #1f2937;
    overflow:hidden;
}

.content-section .feature-grid .dept-tabs .dept-tabs__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.content-section .feature-grid .dept-tabs .dept-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
    padding: 6px;
    border: 1px solid rgba(68, 81, 160, 0.10);
    border-radius: 999px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.content-section .feature-grid .dept-tabs .dept-tabs__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.25s ease;
    user-select: none;
    white-space: nowrap;
}

.content-section .feature-grid .dept-tabs .dept-tabs__label:hover {
    background: rgba(68, 81, 160, 0.08);
    color: #1f2937;
}

.content-section .feature-grid .dept-tabs .dept-tabs__panels {
    position: relative;
}

.content-section .feature-grid .dept-tabs .dept-panel {
    display: none;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.content-section .feature-grid .dept-tabs .dept-panel__head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 24px 0;
}

.content-section .feature-grid .dept-tabs .dept-panel__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.content-section .feature-grid .dept-tabs .dept-panel__title {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #1f2937;
}

.content-section .feature-grid .dept-tabs .dept-table-wrap {
    padding: 20px 24px 24px;
    overflow-x: auto;
}

.content-section .feature-grid .dept-tabs .dept-table {
    width: 100%;
    min-width: 774px;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}

.content-section .feature-grid .dept-tabs .dept-table thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    padding: 16px 14px;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.02em;
}

.content-section .feature-grid .dept-tabs .dept-table tbody td {
    padding: 18px 16px;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: middle;
    background: rgba(255, 255, 255, 0.82);
    transition: background 0.2s ease;
    color: #1f2937;
}

.content-section .feature-grid .dept-tabs .dept-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.96);
}

.content-section .feature-grid .dept-tabs .dept-table tbody tr:last-child td {
    border-bottom: 0;
}

.content-section .feature-grid .dept-tabs .dept-table td:first-child,
.content-section .feature-grid .dept-tabs .dept-table td:nth-child(2),
.content-section .feature-grid .dept-tabs .dept-table td:nth-child(3),
.content-section .feature-grid .dept-tabs .dept-table td:last-child {
    text-align: center;
}

.content-section .feature-grid .dept-tabs .dept-table__name {
    font-weight: 800;
    font-size: 16px;
    letter-spacing: -0.02em;
}

.content-section .feature-grid .dept-tabs .dept-table__center {
    text-align: center;
}

.content-section .feature-grid .dept-tabs .dept-table__phone {
    font-weight: 700;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.content-section .feature-grid .dept-tabs .dept-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.content-section .feature-grid .dept-tabs .dept-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 700;
    color: #1f2937;
    white-space: nowrap;
}

.content-section .feature-grid .dept-tabs .dept-list {
    margin: 0;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.75;
    color: #1f2937;
}

.content-section .feature-grid .dept-tabs .dept-list li + li {
    margin-top: 4px;
}

.content-section .feature-grid .dept-tabs .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* 패널별 컬러 */
.content-section .feature-grid .dept-tabs .dept-panel--exec {
    border-top: 5px solid #4451A0;
    background: linear-gradient(180deg, rgba(68, 81, 160, 0.05) 0%, #ffffff 22%);
}

.content-section .feature-grid .dept-tabs .dept-panel--exec .dept-panel__badge {
    background: #4451A0;
    color: #ffffff;
}

.content-section .feature-grid .dept-tabs .dept-panel--exec .dept-table thead th {
    color: #4451A0;
}

.content-section .feature-grid .dept-tabs .dept-panel--safe1 {
    border-top: 5px solid #d6c900;
    background: linear-gradient(180deg, rgba(246, 238, 33, 0.14) 0%, #ffffff 22%);
}

.content-section .feature-grid .dept-tabs .dept-panel--safe1 .dept-panel__badge {
    background: #F6EE21;
    color: #4b4500;
}

.content-section .feature-grid .dept-tabs .dept-panel--safe1 .dept-table thead th {
    color: #7a7000;
}

.content-section .feature-grid .dept-tabs .dept-panel--safe2 {
    border-top: 5px solid #00a441;
    background: linear-gradient(180deg, rgba(0, 164, 65, 0.10) 0%, #ffffff 22%);
}

.content-section .feature-grid .dept-tabs .dept-panel--safe2 .dept-panel__badge {
    background: #00a441;
    color: #ffffff;
}

.content-section .feature-grid .dept-tabs .dept-panel--safe2 .dept-table thead th {
    color: #00a441;
}

.content-section .feature-grid .dept-tabs .dept-panel--safe3 {
    border-top: 5px solid #8C117C;
    background: linear-gradient(180deg, rgba(140, 17, 124, 0.10) 0%, #ffffff 22%);
}

.content-section .feature-grid .dept-tabs .dept-panel--safe3 .dept-panel__badge {
    background: #8C117C;
    color: #ffffff;
}

.content-section .feature-grid .dept-tabs .dept-panel--safe3 .dept-table thead th {
    color: #8C117C;
}

.content-section .feature-grid .dept-tabs .dept-panel--admin {
    border-top: 5px solid #4451A0;
    background: linear-gradient(180deg, rgba(68, 81, 160, 0.08) 0%, #ffffff 22%);
}

.content-section .feature-grid .dept-tabs .dept-panel--admin .dept-panel__badge {
    background: rgba(68, 81, 160, 0.12);
    color: #4451A0;
    border: 1px solid rgba(68, 81, 160, 0.16);
}

.content-section .feature-grid .dept-tabs .dept-panel--admin .dept-table thead th {
    color: #4451A0;
}

/* 활성 탭 */
.content-section .feature-grid .dept-tabs #dept-tab-exec:checked ~ .dept-tabs__nav label[for="dept-tab-exec"] {
    background: #4451A0;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(68, 81, 160, 0.28);
}

.content-section .feature-grid .dept-tabs #dept-tab-safe1:checked ~ .dept-tabs__nav label[for="dept-tab-safe1"] {
    background: #F6EE21;
    color: #4b4500;
    box-shadow: 0 10px 24px rgba(246, 238, 33, 0.30);
}

.content-section .feature-grid .dept-tabs #dept-tab-safe2:checked ~ .dept-tabs__nav label[for="dept-tab-safe2"] {
    background: #00a441;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 164, 65, 0.26);
}

.content-section .feature-grid .dept-tabs #dept-tab-safe3:checked ~ .dept-tabs__nav label[for="dept-tab-safe3"] {
    background: #8C117C;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(140, 17, 124, 0.26);
}

.content-section .feature-grid .dept-tabs #dept-tab-admin:checked ~ .dept-tabs__nav label[for="dept-tab-admin"] {
    background: rgba(68, 81, 160, 0.12);
    color: #4451A0;
    box-shadow: 0 10px 24px rgba(68, 81, 160, 0.16);
}

/* 활성 패널 */
.content-section .feature-grid .dept-tabs #dept-tab-exec:checked ~ .dept-tabs__panels .dept-panel--exec,
.content-section .feature-grid .dept-tabs #dept-tab-safe1:checked ~ .dept-tabs__panels .dept-panel--safe1,
.content-section .feature-grid .dept-tabs #dept-tab-safe2:checked ~ .dept-tabs__panels .dept-panel--safe2,
.content-section .feature-grid .dept-tabs #dept-tab-safe3:checked ~ .dept-tabs__panels .dept-panel--safe3,
.content-section .feature-grid .dept-tabs #dept-tab-admin:checked ~ .dept-tabs__panels .dept-panel--admin {
    display: block;
}

/* 반응형 */
@media (max-width: 1024px) {
    .content-section .feature-grid .dept-tabs .dept-table {
        min-width: 980px;
    }
}

@media (max-width: 768px) {
    .content-section .feature-grid .dept-tabs .dept-tabs__nav {
        border-radius: 20px;
        gap: 8px;
        padding: 8px;
    }

    .content-section .feature-grid .dept-tabs .dept-tabs__label {
        flex: 1 1 calc(50% - 8px);
        min-height: 44px;
        padding: 0 14px;
        font-size: 14px;
    }

    .content-section .feature-grid .dept-tabs .dept-panel__head {
        padding: 20px 18px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .content-section .feature-grid .dept-tabs .dept-panel__title {
        font-size: 20px;
    }

    .content-section .feature-grid .dept-tabs .dept-table-wrap {
        padding: 16px 18px 18px;
    }

    .content-section .feature-grid .dept-tabs .dept-table thead th,
    .content-section .feature-grid .dept-tabs .dept-table tbody td {
        padding: 14px 12px;
    }

    .content-section .feature-grid .dept-tabs .dept-list {
        font-size: 13px;
    }
}

@media (max-width: 520px) {
    .content-section .feature-grid .dept-tabs .dept-tabs__label {
        flex: 1 1 100%;
    }
}




/* 
----------------------------------------------------------------------------
장비현황
----------------------------------------------------------------------------
*/

/* 부모 그리드 내 테이블 레이아웃 최적화 */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr; /* 테이블이 그리드 너비를 꽉 채우도록 설정 */
    gap: 2rem;
}

.equipment-table-wrapper {
    width: 100%;
    overflow-x: auto; /* 모바일 대응을 위한 가로 스크롤 */
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef0f2;
}

.inventory-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* 너무 좁아지지 않도록 최소 너비 설정 */
    font-family: 'Pretendard', sans-serif;
    letter-spacing: -0.02em;
}

/* 타이틀 스타일 */
.table-main-title {
    padding: 24px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    background: #fff;
    border-bottom: 1px solid #aaa;
    text-align: center;
}

/* 헤더 스타일 (이미지 컬러 반영) */
.inventory-table thead tr:nth-child(2) th {
    background: rgba(43, 57, 133, 0.08);
    color: #2c3e50;
    font-weight: 600;
    padding: 14px 10px;
    border: 1px solid #dee2e6;
    font-size: 0.95rem;
}

/* 본문 스타일 */
.inventory-table tbody td {
    padding: 12px 10px;
    text-align: center;
    border: 1px solid #eee;
    color: #333;
    font-size: 0.9rem;
    line-height: 1.5;
    vertical-align: middle;
}

/* 열 너비 고정 */
.col-no { width: 8%; }
.col-name { width: 42%; text-align: center !important; padding-left: 20px !important; }
.col-qty { width: 15%; }
.col-vendor { width: 35%; }

/* 마우스 오버 효과 */
.inventory-table tbody tr:hover {
    background-color: #f8fbff;
    transition: 0.2s ease-in-out;
}

/* Zebra Striping (선택 사항: 가독성을 위해) */
.inventory-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}


/* 
----------------------------------------------------------------------------
CI
----------------------------------------------------------------------------
*/

/* CI 전용 컨테이너 스타일 */
.ci-identity-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 2rem 0;
    font-family: 'Pretendard', sans-serif;
}

/* 상단 메인 섹션 */
.ci-header {
    text-align: center;
    background: #ffffff;
    padding: 0.1rem 0.1rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.ci-main-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.main-symbol img {
    height: 120px;
    transition: transform 0.3s ease;
}

.concept-tags {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tag {
    font-size: 1.24rem;
    color: #666;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 50px;
    border: 1px solid #eee;
}
/*
.tag-clean{background:#00A441;}
.tag-confidence{background:#4451A0;}
.tag-communication{background:#F6EE21;}
*/

.tag strong {
    margin-right: 0.5rem;
    font-weight: 700;
}

.tag.clean strong { color: #00a441; }
.tag.confidence strong { color: #4451a0; }
.tag.communication strong { color: #f6ee21; }

.ci-description {
    line-height: 1.8;
    color: #444;
    font-size: 1.12rem;
    word-break: keep-all;
}

/* 로고 변형 그리드 (빨간 박스 영역 대응) */
.logo-variants-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.variant-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.variant-card.wide {
    grid-column: span 2;
}

.variant-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* 이미지 링크 영역 (빨간 라인 표시 부분) */
.logo-link-area {
    display: block;
    background: #fdfdfd;
    border: 1px dashed #ddd; /* 이미지 삽입 전 가이드라인 */
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.logo-link-area:hover {
    border-color: #333;
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.logo-link-area img {
    max-width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
}

.flex-row {
    display: flex;
    gap: 1rem;
}

.flex-row .logo-link-area { flex: 1; }

/* 컬러 팔레트 */
.color-palette {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.color-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #eee;
    flex-direction: column;
	font-size: 1.42rem;
}

.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: var(--point-color);
}

.color-info strong {
    display: block;
    font-size: 1.12rem;
    color: #333;
}

.color-info span {
    font-size: 0.96rem;
    color: #999;
    font-family: monospace;
}

.color-info-text{
    width:100%;
	display:inline-block;
}


/* 반응형 모바일 */
@media (max-width: 768px) {
    .logo-variants-grid, .color-palette { grid-template-columns: 1fr; }
    .variant-card.wide { grid-column: span 1; }
    .flex-row { flex-direction: column; }
}




/* 
----------------------------------------------------------------------------
제안서
----------------------------------------------------------------------------
*/

/* 테이블 래퍼: 그리드 내에서의 여백 및 스크롤 처리 */
.penalty-table-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.standard-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 774px; /* 테이블 구조 유지를 위한 최소 너비 */
    letter-spacing: -0.01em;
}

/* 헤더 스타일: 이미지의 전문적인 다크 네이비 톤 반영 */
.standard-table thead {
/*    background-color: #001a41;  다크 네이비 */
    background-color: #d8dfe9;
}

.standard-table thead th {
    color: #333;
    font-weight: 600;
    padding: 14px 10px;
/*    border: 1px solid rgba(255, 255, 255, 0.15); */
    border: 1px solid rgb(133 133 131 / 15%);
    font-size: 1.04rem;
    vertical-align: middle;
}

/* 과태료 차수 헤더 (2행) */
.sub-th {
/*    background-color: rgba(255, 255, 255, 0.05);  */
    background-color: #bac0c9;
    font-size: 0.85rem !important;
}

/* 본문 스타일 */
.standard-table tbody td {
    padding: 15px 12px;
    text-align: center;
    border: 1px solid #dee2e6;
    color: #374151;
    font-size: 0.9rem;
    line-height: 1.6;
    vertical-align: middle;
    word-break: keep-all; /* 한글 가독성 유지 */
}

/* 텍스트 왼쪽 정렬이 필요한 셀 전용 */
.text-left {
    text-align: left !important;
    padding-left: 20px !important;
}

/* 행 오버 효과 */
.standard-table tbody tr:hover {
    background-color: #f8faff;
    transition: background 0.2s ease;
}

/* 첫 번째 열(위반행위) 강조 */
.standard-table tbody td:first-child {
    font-weight: 500;
    color: #111;
}


/* 반응형 대응 */
@media (max-width: 1024px) {
    .penalty-table-wrapper {
        border-radius: 0;
        margin: 0 -1rem; /* 모바일에서 꽉 차게 보이도록 조정 */
    }
}

@media (max-width: 768px) {
	.page-hero h1 {
		margin: 0 0 0.24em;
		font-size: 1.92em;
		line-height: 1.22;
	}

    .step-card {
        overflow: hidden;
    }

    .step-card .penalty-table-wrapper {
        width: calc(100% + 48px);
        margin: 0 -24px;
        padding: 0 24px 8px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
    }


    .page-hero, .content-section, .cta-panel {
        padding: 0.92em;
    }
    /* 
	=================================================== 회사소개 */
	.point-list li {
		position: relative;
		padding-left: 0.62em;
		color: var(--color-text-secondary);
	}

	.feature-grid.history-container {
		padding: 0.42em;
	}
	.awards-page {
		padding: 0.2em 0.1em;
	}
	.content-section h2 {
		margin: 0 0 0.42em;
		font-size: 1.62em;
	}
  .merit-container {
    flex-direction: column;
  }
  .certificate-photo {
    width: 100%;
    height: 534px;
  }

  .point-list: {
	display: grid;
	gap: 12px;
	margin: 0.1em;
	padding: 0;
	list-style: none;
  }

  .feature-grid3 {
    display: grid;
    grid-template-columns: repeat(1, minmax(1, 1fr));
    gap: 16px;
    margin-top: 2em;
	width:100%;
  }

}
