@charset "utf-8";

/* =========================
   Sub Common
   ========================= */

.material-symbols-outlined {
	font-variation-settings:
	'FILL' 0,
	'wght' 400,
	'GRAD' 0,
	'opsz' 24;
}

#contents {
    position: relative;
}

#sub_visual {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 70px 0 90px;
}

#sub_visual .conwrap {
    max-width: 1540px;
    width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
}

#sub_visual h2 {
    margin: 0;
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.02em;
}

#sub_visual p {
    margin: 34px 0 0;
    font-size: 100px;
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -0.06em;
    color: #111;
    word-break: keep-all;
}

#sub_visual p br {
    display: none;
}

/* =========================
   Breadcrumb / Page Location
   ========================= */

.page_location {
    position: relative;
    z-index: 20;
    max-width: 1260px;
    margin: 0 auto;
    box-sizing: border-box;
	display: flex;
    justify-content: flex-end;
}

.page_location > ul {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.page_location > ul > li {
    position: relative;
    display: flex;
    align-items: center;
    flex: none;
}

.page_location > ul > li + li {
    margin-left: 34px;
}

.page_location > ul > li + li:before {
    content: "";
    position: absolute;
    left: -18px;
    top: 50%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #9f9f9f;
    transform: translateY(-50%);
}

.page_location > ul > li > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 500;
    color: #8d8d8d;
    cursor: pointer;
    transition: color 0.2s ease;
}

.page_location > ul > li.mid > a,
.page_location > ul > li.last > a {
    padding-right: 22px;
}

.page_location > ul > li.last > a {
    color: #111;
    font-weight: 600;
}

.page_location > ul > li.mid > a:after,
.page_location > ul > li.last > a:after {
    content: "";
    position: absolute;
    right: 2px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid #8d8d8d;
    border-bottom: 1.5px solid #8d8d8d;
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.2s ease;
}

.page_location > ul > li.mid:hover > a,
.page_location > ul > li.last:hover > a {
    color: #111;
}

.page_location > ul > li.mid:hover > a:after,
.page_location > ul > li.last:hover > a:after {
    border-color: #111;
}

.page_location > ul > li:first-child > a {
    width: 18px;
    height: 18px;
    min-height: 18px;
    justify-content: center;
}

.page_location > ul > li:first-child > a img {
    display: block;
    width: 15px;
    height: auto;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.page_location > ul > li:first-child > a:hover img {
    opacity: 1;
}

.page_location > ul > li > ul {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 14px);
    min-width: 160px;
    margin: 0;
    padding: 14px 0;
    list-style: none;
    background: #fff;
    border: 1px solid #e6e6e6;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.07);
    box-sizing: border-box;
}

.page_location > ul > li.last > ul {
    min-width: 160px;
}

.page_location > ul > li > ul > li {
    margin: 0;
    padding: 0;
}

.page_location > ul > li > ul > li > a {
    display: block;
    padding: 10px 20px;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 500;
    color: #666;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.page_location > ul > li > ul > li > a:hover {
    color: #111;
}

/* =========================
   Sub Content Frame
   ========================= */

.subwrap {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0px 0px 140px;
    box-sizing: border-box;
}

.sub-title {
    margin: 0 0 30px;
    font-size: 46px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: #111;
}

.sub-desc {
    margin: 0 0 60px;
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    word-break: keep-all;
}

.sub-hero-image {
    width: 100%;
    overflow: hidden;
    border-radius: 0;
}

.sub-hero-image img {
    display: block;
    width: 100%;
    height: auto;
}

/* =========================
   Tablet
   ========================= */

@media (min-width: 768px) and (max-width: 1279px) {
    #sub_visual {
        padding: 70px 0 70px;
    }

    #sub_visual .conwrap,
    .page_location,
    .subwrap {
        padding-left: 24px;
        padding-right: 24px;
    }

    #sub_visual h2 {
        font-size: 20px;
    }

    #sub_visual p {
        font-size: 72px;
    }
}

/* =========================
   Mobile
   ========================= */

@media (max-width: 767px) {
    #sub_visual {
        padding: 20px 0 46px;
    }
	.sub-title {
		font-size: 30px;}
    #sub_visual .conwrap,
    .page_location{
		padding-left: 18px;
        padding-right: 18px;
		justify-content: flex-start;
	}
    .subwrap {
        padding-left: 18px;
        padding-right: 18px;
    }

    #sub_visual h2 {
        font-size: 16px;
    }

    #sub_visual p {
        margin-top: 22px;
        font-size: 42px;
        line-height: 1;
    }

    .page_location {
        padding-top: 20px;
    }

    .page_location > ul {
        flex-wrap: wrap;
        row-gap: 8px;
    }

    .page_location > ul > li + li {
        margin-left: 24px;
    }

    .page_location > ul > li + li:before {
        left: -13px;
    }

    .page_location > ul > li > a {
        font-size: 13px;
    }

    .page_location > ul > li.mid > a,
    .page_location > ul > li.last > a {
        padding-right: 16px;
    }

    .page_location > ul > li.mid > a:after,
    .page_location > ul > li.last > a:after {
        width: 6px;
        height: 6px;
        right: 1px;
    }

    .page_location > ul > li > ul {
        top: calc(100% + 10px);
        min-width: 160px;
        padding: 10px 0;
		left:0;
    }

    .page_location > ul > li > ul > li > a {
        padding: 9px 16px;
        font-size: 13px;
    }

    .subwrap {
        padding-top: 50px;
        padding-bottom: 90px;
    }
}



/* =========================
   Mission & Vision Page
========================= */

.mission-section + .mission-section {
    margin-top: 80px;
}

.mission-section__head {
    margin-bottom: 40px;
}

.mission-section__title {
	position: relative;
	padding-left: 15px; /* 바 공간 확보 */
	margin: 0;
	font-size: 36px;
	line-height: 1.15;
	font-weight: 700;
	letter-spacing: -0.04em;
	color: #111;
}

.mission-section__title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 70%;
	background: #3e519d; /* 브랜드 컬러 */
	border-radius: 2px;
}

/* =========================
   CEO
========================= */

.ceo-card {
    display: grid;
    /* grid-template-columns: 360px 1fr;
    gap: 56px; */
    align-items: start;
    padding: 48px;
    background: #fff;
    border: 1px solid #d1d8e7;
    border-radius: 28px;
    box-shadow: 0 18px 50px rgba(8, 40, 158, 0.05);
    box-sizing: border-box;
	margin-bottom: 50px;
}

.ceo-card__photo {
    position: relative;
}

.ceo-card__photo:before {
    content: "";
    position: absolute;
    left: -18px;
    top: -18px;
    width: 120px;
    height: 120px;
    background: #3e519d;
    opacity: 0.08;
    z-index: 0;
    border-radius: 24px;
}

.ceo-card__photo img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    border-radius: 22px;
}

.ceo-card__content {
    min-width: 0;
}

.ceo-quote {
    position: relative;
    margin-bottom: 32px;
    padding: 0 0 24px;
    border-bottom: 2px solid #3e519d;
}

.ceo-quote__mark {
    position: absolute;
    left: -6px;
    top: -18px;
    font-size: 64px;
    line-height: 1;
    font-weight: 700;
    color: #3e519d;
    opacity: 0.14;
}

.ceo-quote p {
    position: relative;
    margin: 0;
    padding-left: 22px;
    font-size: 34px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #111;
    word-break: keep-all;
}

.ceo-message p {
    margin: 0 0 18px;
    font-size: 21px;
    line-height: 1.6;
    color: #555;
    word-break: keep-all;
}

.ceo-message p:last-child {
    margin-bottom: 0;
}

.ceo-sign {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e6e6e6;
}

.ceo-sign p {
    margin: 0 0 8px;
    font-size: 17px;
    color: #444;
}

.ceo-sign strong {
    font-size: 20px;
    font-weight: 700;
    color: #111;
}

/* =========================
   Values Section
========================= */

.mission-values .mission-section__head {
    margin-bottom: 24px;
}

.values-stack {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.values-block {
    position: relative;
}

.values-block__head {
    margin-bottom: 26px;
}

.values-block__en {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: #3e519d;
}

.values-block__title {
    margin: 0;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #111;
}

.values-block__body {
    max-width: 100%;
}

.values-block__lead,
.values-block__desc {
    margin: 0;
    font-size: 21px;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #222;
    word-break: keep-all;
}

.values-block__vision-text {
    margin: 0;
    font-size: 44px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: #111;
    word-break: keep-all;
}

.values-block__desc {
    margin-bottom: 34px;
    font-size: 21px;
    line-height: 1.6;
    font-weight: 400;
    color: #555;
}

/* =========================
   Core Values
========================= */

.core-value-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.core-value-item {
    height: 100%;
    padding: 30px 26px;
    border: 1px solid #d1d8e7;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 12px 36px rgba(8, 40, 158, 0.04);
    box-sizing: border-box;
}

.core-value-item__num {
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #3e519d;
}

.core-value-item__content h6 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #111;
}

.core-value-item__content strong {
    display: block;
    margin-bottom: 14px;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 700;
    color: #222;
    word-break: keep-all;
}

.core-value-item__content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.85;
    color: #666;
    word-break: keep-all;
}

/* =========================
   Tablet
========================= */

@media (min-width: 768px) and (max-width: 1279px) {
    .mission-page {

    }

    .mission-section + .mission-section {
        margin-top: 100px;
    }

    .mission-section__title {
        font-size: 32px;
    }

    .ceo-card {
        /* grid-template-columns: 280px 1fr;
        gap: 34px; */
        padding: 32px;
        border-radius: 24px;
    }

    .ceo-quote p {
        font-size: 26px;
    }

    .ceo-message p {
        font-size: 16px;
        line-height: 1.85;
    }

    .values-stack {
        gap: 54px;
    }

    .values-block + .values-block {
        padding-top: 54px;
    }

    .values-block__title {
        font-size: 28px;
    }

    .values-block__lead,
    .values-block__desc {
        font-size: 18px;
        line-height: 1.8;
    }

    .values-block__vision-text {
        font-size: 34px;
        line-height: 1.45;
    }

    .core-value-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .core-value-item {
        padding: 24px 22px;
        border-radius: 20px;
    }

    .core-value-item__content h6 {
        font-size: 24px;
    }

    .core-value-item__content strong {
        font-size: 17px;
    }

    .core-value-item__content p {
        font-size: 15px;
    }
}

/* =========================
   Mobile
========================= */

@media (max-width: 767px) {
    .mission-page {
        padding-top: 34px;
    }

    .mission-section + .mission-section {
        margin-top: 72px;
    }

    .mission-section__head {
        margin-bottom: 24px;
    }

    .mission-section__title {
        font-size: 26px;
    }

    .ceo-card {
        /* grid-template-columns: 1fr;
        gap: 0px; */
        padding: 42px 18px;
        border-radius: 20px;
    }

    .ceo-card__photo {
        max-width: 260px;
        margin: 0 auto;
    }

    .ceo-card__photo:before {
        left: -10px;
        top: -10px;
        width: 80px;
        height: 80px;
        border-radius: 16px;
    }

    .ceo-quote {
        margin-bottom: 22px;
        padding-bottom: 18px;
    }

    .ceo-quote__mark {
        top: -10px;
        left: -2px;
        font-size: 42px;
    }

    .ceo-quote p {
        padding-left: 12px;
        font-size: 22px;
        line-height: 1.45;
    }

    .ceo-message p {
        margin-bottom: 14px;
        font-size: 14px;
        line-height: 1.85;
    }

    .ceo-sign {
        margin-top: 22px;
        padding-top: 18px;
    }

    .ceo-sign p {
        font-size: 14px;
    }

    .ceo-sign strong {
        font-size: 16px;
    }

    .mission-values .mission-section__head {
        margin-bottom: 28px;
    }

    .values-stack {
        gap: 38px;
    }

    .values-block + .values-block {
        padding-top: 38px;
    }

    .values-block__head {
        margin-bottom: 18px;
    }

    .values-block__en {
        margin-bottom: 8px;
        font-size: 11px;
    }

    .values-block__title {
        font-size: 24px;
    }

    .values-block__lead,
    .values-block__desc {
        font-size: 15px;
        line-height: 1.6;
    }

    .values-block__vision-text {
        font-size: 24px;
        line-height: 1.5;
    }

    .values-block__desc {
        margin-bottom: 20px;
    }

    .core-value-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .core-value-item {
        padding: 18px 16px;
        border-radius: 16px;
    }

    .core-value-item__num {
        margin-bottom: 14px;
        font-size: 12px;
    }

    .core-value-item__content h6 {
        margin-bottom: 6px;
        font-size: 20px;
    }

    .core-value-item__content strong {
        margin-bottom: 10px;
        font-size: 15px;
        line-height: 1.6;
    }

    .core-value-item__content p {
        font-size: 14px;
        line-height: 1.75;
    }
}

/* =========================
   HISTORY RESET
========================= */


.history-wrap {
	position: relative;
	margin-top: 20px;
    display: inline-block;
	width:100%
}

.history-wrap::before {
	display: none !important;
	content: none !important;
}

.history-section {
	position: relative;
	width: 100%;
	background: transparent !important;
}

.history-section:nth-child(odd),
.history-section:nth-child(even) {
	background: transparent !important;
}

.history-section + .history-section {
	margin-top: 34px;
}

.history-inner {
	display: grid;
	grid-template-columns: 140px minmax(0, 1fr);
	gap: 34px;
	align-items: start;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

/* year */
.year {
	position: relative;
	min-width: 0;
	font-size: 46px;
	line-height: 0.95;
	font-weight: 700;
	letter-spacing: -0.06em;
	color: #3e519d;
	word-break: keep-all;
}


/* list */
.history-list {
	position: relative;
	min-width: 0;
	padding-top: 4px;
}

.history-list::before {
	display: none !important;
	content: none !important;
}

/* each item */
.history-item {
	display: grid;
	grid-template-columns: 35px minmax(0, 1fr);
	gap: 18px;
	margin: 0;
	padding: 0 0 10px;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-sizing: border-box;
}

.history-item::before {
	display: none !important;
	content: none !important;
}

.history-item:last-child {
	padding-bottom: 0;
}

/* month */
.month {
	min-width: 0;
	padding-top: 2px;
	font-size: 17px;
	line-height: 1.5;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #3e519d;
}

/* desc */
.desc {
	min-width: 0;
}

.desc p {
	margin: 0 0 6px;
	font-size: 18px;
	line-height: 1.65;
	font-weight: 400;
	letter-spacing: -0.02em;
	color: #333;
	word-break: keep-all;
}

.desc p:last-child {
	margin-bottom: 0;
}

/* right-side divider */
.history-list::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	margin-top: 28px;
	background: #cfcfcf;
}

.history-section:last-child .history-list::after {
	display: none;
}


/* =========================
   TABLET
========================= */

@media all and (max-width: 1024px) {
	.history-section + .history-section {
		margin-top: 28px;
	}

	.history-inner {
		grid-template-columns: 150px minmax(0, 1fr);
		gap: 24px;
	}

	.year {
		padding-top: 12px;
		font-size: 54px;
	}



	.history-item {
		grid-template-columns: 62px minmax(0, 1fr);
		gap: 14px;
		padding-bottom: 9px;
	}

	.month {
		font-size: 15px;
	}

	.desc p {
		font-size: 16px;
		line-height: 1.6;
	}

	.history-list::after {
		margin-top: 22px;
	}
}


/* =========================
   MOBILE
========================= */

@media all and (max-width: 767px) {
	.history-section + .history-section {
		margin-top: 24px;
	}

	.history-inner {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.year {
		padding-top: 0;
		font-size: 42px;
		line-height: 1;
	}


	.history-list {
		padding-top: 0;
	}

	.history-item {
		grid-template-columns: 52px minmax(0, 1fr);
		gap: 12px;
		padding-bottom: 10px;
	}

	.month {
		padding-top: 1px;
		font-size: 13px;
		line-height: 1.5;
	}

	.desc p {
		font-size: 14px;
		line-height: 1.6;
		word-break: break-word;
	}

	.history-list::after {
		margin-top: 18px;
	}
}



/* =========================
   LEADERSHIP - LIST TYPE
   PC/TAB: 2열 + 카드 간격
   MOBILE: 1열
========================= */

.leadership-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	border-top: none;
}

.leadership-item {
	display: block;
	position: relative;
	text-decoration: none;
	color: inherit;
	border: 1px solid #dfe5ef;
	background: #fff;
	transition: background 0.3s ease;
}

.leadership-item__inner {
	position: relative;
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	align-items: center;
	gap: 44px;
	padding: 34px 42px;
	box-sizing: border-box;
	transition: padding 0.3s ease;
}

.leadership-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border: 1px solid transparent;
	box-sizing: border-box;
	pointer-events: none;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.leadership-item__photo {
	width: 100%;
}

.leadership-item__photo-frame {
	position: relative;
	overflow: hidden;
	background: #f7f9fc;
}

.leadership-item__photo-frame img {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	transform: scale(1);
	transition: transform 0.5s ease;
}

.leadership-item__content {
	min-width: 0;
}

.leadership-item__role {
	margin-bottom: 12px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #3e519d;
	word-break: keep-all;
}

.leadership-item__name {
	margin: 0 0 10px;
	font-size: 44px;
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.04em;
	color: #111;
	word-break: keep-all;
}

.leadership-item__name-en {
	margin: 0;
	font-size: 20px;
	line-height: 1.6;
	color: #8a8f99;
	word-break: keep-all;
	letter-spacing: 0;
}

/* 액션 완전 제거 */
.leadership-item__action {
	display: none;
}

.leadership-item__more,
.leadership-item__more::before,
.leadership-item__more::after {
	display: none;
}

/* hover */
.leadership-item:hover {
	background: #fcfdff;
}

.leadership-item:hover::before {
	border-color: #3e519d;
	box-shadow: 0 16px 36px rgba(8, 40, 158, 0.08);
}

.leadership-item:hover .leadership-item__photo-frame img {
	transform: scale(1.06);
}

/* focus */
.leadership-item:focus-visible {
	outline: none;
	background: #fcfdff;
}

.leadership-item:focus-visible::before {
	border-color: #3e519d;
	box-shadow: 0 16px 36px rgba(8, 40, 158, 0.08);
}

.leadership-item:focus-visible .leadership-item__photo-frame img {
	transform: scale(1.06);
}

/* =========================
   TABLET
========================= */

@media all and (max-width: 1280px) {


	.leadership-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}

	.leadership-item__inner {
		grid-template-columns: 180px minmax(0, 1fr);
		gap: 28px;
		padding: 28px 28px;
	}

	.leadership-item__name {
		font-size: 34px;
	}

	.leadership-item__name-en {
		font-size: 18px;
	}

	.leadership-item__role {
		font-size: 13px;
	}
}

/* =========================
   MOBILE
========================= */

@media all and (max-width: 767px) {
	.leadership-page {
		padding-top: 34px;
	}

	.leadership-list {
		grid-template-columns: 1fr;
		gap: 0;
		border-top: 1px solid #dfe5ef;
	}

	.leadership-item {
		border-top: none;
		border-left: 1px solid #dfe5ef;
		border-right: 1px solid #dfe5ef;
		border-bottom: 1px solid #dfe5ef;
	}

	.leadership-item__inner {
		grid-template-columns: 96px minmax(0, 1fr);
		gap: 18px;
		padding: 20px 30px;
		align-items: center;
	}

	.leadership-item__photo-frame img {
		aspect-ratio: 3 / 4;
	}

	.leadership-item__content {
		padding-right: 8px;
	}

	.leadership-item__role {
		margin-bottom: 6px;
		font-size: 11px;
		line-height: 1.45;
		letter-spacing: 0.05em;
	}

	.leadership-item__name {
		margin-bottom: 6px;
		font-size: 24px;
		line-height: 1.15;
	}

	.leadership-item__name-en {
		font-size: 14px;
		line-height: 1.5;
	}

	.leadership-item:hover .leadership-item__more {
		transform: none;
	}
}


/* =========================
   LEADERSHIP VIEW
========================= */


.leadership-view {
	padding-bottom: 120px;
}

.leadership-view__hero {
	display: grid;
	grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
	gap: 80px;
	align-items: start;
}

.leadership-view__media {
	position: relative;
	padding-top: 30px;
	padding-left: 40px;
}


.leadership-view__photo {
	position: relative;
	z-index: 2;
	border-radius: 28px;
	overflow: hidden;
	background: #f3f5f8;
}

.leadership-view__photo img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.leadership-view__content {
	padding-top: 30px;
}

.leadership-view__head {
	margin-bottom: 34px;
}

.leadership-view__name {
	margin: 0 0 10px;
	font-size: 54px;
	line-height: 1.08;
	font-weight: 700;
	letter-spacing: -0.05em;
	color: #111;
	word-break: keep-all;
}

.leadership-view__name-en {
	margin: 0 0 12px;
	font-size: 22px;
	line-height: 1.5;
	font-weight: 500;
	color: #111;
	word-break: keep-all;
}

.leadership-view__position {
	margin: 0;
	font-size: 22px;
	line-height: 1.6;
	color: #666;
	word-break: keep-all;
}

.leadership-view__divider {
	width: 56px;
	height: 3px;
	background: #3e519d;
	margin-bottom: 34px;
}

.leadership-view__desc p {
	margin: 0 0 18px;
	font-size: 20px;
	line-height: 1.95;
	color: #555;
	word-break: keep-all;
}

.leadership-view__desc p:last-child {
	margin-bottom: 0;
}

/* history */
.leadership-view__history {
	margin-top: 100px;
	padding-top: 48px;
	border-top: 1px solid #e3e8ef;
}

.leadership-view__sub-title {
	margin: 0 0 26px;
	font-size: 28px;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: #111;
}

.leadership-history-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 40px;
}

.leadership-history-list li {
	position: relative;
	padding-left: 16px;
	font-size: 18px;
	line-height: 1.8;
	color: #555;
	word-break: keep-all;
}

.leadership-history-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 14px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #3e519d;
}

/* bottom */
.leadership-view__bottom {
	margin-top: 60px;
	display: flex;
	justify-content: flex-end;
}

.leadership-view__back {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 160px;
	height: 54px;
	padding: 0 28px;
	border: 1px solid #d9dee8;
	background: #fff;
	font-size: 16px;
	font-weight: 600;
	color: #111;
	text-decoration: none;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.leadership-view__back:hover {
	border-color: #3e519d;
	color: #3e519d;
	background: #f8fbff;
}

/* =========================
   TABLET
========================= */

@media all and (max-width: 1280px) {
	.leadership-view {
		padding-bottom: 90px;
	}

	.leadership-view__hero {
		grid-template-columns: 1fr;
		gap: 44px;
	}

	.leadership-view__media {
		max-width: 560px;
		padding-top: 20px;
		padding-left: 30px;
	}



	.leadership-view__content {
		padding-top: 0;
	}

	.leadership-view__name {
		font-size: 42px;
	}

	.leadership-view__name-en {
		font-size: 20px;
	}

	.leadership-view__position {
		font-size: 20px;
	}

	.leadership-view__desc p {
		font-size: 18px;
		line-height: 1.9;
	}

	.leadership-view__history {
		margin-top: 70px;
		padding-top: 36px;
	}

	.leadership-history-list {
		grid-template-columns: 1fr;
		gap: 10px;
	}
}

/* =========================
   MOBILE
========================= */

@media all and (max-width: 767px) {
	.leadership-view-page {
		padding-top: 34px;
	}

	.leadership-view {
		padding-bottom: 70px;
	}

	.leadership-view__hero {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.leadership-view__media {
		padding-top: 14px;
		padding-left: 18px;
	}


	.leadership-view__photo {
		border-radius: 18px;
	}

	.leadership-view__head {
		margin-bottom: 22px;
	}

	.leadership-view__name {
		margin-bottom: 8px;
		font-size: 30px;
		line-height: 1.15;
	}

	.leadership-view__name-en {
		margin-bottom: 8px;
		font-size: 15px;
		line-height: 1.45;
	}

	.leadership-view__position {
		font-size: 15px;
		line-height: 1.55;
	}

	.leadership-view__divider {
		width: 42px;
		height: 2px;
		margin-bottom: 22px;
	}

	.leadership-view__desc p {
		margin-bottom: 14px;
		font-size: 15px;
		line-height: 1.85;
	}

	.leadership-view__history {
		margin-top: 46px;
		padding-top: 26px;
	}

	.leadership-view__sub-title {
		margin-bottom: 18px;
		font-size: 22px;
	}

	.leadership-history-list {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.leadership-history-list li {
		padding-left: 14px;
		font-size: 15px;
		line-height: 1.7;
	}

	.leadership-history-list li::before {
		top: 10px;
		width: 4px;
		height: 4px;
	}

	.leadership-view__bottom {
		margin-top: 36px;
		justify-content: center;
	}

	.leadership-view__back {
		min-width: 140px;
		height: 48px;
		padding: 0 22px;
		font-size: 14px;
	}
}


/* =========================
   LOCATION
========================= */

.map-wrap {
	margin: 0 auto;
}

.map-box {
	border: 1px solid #e5e5e5;
	overflow: hidden;
}

#map {
	width: 100%;
	height: 520px;
	background: #f5f5f5;
}

.location-info {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 40px;
	padding-top: 50px;
}

.location-group h4 {
	margin: 0 0 24px;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	color: #3e519d;
	letter-spacing: -0.5px;
}

.location-list {
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid #ddd;
}

.location-list li {
	display: flex;
	gap: 18px;
	padding: 22px 0;
	border-bottom: 1px solid #eee;
}

.ico-area {
	flex-shrink: 0;
	width: 28px;
	padding-top: 2px;
}

.ico {
	display: block;
	width: 24px;
	height: 24px;
	background: #ddd; /* 아이콘 넣기 전 임시 */
	border-radius: 50%;
}

.txt-area strong {
	display: block;
	margin-bottom: 8px;
	font-size: 18px;
	font-weight: 700;
	color: #111;
}

.txt-area p {
	margin: 0;
	font-size: 17px;
	line-height: 1.8;
	color: #555;
	word-break: keep-all;
}

.txt-area a {
	color: #555;
	text-decoration: none;
}

.txt-area a:hover {
	text-decoration: underline;
}


/* =========================
   TABLET / MOBILE
========================= */

@media all and (max-width: 1024px) {
	.map-wrap {
		padding: 60px 20px;
	}

	#map {
		height: 440px;
	}

	.location-info {
		grid-template-columns: 1fr;
		gap: 32px;
		padding-top: 40px;
	}

	.location-group h4 {
		font-size: 28px;
	}
}

@media all and (max-width: 767px) {
	.map-wrap {
		padding: 40px 16px;
	}

	#map {
		height: 320px;
	}

	.location-info {
		gap: 24px;
		padding-top: 28px;
	}

	.location-group h4 {
		margin-bottom: 18px;
		font-size: 24px;
	}

	.location-list li {
		gap: 14px;
		padding: 18px 0;
	}

	.ico-area {
		width: 24px;
	}

	.ico {
		width: 20px;
		height: 20px;
	}

	.txt-area strong {
		margin-bottom: 6px;
		font-size: 16px;
	}

	.txt-area p {
		font-size: 15px;
		line-height: 1.7;
	}
}

/* =========================
   TECHNOLOGY SIMPLE
========================= */


.tech-simple-section + .tech-simple-section {
	margin-top: 140px;
}

/* 첫 섹션 */
.tech-flow-card {
	padding: 42px;
	background: #fff;
	border: 1px solid #d1d8e7;
	box-shadow: 0 18px 50px rgba(8, 40, 158, 0.04);
	box-sizing: border-box;
}

.tech-flow-top {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 90px minmax(0, 1fr);
	align-items: center;
	gap: 24px;
}

.tech-flow-box {
	min-height: 180px;
	padding: 32px;
	border: 1px solid #edf1f7;
	background: linear-gradient(180deg, #fcfdff 0%, #f7f9fd 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-sizing: border-box;
}

.tech-flow-box h5 {
	margin: 0;
	font-size: 34px;
	line-height: 1.25;
	font-weight: 700;
	letter-spacing: -0.04em;
	color: #111;
	word-break: keep-all;
}

/* 화살표 */
.tech-flow-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
}

.tech-flow-arrow .material-symbols-outlined {
	font-size: 56px;
	line-height: 1;
	color: #3e519d;
}

.tech-flow-arrow .arrow-mo {
	display: none;
}

/* 키워드 */
.tech-keywords {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 32px 0 0;
	padding: 0;
	list-style: none;
}

.tech-keywords li {
	padding: 14px 18px;
	border-radius: 999px;
	background: rgba(8, 40, 158, 0.06);
	font-size: 17px;
	line-height: 1.4;
	font-weight: 600;
	color: #3e519d;
	word-break: keep-all;
}

/* 하단 메시지 카드 */
.tech-message-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin-top: 32px;
}

.tech-message-card {
	padding: 30px 28px;
	background: #fff;
	border: 1px solid #d1d8e7;
	box-shadow: 0 18px 50px rgba(8, 40, 158, 0.04);
	box-sizing: border-box;
}

.tech-message-card strong {
	display: block;
	margin-bottom: 14px;
	font-size: 26px;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: #3e519d;
}

.tech-message-card p {
	margin: 0;
	font-size: 18px;
	line-height: 1.85;
	color: #555;
	word-break: keep-all;
}

/* 두번째 섹션 */
.tech-platform-card {
	padding: 42px;
	background: #fff;
	border: 1px solid #d1d8e7;
	box-shadow: 0 18px 50px rgba(8, 40, 158, 0.04);
	box-sizing: border-box;
}

.tech-platform-lead {
	margin: 0 0 30px;
	font-size: 30px;
	line-height: 1.35;
	font-weight: 700;
	letter-spacing: -0.04em;
	color: #111;
	word-break: keep-all;
}

.tech-platform-list {
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid #eceff5;
}

.tech-platform-list li {
	padding: 26px 0;
	border-bottom: 1px solid #eceff5;
}

.tech-platform-list li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.tech-platform-list strong {
	display: block;
	margin-bottom: 10px;
	font-size: 24px;
	line-height: 1.3;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: #111;
	word-break: keep-all;
}

.tech-platform-list span {
	display: block;
	font-size: 18px;
	line-height: 1.9;
	color: #555;
	word-break: keep-all;
}

/* =========================
   TABLET
========================= */

@media (min-width: 768px) and (max-width: 1279px) {

	.tech-simple-section + .tech-simple-section {
		margin-top: 100px;
	}

	.tech-flow-card,
	.tech-platform-card {
		padding: 32px;
	}

	.tech-flow-top {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.tech-flow-box {
		min-height: 140px;
		padding: 24px;
	}

	.tech-flow-box h5 {
		font-size: 28px;
	}

	.tech-flow-arrow .arrow-pc {
		display: none;
	}

	.tech-flow-arrow .arrow-mo {
		display: inline-block;
	}

	.tech-flow-arrow .material-symbols-outlined {
		font-size: 44px;
	}

	.tech-keywords {
		margin-top: 24px;
	}

	.tech-keywords li {
		font-size: 15px;
	}

	.tech-message-grid {
		grid-template-columns: 1fr;
		gap: 18px;
		margin-top: 24px;
	}

	.tech-message-card {
		padding: 24px;
	}

	.tech-message-card strong {
		font-size: 22px;
	}

	.tech-message-card p {
		font-size: 16px;
		line-height: 1.8;
	}

	.tech-platform-lead {
		margin-bottom: 22px;
		font-size: 24px;
	}

	.tech-platform-list li {
		padding: 22px 0;
	}

	.tech-platform-list strong {
		font-size: 20px;
	}

	.tech-platform-list span {
		font-size: 16px;
		line-height: 1.8;
	}
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {


	.tech-simple-section + .tech-simple-section {
		margin-top: 72px;
	}

	.tech-flow-card,
	.tech-platform-card {
		padding: 22px 18px;
	}

	.tech-flow-top {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.tech-flow-box {
		min-height: 110px;
		padding: 20px 16px;
	}

	.tech-flow-box h5 {
		font-size: 22px;
		line-height: 1.35;
	}

	.tech-flow-arrow .arrow-pc {
		display: none;
	}

	.tech-flow-arrow .arrow-mo {
		display: inline-block;
	}

	.tech-flow-arrow .material-symbols-outlined {
		font-size: 36px;
	}

	.tech-keywords {
		flex-direction: column;
		gap: 10px;
		margin-top: 18px;
	}

	.tech-keywords li {
		padding: 12px 14px;
		font-size: 14px;
	}

	.tech-message-grid {
		grid-template-columns: 1fr;
		gap: 14px;
		margin-top: 18px;
	}

	.tech-message-card {
		padding: 20px 18px;
	}

	.tech-message-card strong {
		margin-bottom: 10px;
		font-size: 20px;
	}

	.tech-message-card p {
		font-size: 14px;
		line-height: 1.75;
	}

	.tech-platform-lead {
		margin-bottom: 18px;
		font-size: 22px;
		line-height: 1.4;
	}

	.tech-platform-list li {
		padding: 18px 0;
	}

	.tech-platform-list strong {
		margin-bottom: 8px;
		font-size: 18px;
		line-height: 1.4;
	}

	.tech-platform-list span {
		font-size: 14px;
		line-height: 1.75;
	}
}



/* =========================
   IN VIVO CAR
========================= */

.car-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.car-card {
	padding: 34px 30px;
	background: #fff;
	border: 1px solid #d1d8e7;
	box-shadow: 0 18px 50px rgba(8, 40, 158, 0.04);
	box-sizing: border-box;
}

.car-card h5 {
	margin: 0 0 26px;
	font-size: 30px;
	line-height: 1.3;
	font-weight: 700;
	letter-spacing: -0.04em;
	color: #111;
	word-break: keep-all;
}

.car-card ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.car-card ul li {
	padding: 18px 0;
	border-top: 1px solid #edf1f7;
}

.car-card ul li:first-child {
	padding-top: 0;
	border-top: 0;
}

.car-card ul li:last-child {
	padding-bottom: 0;
}

.car-card ul li strong {
	display: block;
	margin-bottom: 8px;
	font-size: 20px;
	line-height: 1.45;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: #3e519d;
	word-break: keep-all;
}

.car-card ul li span {
	display: block;
	font-size: 17px;
	line-height: 1.85;
	color: #555;
	word-break: keep-all;
}


/* =========================
   TABLET
========================= */

@media (min-width: 768px) and (max-width: 1279px) {

	.car-page {
		padding-top: 42px;
	}

	.car-card-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.car-card {
		padding: 28px 24px;
	}

	.car-card h5 {
		margin-bottom: 20px;
		font-size: 24px;
	}

	.car-card ul li {
		padding: 16px 0;
	}

	.car-card ul li strong {
		font-size: 18px;
	}

	.car-card ul li span {
		font-size: 16px;
		line-height: 1.8;
	}
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

	.car-page {
		padding-top: 34px;
	}

	.car-card-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.car-card {
		padding: 22px 18px;
	}

	.car-card h5 {
		margin-bottom: 16px;
		font-size: 20px;
		line-height: 1.4;
	}

	.car-card ul li {
		padding: 14px 0;
	}

	.car-card ul li strong {
		margin-bottom: 6px;
		font-size: 16px;
		line-height: 1.4;
	}

	.car-card ul li span {
		font-size: 14px;
		line-height: 1.75;
	}
}



/* =========================
   PIPELINE TABLE
========================= */

.pipeline-table-wrap {
	margin-top: 56px;
}

.pipeline-table-scroll {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.pipeline-table {
	width: 100%;
	min-width: 1100px;
	border-collapse: collapse;
	table-layout: fixed;
	border-top: 3px solid #3e519d;
	border-bottom: 3px solid #3e519d;
	background: #fff;
}

.pipeline-table thead th {
	padding: 24px 18px;
	background: #3e519d;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.3;
	color: #fff;
	text-align: left;
	letter-spacing: -0.03em;
	border-right: 1px solid rgba(255,255,255,0.12);
	word-break: keep-all;
}

.pipeline-table thead th:last-child {
	border-right: 0;
}

.pipeline-table tbody tr {
	border-top: 1px solid #e7ebf3;
	transition: background 0.2s ease;
}

.pipeline-table tbody tr:nth-child(even) {
	background: #f8faff;
}

.pipeline-table tbody tr:hover {
	background: #f1f5ff;
}

.pipeline-table tbody td {
	padding: 26px 18px;
	font-size: 18px;
	line-height: 1.6;
	color: #222;
	vertical-align: middle;
	letter-spacing: -0.02em;
	word-break: keep-all;
}

.pipeline-table tbody td:nth-child(2),
.pipeline-table tbody td:nth-child(4),
.pipeline-table tbody td:nth-child(6) {
	font-weight: 700;
	color: #111;
}

.pipeline-table .stage {
	display: inline-block;
	padding: 8px 14px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0;
}

.pipeline-table .stage.pre {
	background: rgba(8, 40, 158, 0.10);
	color: #3e519d;
}

.pipeline-table .stage.dis {
	background: rgba(8, 40, 158, 0.06);
	color: #3e519d;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1279px) {

	.pipeline-table-wrap {
		margin-top: 42px;
	}

	.pipeline-table {
		min-width: 980px;
	}

	.pipeline-table thead th {
		padding: 20px 16px;
		font-size: 17px;
	}

	.pipeline-table tbody td {
		padding: 22px 16px;
		font-size: 16px;
	}

	.pipeline-table .stage {
		padding: 7px 12px;
		font-size: 13px;
	}
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

	.pipeline-table-wrap {
		margin-top: 34px;
	}

	.pipeline-table-scroll {
		margin-right: -16px;
		padding-right: 16px;
	}

	.pipeline-table {
		min-width: 860px;
	}

	.pipeline-table thead th {
		padding: 16px 14px;
		font-size: 15px;
	}

	.pipeline-table tbody td {
		padding: 18px 14px;
		font-size: 14px;
		line-height: 1.5;
	}

	.pipeline-table .stage {
		padding: 6px 10px;
		font-size: 12px;
	}
}


/* =========================
   PAPER TABLE
========================= */

.paper-table-wrap {
	margin-top: 56px;
}

.paper-table-scroll {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.paper-table {
	width: 100%;
	min-width: 1000px;
	border-collapse: collapse;
	table-layout: fixed;
	border-top: 3px solid #3e519d;
	border-bottom: 3px solid #3e519d;
	background: #fff;
}

.paper-table thead th {
	padding: 24px 18px;
	background: #3e519d;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.3;
	color: #fff;
	text-align: left;
	letter-spacing: -0.03em;
	border-right: 1px solid rgba(255,255,255,0.12);
	word-break: keep-all;
}

.paper-table thead th:last-child {
	border-right: 0;
}

.paper-table tbody tr {
	border-top: 1px solid #e7ebf3;
	transition: background 0.2s ease;
}

.paper-table tbody tr:nth-child(even) {
	background: #f8faff;
}

.paper-table tbody tr:hover {
	background: #f1f5ff;
}

.paper-table tbody td {
	padding: 24px 18px;
	font-size: 17px;
	line-height: 1.75;
	color: #222;
	vertical-align: top;
	letter-spacing: -0.02em;
	word-break: break-word;
}

.paper-table tbody td:nth-child(1) {
	font-weight: 700;
	color: #111;
}

.paper-table tbody td:nth-child(2) {
	font-weight: 700;
	color: #3e519d;
	text-align: center;
	white-space: nowrap;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1279px) {

	.paper-table-wrap {
		margin-top: 42px;
	}

	.paper-table {
		min-width: 900px;
	}

	.paper-table thead th {
		padding: 20px 16px;
		font-size: 17px;
	}

	.paper-table tbody td {
		padding: 20px 16px;
		font-size: 15px;
		line-height: 1.7;
	}
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

	.paper-table-wrap {
		margin-top: 34px;
	}

	.paper-table-scroll {
		margin-right: -16px;
		padding-right: 16px;
	}

	.paper-table {
		min-width: 760px;
	}

	.paper-table thead th {
		padding: 16px 14px;
		font-size: 15px;
	}

	.paper-table tbody td {
		padding: 16px 14px;
		font-size: 14px;
		line-height: 1.65;
	}
}


/* =========================
   BUSINESS COMMON
========================= */

.biz-page {
	padding-top: 56px;
}

.biz-section + .biz-section {
	margin-top: 120px;
}

/* 타이틀 */
.mission-section__head {
	margin-bottom: 36px;
}

.mission-section__title {
	margin: 0 0 20px;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: -0.04em;
	color: #3e519d;
	word-break: keep-all;
}

.biz-sub {
	margin-top: 12px;
	font-size: 20px;
	color: #555;
}

.biz-sub-en {
	margin-top: 6px;
	font-size: 18px;
	color: #777;
}

/* 설명 */
.biz-desc {
	margin: 0 0 14px;
	font-size: 18px;
	line-height: 1.8;
	color: #555;
	word-break: keep-all;
}

/* =========================
   GRID
========================= */

.biz-grid-2 {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.biz-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.biz-grid-4 {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.biz-grid-5 {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
}

/* =========================
   CARD
========================= */

.biz-card {
	padding: 30px 26px;
	background: #fff;
	border: 1px solid #d1d8e7;
	box-shadow: 0 18px 50px rgba(8, 40, 158, 0.04);
	box-sizing: border-box;
}

.biz-full {
	grid-column: 1 / -1;
}

.biz-card h5 {
	margin: 0 0 16px;
	font-size: 24px;
	line-height: 1.3;
	font-weight: 700;
	color: #111;
	word-break: keep-all;
}

.biz-card p {
	margin: 0;
	font-size: 17px;
	line-height: 1.8;
	color: #555;
	word-break: keep-all;
}

/* 리스트 */
.biz-card ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.biz-card ul li {
	padding: 14px 0;
	border-top: 1px solid #edf1f7;
	font-size: 17px;
	line-height: 1.7;
	color: #555;
}

.biz-card ul li:first-child {
	border-top: 0;
	padding-top: 0;
}

.biz-card ul li strong {
	display: block;
	margin-bottom: 6px;
	font-size: 17px;
	color: #3e519d;
}

/* 번호 */
.biz-card .num {
	display: inline-block;
	margin-bottom: 10px;
	font-size: 14px;
	font-weight: 700;
	color: #3e519d;
}

/* =========================
   STEP
========================= */

.biz-step {
	padding: 22px 18px;
	border: 1px solid #d1d8e7;
	background: #f7f9fe;
	text-align: center;
}

.biz-step h5 {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 700;
}

.biz-step p {
	margin: 0;
	font-size: 15px;
	color: #555;
}

/* =========================
   BUTTON
========================= */

.biz-btn-group {
	margin-top: 32px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.btn {
	display: inline-block;
	padding: 12px 18px;
	border: 1px solid #ddd;
	font-size: 14px;
	color: #333;
	text-decoration: none;
	transition: all 0.2s ease;
}

.btn:hover {
	background: #f5f5f5;
}

.btn.primary {
	background: #3e519d;
	color: #fff;
	border-color: #3e519d;
}

.btn.primary:hover {
	background: #061f7a;
}

/* =========================
   LINK BOX
========================= */

.biz-link-box {
	text-align: center;
}

.biz-link-box a {
	display: inline-block;
	font-size: 20px;
	font-weight: 700;
	color: #3e519d;
	text-decoration: none;
}

.biz-link-box a:hover {
	text-decoration: underline;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1279px) {

	.biz-page {
		padding-top: 42px;
	}

	.biz-section + .biz-section {
		margin-top: 90px;
	}

	.mission-section__title {
		font-size: 34px;
	}

	.biz-sub {
		font-size: 18px;
	}

	.biz-desc {
		font-size: 16px;
	}

	.biz-grid-2,
	.biz-grid-3,
	.biz-grid-4,
	.biz-grid-5 {
		grid-template-columns: 1fr;
	}

	.biz-card {
		padding: 24px;
	}

	.biz-card h5 {
		font-size: 20px;
	}

	.biz-card p,
	.biz-card ul li {
		font-size: 15px;
	}
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

	.biz-page {
		padding-top: 34px;
	}

	.biz-section + .biz-section {
		margin-top: 64px;
	}

	.mission-section__head {
		margin-bottom: 24px;
	}

	.mission-section__title {
		font-size: 26px;
		line-height: 1.3;
	}

	.biz-sub {
		font-size: 16px;
	}

	.biz-sub-en {
		font-size: 14px;
	}

	.biz-desc {
		font-size: 14px;
		line-height: 1.7;
	}

	.biz-card {
		padding: 18px 16px;
	}

	.biz-card h5 {
		font-size: 18px;
	}

	.biz-card p,
	.biz-card ul li {
		font-size: 14px;
		line-height: 1.6;
	}

	.biz-btn-group {
		gap: 8px;
	}

	.btn {
		padding: 10px 14px;
		font-size: 13px;
	}
}


/* =========================
   COMMON TABLE
========================= */


.table-scroll {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.custom-table {
	width: 100%;
	min-width: 900px;
	border-collapse: collapse;
	table-layout: fixed;
	border-top: 3px solid #3e519d;
	border-bottom: 3px solid #3e519d;
	background: #fff;
}

/* 헤더 */
.custom-table thead th {
	padding: 24px 18px;
	background: #3e519d;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	text-align: left;
	border-right: 1px solid rgba(255,255,255,0.12);
	word-break: keep-all;
	vertical-align: middle;
}

.custom-table thead th:last-child {
	border-right: 0;
}

/* 바디 */
.custom-table tbody tr {
	border-top: 1px solid #e7ebf3;
	transition: background 0.2s ease;
}

.custom-table tbody tr:nth-child(even) {
	background: #f8faff;
}

.custom-table tbody tr:hover {
	background: #f1f5ff;
}

.custom-table tbody td {
	padding: 24px 18px;
	font-size: 17px;
	line-height: 1.7;
	color: #222;
	vertical-align: top;
	word-break: keep-word;
	border-bottom: 0;
}

.custom-table tbody td strong {
	font-weight: 700;
	color: #111;
}

.custom-table .highlight {
	font-weight: 700;
	color: #3e519d;
	white-space: nowrap;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1279px) {
	.table-wrap {
		margin-top: 42px;
	}

	.custom-table {
		min-width: 820px;
	}

	.custom-table thead th {
		padding: 20px 16px;
		font-size: 16px;
	}

	.custom-table tbody td {
		padding: 20px 16px;
		font-size: 15px;
		line-height: 1.65;
	}
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {
	.table-wrap {
		margin-top: 34px;
		margin-bottom: 20px;
	}

	.table-scroll {
		overflow: visible;
	}

	.custom-table {
		width: 100%;
		min-width: 100%;
		border-top: 0;
		border-bottom: 0;
		background: transparent;
		table-layout: auto;
	}

	.custom-table,
	.custom-table thead,
	.custom-table tbody,
	.custom-table tr,
	.custom-table th,
	.custom-table td {
		display: block;
		width: 100%;
	}

	.custom-table thead {
		display: none;
	}

	.custom-table tbody tr {
		margin-bottom: 14px;
		border: 1px solid #dfe5ef;
		background: #fff !important;
		box-shadow: 0 8px 24px rgba(8, 40, 158, 0.05);
	}

	.custom-table tbody tr:last-child {
		margin-bottom: 0;
	}

	.custom-table tbody td {
		position: relative;
		padding: 14px 16px 14px 110px;
		font-size: 14px;
		line-height: 1.65;
		border: 0;
		border-bottom: 1px solid #edf1f7;
		word-break: keep-all;
		overflow-wrap: break-word;
		min-height: 52px;
		background: #fff;
		box-sizing: border-box;
	}

	.custom-table tbody td:last-child {
		border-bottom: 0;
	}

	.custom-table tbody td::before {
		content: attr(data-label);
		position: absolute;
		left: 16px;
		top: 14px;
		width: 78px;
		font-size: 12px;
		line-height: 1.45;
		font-weight: 700;
		color: #3e519d;
		word-break: keep-all;
	}

	/* 첫 번째 컬럼(분석 항목) 강조 */
	.custom-table tbody td[data-label="분석 항목"] {
		padding-top: 15px;
		padding-bottom: 15px;
		background: #f8faff;
		font-weight: 700;
		color: #111;
	}

	/* rowspan 셀 모바일에서 자연스럽게 */
	.custom-table tbody td[rowspan] {
		width: 100% !important;
	}

	.custom-table tbody td strong {
		display: inline-block;
		margin-bottom: 2px;
		font-size: 15px;
		line-height: 1.45;
	}

	.custom-table tbody td br {
		line-height: 1.6;
	}
}

/* =========================
   PARTNERING INQUIRY
========================= */

.partner-inquiry {
	margin-top: 40px;
}

.partner-inquiry__inner {
	position: relative;
	overflow: hidden;
	padding: 56px 56px;
	background: linear-gradient(135deg, #3e519d 0%, #0d3cc9 100%);
	box-shadow: 0 24px 60px rgba(8, 40, 158, 0.18);
	box-sizing: border-box;
}

.partner-inquiry__inner::before {
	content: "";
	position: absolute;
	right: -80px;
	top: -80px;
	width: 260px;
	height: 260px;
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 50%;
}

.partner-inquiry__inner::after {
	content: "";
	position: absolute;
	right: 40px;
	bottom: -90px;
	width: 220px;
	height: 220px;
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 50%;
}

.partner-inquiry__eyebrow {
	position: relative;
	z-index: 1;
	display: inline-block;
	margin-bottom: 18px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.78);
}

.partner-inquiry__title {
	position: relative;
	z-index: 1;
	margin: 0 0 20px;
	max-width: 900px;
	font-size: 42px;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: -0.04em;
	color: #fff;
	word-break: keep-all;
}

.partner-inquiry__desc {
	position: relative;
	z-index: 1;
	margin: 0;
	max-width: 980px;
	font-size: 18px;
	line-height: 1.85;
	color: rgba(255,255,255,0.88);
	word-break: keep-all;
}

.partner-inquiry__info {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px 16px;
	margin-top: 30px;
	padding-top: 28px;
	border-top: 1px solid rgba(255,255,255,0.16);
}

.partner-inquiry__label {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.68);
}

.partner-inquiry__email {
	font-size: 24px;
	line-height: 1.3;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	word-break: break-all;
	letter-spacing: 0px;
}

.partner-inquiry__email:hover {
	text-decoration: underline;
	color: #fff;
}

.partner-inquiry__btn-wrap {
	position: relative;
	z-index: 1;
	margin-top: 34px;
}

.partner-inquiry__btn {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	min-height: 58px;
	padding: 0 26px;
	background: #fff;
	border: 1px solid #fff;
	font-size: 16px;
	font-weight: 700;
	color: #3e519d;
	text-decoration: none;
	transition: all 0.25s ease;
	box-sizing: border-box;
}

.partner-inquiry__btn.faq {background: #d0e5ff;}
.partner-inquiry__btn.file {background: #d6efd1;}

.partner-inquiry__btn:hover {
	background: transparent;
	color: #fff;
}

.partner-inquiry__btn-arrow {
	display: inline-block;
	width: 5px;
	height: 5px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
	margin-top: 1px;
}

/* =========================
   TABLET
========================= */

@media (min-width: 768px) and (max-width: 1279px) {
	.partner-inquiry {
		margin-top: 90px;
	}

	.partner-inquiry__inner {
		padding: 42px 32px;
	}

	.partner-inquiry__title {
		font-size: 32px;
	}

	.partner-inquiry__desc {
		font-size: 16px;
		line-height: 1.8;
	}

	.partner-inquiry__email {
		font-size: 20px;
	}

	.partner-inquiry__btn {
		min-height: 52px;
		padding: 0 22px;
		font-size: 15px;
	}
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {
	.partner-inquiry {
		margin-top: 15px;
	}

	.partner-inquiry__inner {
		padding: 28px 18px;
	}

	.partner-inquiry__eyebrow {
		margin-bottom: 12px;
		font-size: 12px;
	}

	.partner-inquiry__title {
		margin-bottom: 14px;
		font-size: 24px;
		line-height: 1.32;
	}

	.partner-inquiry__desc {
		font-size: 14px;
		line-height: 1.75;
	}

	.partner-inquiry__info {
		margin-top: 22px;
		padding-top: 20px;
		gap: 8px 12px;
	}

	.partner-inquiry__label {
		font-size: 11px;
	}

	.partner-inquiry__email {
		font-size: 17px;
		line-height: 1.45;
	}

	.partner-inquiry__btn-wrap {
		margin-top: 24px;
	}

	.partner-inquiry__btn {
		width: 100%;
		justify-content: center;
		min-height: 48px;
		padding: 0 16px;
		font-size: 14px;
	}
}



.tech-diagram-card {
	padding: 48px;
	background: #fff;
	box-sizing: border-box;
	margin-bottom: 40px;
}

.tech-diagram-card__title {
	margin: 0 0 40px;
	font-size: 30px;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: -0.04em;
	color: #3e519d;
	text-align: center;
	word-break: keep-all;
}

.tech-diagram-card__image img {
	display: block;
	width: 100%;
	max-width: 1260px;
	height: auto;
	margin: 0 auto;
}

.tech-diagram-card__labels {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	align-items: center;
	margin-top: 34px;
}

.tech-diagram-card__labels span {
	display: block;
	text-align: center;
	font-size: 28px;
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: -0.04em;
	color: #3e519d;
	word-break: keep-all;
}

@media (min-width: 768px) and (max-width: 1279px) {
	.tech-diagram-card {
		padding: 32px;
	}

	.tech-diagram-card__title {
		margin-bottom: 28px;
		font-size: 25px;
	}

	.tech-diagram-card__labels {
		margin-top: 24px;
	}

	.tech-diagram-card__labels span {
		font-size: 23px;
	}
}

@media (max-width: 767px) {
	.tech-diagram-card {
		padding: 22px 18px;
	}

	.tech-diagram-card__title {
		margin-bottom: 20px;
		font-size: 22px;
		line-height: 1.35;
	}

	.tech-diagram-card__labels {
		margin-top: 18px;
		gap: 8px;
	}

	.tech-diagram-card__labels span {
		font-size: 20px;
		line-height: 1.2;
	}
}



/* =========================
   PAPER CARD
========================= */

.paper-card-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.paper-card {
	display: block;
	position: relative;
	text-decoration: none;
	color: inherit;
	border: 1px solid #dfe5ef;
	background: #fff;
	transition: background 0.3s ease;
}

.paper-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border: 1px solid transparent;
	box-sizing: border-box;
	pointer-events: none;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.paper-card__inner {
	position: relative;
	grid-template-columns: 360px minmax(0, 1fr);
	gap: 40px;
	padding: 24px 42px;
	box-sizing: border-box;
}

.paper-card__left {
	min-width: 0;
}

.paper-card__journal {
	display: inline-block;
	margin-bottom: 20px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	color: #3e519d;
	word-break: keep-all;
}

.paper-card__title {
	margin: 0;
	font-size: 21px;
	line-height: 1.35;
	font-weight: 700;
	letter-spacing: -0.04em;
	color: #111;
	word-break: keep-all;
}

.paper-card__right {
	min-width: 0;
}

.paper-card__desc {
	margin: 0;
	font-size: 18px;
	line-height: 1.9;
	color: #666;
	word-break: keep-all;
}

/* leadership와 같은 hover */
.paper-card:hover {
	background: #fcfdff;
}

.paper-card:hover::before {
	border-color: #3e519d;
	box-shadow: 0 16px 36px rgba(8, 40, 158, 0.08);
}

/* leadership와 같은 focus */
.paper-card:focus-visible {
	outline: none;
	background: #fcfdff;
}

.paper-card:focus-visible::before {
	border-color: #3e519d;
	box-shadow: 0 16px 36px rgba(8, 40, 158, 0.08);
}

/* =========================
   TABLET
========================= */

@media all and (max-width: 1280px) {
	.paper-card-list {
		gap: 20px;
	}

	.paper-card__inner {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 28px 28px;
	}

	.paper-card__title {
		font-size: 24px;
	}

	.paper-card__desc {
		font-size: 16px;
		line-height: 1.8;
	}
}

/* =========================
   MOBILE
========================= */

@media all and (max-width: 767px) {
	.paper-card-list {
		gap: 0;
		border-top: 1px solid #dfe5ef;
	}

	.paper-card {
		border-top: none;
		border-left: 1px solid #dfe5ef;
		border-right: 1px solid #dfe5ef;
		border-bottom: 1px solid #dfe5ef;
	}

	.paper-card__inner {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 20px 18px;
	}

	.paper-card__journal {
		margin-bottom: 14px;
		font-size: 13px;
	}

	.paper-card__title {
		font-size: 22px;
		line-height: 1.4;
	}

	.paper-card__desc {
		font-size: 14px;
		line-height: 1.75;
	}
}


/* 공지사항 게시판 */
.pagewrap.bbs {
    padding: 0px 0 120px;
    background: #fff;
}

.pagewrap.bbs .titlearea {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
}

.pagewrap.bbs .pagetitle1 {
    margin: 0 0 30px;
    font-size: 46px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: #111;
}

/* 컨텐츠 */
.pagewrap.bbs .bbs_basic.conwrap {
    max-width: 1280px;
    margin: 0 auto;
}

/* 검색 */
.pagewrap.bbs .bbs_search {
    margin-bottom: 28px;
}

.pagewrap.bbs .searchwrap {
    display: flex;
    justify-content: flex-end;
}

.pagewrap.bbs .searchwrap form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pagewrap.bbs .searchwrap select,
.pagewrap.bbs .searchwrap input[type="text"] {
    height: 48px;
    border: 1px solid #d9dfe6;
    border-radius: 10px;
    background: #fff;
    padding: 0 14px;
    font-size: 14px;
    color: #111;
    outline: none;
}

.pagewrap.bbs .searchwrap input[type="text"] {
    width: 260px;
}

.pagewrap.bbs .searchwrap button {
    height: 48px;
    padding: 0 20px;
    border: 0;
    border-radius: 10px;
    background: #3e519d;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

/* 리스트 */
.pagewrap.bbs table {
    width: 100%;
    border-collapse: collapse;
    border-top: 2px solid #3e519d;
}

.pagewrap.bbs table tbody,
.pagewrap.bbs table tr {
    width: 100%;
}

.pagewrap.bbs table tr {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.2s ease;
}

.pagewrap.bbs table tr:hover {
    background: #fafbfc;
}

.pagewrap.bbs table td {
    padding: 14px 0;
    vertical-align: middle;
    border: 0;
}

/* 제목 먼저 */
.pagewrap.bbs td.sbj {
    order: 1;
    flex: 1 1 auto;
    min-width: 0;
    padding-left: 10px;
}

.pagewrap.bbs td.sbj > a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.pagewrap.bbs td.sbj .tit {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: #111;
    word-break: keep-all;
    transition: color 0.2s ease;
}

.pagewrap.bbs table tr:hover td.sbj .tit {
    color: #3e519d;
}

/* 내용 숨김 */
.pagewrap.bbs td.sbj .txt {
    display: none;
}

/* 날짜 오른쪽 */
.pagewrap.bbs td.date {
    order: 2;
    flex: 0 0 auto;
    width: 120px;
    text-align: right;
    white-space: nowrap;
    padding-left: 16px;
}

.pagewrap.bbs td.date .day,
.pagewrap.bbs td.date .ym {
    display: inline;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    color: #7b8794;
	letter-spacing: 0.2px;
}

.pagewrap.bbs td.date .day::after {
    content: ".";
    margin-right: 2px;
}

/* 더보기 숨김 */
.pagewrap.bbs td.more {
    display: none;
}

/* 페이징 */
.pagewrap.bbs .paging {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagewrap.bbs .paging a,
.pagewrap.bbs .paging strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 14px;
    text-decoration: none;
}

.pagewrap.bbs .paging a {
    border: 1px solid #d9dfe6;
    color: #555;
    background: #fff;
}

.pagewrap.bbs .paging strong {
    border: 1px solid #3e519d;
    background: #3e519d;
    color: #fff;
}

.pagewrap.bbs .paging img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

/* 반응형 */
@media (max-width: 768px) {
    .pagewrap.bbs {
        padding: 30px 0 80px;
    }

    .pagewrap.bbs .titlearea {
        margin-bottom: 32px;
    }

    .pagewrap.bbs .pagetitle1 {
        font-size: 28px;
    }

    .pagewrap.bbs .searchwrap {
        justify-content: stretch;
    }

    .pagewrap.bbs .searchwrap form {
        width: 100%;
    }

    .pagewrap.bbs .searchwrap select,
    .pagewrap.bbs .searchwrap input[type="text"],
    .pagewrap.bbs .searchwrap button {
        width: 100%;
    }

    .pagewrap.bbs table tr {
        display: block;
        padding: 18px 0;
    }

    .pagewrap.bbs table td {
        display: block;
        width: 100%;
        padding: 0;
    }

    .pagewrap.bbs td.sbj {
        padding-right: 0;
    }

    .pagewrap.bbs td.sbj .tit {
        font-size: 16px;
    }

    .pagewrap.bbs td.date {
        width: 100%;
        margin-top: 6px;
        padding-left: 0;
        text-align: left;
    }

    .pagewrap.bbs td.date .day,
    .pagewrap.bbs td.date .ym {
        font-size: 13px;
    }
}

/* =========================
   REQUEST / INQUIRY FORM
========================= */

.pagewrap.requests {
    padding: 40px 0 120px;
    background: #fff;
}

.pagewrap.requests .titlearea {
    max-width: 1260px;
    margin: 0 auto;
    font-size: 46px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: #111;
	padding-bottom: 30px;
}

.pagewrap.requests .pagetitle1 {
    margin: 0;
    font-size: 46px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: #111;
}

.pagewrap.requests #request.section {
    max-width: 1260px;
    margin: 0 auto;
    box-sizing: border-box;
}

.pagewrap.requests #request .conwrap {
    max-width: 100%;
    padding: 0;
}

.pagewrap.requests form {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.pagewrap.requests section {
    padding: 34px 34px 36px;
    border: 1px solid #d8dfeb;
    background: #fff;
    box-shadow: 0 18px 50px rgba(8, 40, 158, 0.04);
    box-sizing: border-box;
}

.pagewrap.requests h4 {
    position: relative;
    margin: 0 0 24px !important;
    padding-left: 16px;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #111;
}

.pagewrap.requests h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 5px;
    height: calc(100% - 8px);
    background: #3e519d;
    border-radius: 999px;
}

.pagewrap.requests p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    word-break: keep-all;
}

.pagewrap.requests .text-start {
    text-align: left;
}

.pagewrap.requests .flex-end {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.pagewrap.requests .flex {
    display: flex;
}

.pagewrap.requests .relative {
    position: relative;
}

.pagewrap.requests .hidden {
    display: none;
}

/* table */
.pagewrap.requests table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    border-top: 2px solid #3e519d;
    border-left: 1px solid #dfe5ef;
    background: #fff;
}

.pagewrap.requests table colgroup col {
    width: auto;
}

.pagewrap.requests table tbody tr,
.pagewrap.requests table thead tr {
    border-bottom: 1px solid #dfe5ef;
}

.pagewrap.requests table td,
.pagewrap.requests table th {
    padding: 16px 18px;
    border-right: 1px solid #dfe5ef;
    vertical-align: middle;
    font-size: 15px;
    line-height: 1.6;
    color: #222;
    word-break: keep-all;
    box-sizing: border-box;
}

.pagewrap.requests table thead td,
.pagewrap.requests table thead th {
    background: #3e519d;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}

.pagewrap.requests table tbody > tr > td:first-child {
}

.pagewrap.requests table.odd tbody tr:nth-child(odd) {
    background: #fbfcff;
}

.pagewrap.requests table.odd tbody tr:nth-child(odd) td:first-child {
    background: #f3f6fd;
}

.pagewrap.requests label {
    cursor: pointer;
}

/* input */
.pagewrap.requests .form-input,
.pagewrap.requests .form-select,
.pagewrap.requests select,
.pagewrap.requests textarea,
.pagewrap.requests input[type="text"] {
    width: 100%;
    border: 1px solid #d6ddea;
    background: #f8faff;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pagewrap.requests .form-input,
.pagewrap.requests .form-select,
.pagewrap.requests select,
.pagewrap.requests input[type="text"] {
    height: 50px;
    padding: 0 14px;
    font-size: 15px;
    color: #111;
}

.pagewrap.requests textarea {
    min-height: 220px;
    padding: 18px;
    font-size: 15px;
    line-height: 1.8;
    color: #111;
    resize: vertical;
}

.pagewrap.requests .form-input:focus,
.pagewrap.requests .form-select:focus,
.pagewrap.requests select:focus,
.pagewrap.requests textarea:focus,
.pagewrap.requests input[type="text"]:focus {
    border-color: #3e519d;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(62, 81, 157, 0.08);
}

.pagewrap.requests select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 42px;
    background:
        #f8faff
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%233e519d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
        no-repeat right 14px center;
}

.pagewrap.requests input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #3e519d;
    cursor: pointer;
}

/* email */
.pagewrap.requests .email {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    width: 100%;
}

.pagewrap.requests .email > input.form-input,
.pagewrap.requests .email > input[type="text"] {
    flex: 1 1 42%;
    min-width: 0;
    width: auto;
    height: 46px;
    min-height: 46px;
    line-height: 46px;
    padding: 0 14px;
    box-sizing: border-box;
    margin: 0;
    display: block;
}

.pagewrap.requests .email > span.relative {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1 1 58%;
    min-width: 0;
    width: auto;
}

.pagewrap.requests .email-symbol {
    flex: 0 0 40px;
    width: 40px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    border: 1px solid #d6ddea;
    border-right: 0;
    background: #eef2fb;
    color: #3e519d;
    font-size: 15px;
    font-weight: 700;
    box-sizing: border-box;
}

.pagewrap.requests .email #email_select,
.pagewrap.requests .email #email2 {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    height: 46px;
    min-height: 46px;
    line-height: 46px;
    border-left: 0;
    box-sizing: border-box;
}

.pagewrap.requests .email #email2[type="hidden"] {
    display: none;
}

.pagewrap.requests .email .close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

/* helper text */
.pagewrap.requests section p span[style*="#0a6a86"] {
    color: #3e519d !important;
    font-weight: 600;
}

/* button */
.pagewrap.requests button {
    min-width: 180px;
    height: 58px;
    padding: 0 30px;
    border: 1px solid #3e519d;
    background: #3e519d;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.02em;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.pagewrap.requests button:hover {
    background: #fff;
    color: #3e519d;
    border-color: #3e519d;
    font-weight: 700;
    transform: translateY(-1px);
}

/* textarea section spacing for inquiry */
.pagewrap.requests textarea[name="inquiry"],
.pagewrap.requests textarea[name="information"] {
    margin-top: 14px;
}

/* =========================
   TABLET
========================= */

@media (min-width: 768px) and (max-width: 1279px) {
    .pagewrap.requests {
        padding: 36px 0 100px;
    }

    .pagewrap.requests .titlearea,
    .pagewrap.requests #request.section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .pagewrap.requests .pagetitle1 {
        font-size: 38px;
    }

    .pagewrap.requests form {
        gap: 36px;
    }

    .pagewrap.requests section {
        padding: 28px 26px 30px;
    }

    .pagewrap.requests h4 {
        font-size: 26px;
    }

    .pagewrap.requests table td,
    .pagewrap.requests table th {
        padding: 14px 14px;
        font-size: 14px;
    }

    .pagewrap.requests .form-input,
    .pagewrap.requests .form-select,
    .pagewrap.requests select,
    .pagewrap.requests input[type="text"] {
        height: 46px;
        font-size: 14px;
    }

    .pagewrap.requests textarea {
        min-height: 200px;
        font-size: 14px;
    }

    .pagewrap.requests button {
        min-width: 170px;
        height: 54px;
        font-size: 16px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {
    .pagewrap.requests {
        padding: 26px 0 80px;
    }

    .pagewrap.requests .titlearea,
    .pagewrap.requests #request.section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .pagewrap.requests .titlearea {
        margin-bottom: 24px;
    }

    .pagewrap.requests .pagetitle1 {
        font-size: 30px;
        line-height: 1.1;
    }

    .pagewrap.requests form {
        gap: 20px;
    }

    .pagewrap.requests section {
        padding: 20px 16px 22px;
    }

    .pagewrap.requests h4 {
        margin-bottom: 16px !important;
        padding-left: 12px;
        font-size: 22px;
    }

    .pagewrap.requests h4::before {
        width: 4px;
    }

    .pagewrap.requests p {
        font-size: 14px;
        line-height: 1.75;
    }

    .pagewrap.requests table,
    .pagewrap.requests table colgroup,
    .pagewrap.requests table tbody,
    .pagewrap.requests table thead,
    .pagewrap.requests table tr,
    .pagewrap.requests table td,
    .pagewrap.requests table th {
        display: block;
        width: 100% !important;
    }

    .pagewrap.requests table {
        border-left: 0;
        border-top: 0;
    }

    .pagewrap.requests table thead {
        display: none;
    }

    .pagewrap.requests table tbody tr {
        margin-bottom: 12px;
        border: 1px solid #dfe5ef;
        background: #fff;
    }

    .pagewrap.requests table tbody tr:last-child {
        margin-bottom: 0;
    }

    .pagewrap.requests table td,
    .pagewrap.requests table th {
        border-right: 0;
        border-bottom: 1px solid #edf1f7;
        padding: 12px 14px;
        font-size: 14px;
    }

    .pagewrap.requests table tbody tr > td:first-child {
        background: #f8faff;
    }

    .pagewrap.requests table td:last-child,
    .pagewrap.requests table th:last-child {
        border-bottom: 0;
    }

    .pagewrap.requests .email > span.relative {
        min-width: 0;
        width: 100%;
    }

    .pagewrap.requests .form-input,
    .pagewrap.requests .form-select,
    .pagewrap.requests select,
    .pagewrap.requests input[type="text"] {
        height: 44px;
        font-size: 14px;
    }

    .pagewrap.requests textarea {
        min-height: 180px;
        padding: 14px;
        font-size: 14px;
    }

    .pagewrap.requests .email-symbol {
        width: 40px;
        font-size: 14px;
    }

    .pagewrap.requests .flex-end {
        margin-top: 0;
    }

    .pagewrap.requests button {
        width: 100%;
        min-width: 0;
        height: 50px;
        font-size: 15px;
    }
.pagewrap.requests .email {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 6px;
        flex-wrap: nowrap;
    }

    .pagewrap.requests .email > input.form-input,
    .pagewrap.requests .email > input[type="text"] {
        flex: 1 1 42%;
        width: auto;
        min-width: 0;
        height: 42px !important;
        min-height: 42px;
        line-height: 42px;
        padding: 0 10px;
        font-size: 13px;
    }

    .pagewrap.requests .email > span.relative {
        display: flex;
        align-items: center;
        flex: 1 1 58%;
        min-width: 0;
        width: auto;
    }

    .pagewrap.requests .email-symbol {
        flex: 0 0 34px;
        width: 34px;
        height: 42px;
        font-size: 13px;
    }

    .pagewrap.requests .email #email_select,
    .pagewrap.requests .email #email2 {
        width: auto;
        min-width: 0;
        height: 42px !important;
        min-height: 42px;
        line-height: 42px;
        padding: 0 32px 0 10px;
        font-size: 13px;
    }

    .pagewrap.requests .email .close {
        right: 10px;
        font-size: 16px;
    }
}


/* =========================
   BOARD VIEW
========================= */

.pagewrap.bbs .bbs_view.conwrap {
    max-width: 1280px;
    margin: 0 auto;
    box-sizing: border-box;
}

.pagewrap.bbs .bbs_view .view_table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    border-top: 2px solid #3e519d;
    border-bottom: 1px solid #dfe5ef;
    background: #fff;
}

.pagewrap.bbs .bbs_view .view_table tr {
    border-bottom: 1px solid #e7ebf3;
}

.pagewrap.bbs .bbs_view .view_table tr:last-child {
    border-bottom: 0;
}

.pagewrap.bbs .bbs_view .view_table td {
    padding: 0;
    vertical-align: top;
    box-sizing: border-box;
}

/* 상단 정보 */
.pagewrap.bbs .bbs_view .view_table tr:first-child td {
    padding: 19px 24px 18px;
    background: #fff;
}

.pagewrap.bbs .bbs_view .sbj {
    margin: 0;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #111;
    word-break: keep-all;
}

.pagewrap.bbs .bbs_view .date {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    color: #7b8794;
    letter-spacing: 0.01em;
}

/* 첨부파일 */
.pagewrap.bbs .bbs_view .file {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid #edf1f7;
}

.pagewrap.bbs .bbs_view .file .txt1 {
    flex: 0 0 auto;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
    color: #3e519d;
}

.pagewrap.bbs .bbs_view .file .file_name {
    display: inline-flex;
    align-items: center;
    max-width: calc(100% - 130px);
}

.pagewrap.bbs .bbs_view .file .file_name a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid #d8dfeb;
    background: #f8faff;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: all 0.25s ease;
    box-sizing: border-box;
    word-break: break-all;
}

.pagewrap.bbs .bbs_view .file .file_name a:hover {
    border-color: #3e519d;
    background: #eef3ff;
    color: #3e519d;
}

.pagewrap.bbs .bbs_view .file .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-left: -4px;
}

.pagewrap.bbs .bbs_view .file .icon img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* 본문 */
.pagewrap.bbs .bbs_view .view_table td.viewcon {
    padding: 48px 36px 56px;
    font-size: 18px;
    line-height: 1.9;
    color: #333;
    word-break: keep-all;
}

.pagewrap.bbs .bbs_view .view_table td.viewcon * {
    max-width: 100%;
    box-sizing: border-box;
}

.pagewrap.bbs .bbs_view .view_table td.viewcon img {
    display: block;
    max-width: 100%;
    height: auto !important;
    margin: 24px auto;
}

.pagewrap.bbs .bbs_view .view_table td.viewcon p {
    margin: 0 0 1.2em;
}

.pagewrap.bbs .bbs_view .view_table td.viewcon p:last-child {
    margin-bottom: 0;
}

.pagewrap.bbs .bbs_view .view_table td.viewcon table {
    width: 100% !important;
    border-collapse: collapse;
}

.pagewrap.bbs .bbs_view .view_table td.viewcon iframe,
.pagewrap.bbs .bbs_view .view_table td.viewcon video {
    max-width: 100%;
}

/* 링크 */
.pagewrap.bbs .bbs_view .view_table td.link {
    padding: 28px 36px 32px;
    background: #fbfcff;
    border-top: 1px solid #edf1f7;
}

.pagewrap.bbs .bbs_view .view_table td.link > .link {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.pagewrap.bbs .bbs_view .view_table td.link .icon {
    flex: 0 0 18px;
    margin-top: 2px;
}

.pagewrap.bbs .bbs_view .view_table td.link .icon img {
    display: block;
    max-width: 100%;
    height: auto;
}

.pagewrap.bbs .bbs_view .view_table td.link .list {
    margin: 0;
    padding: 0;
    list-style: none;
    min-width: 0;
    flex: 1;
}

.pagewrap.bbs .bbs_view .view_table td.link .list li + li {
    margin-top: 10px;
}

.pagewrap.bbs .bbs_view .view_table td.link .list a {
    display: inline-block;
    font-size: 15px;
    line-height: 1.7;
    color: #3e519d;
    text-decoration: none;
    word-break: break-all;
}

.pagewrap.bbs .bbs_view .view_table td.link .list a:hover {
    text-decoration: underline;
}

/* 목록 버튼 */
.pagewrap.bbs .bbs_view .list_btn {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagewrap.bbs .bbs_view .list_btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 170px;
    height: 54px;
    padding: 0 26px;
    border: 1px solid #3e519d;
    background: #3e519d;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.pagewrap.bbs .bbs_view .list_btn a:hover {
    background: #fff;
    color: #3e519d;
}

.pagewrap.bbs .bbs_view .list_btn a img {
    width: 14px;
    height: auto;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.pagewrap.bbs .bbs_view .list_btn a:hover img {
    transform: translateX(3px);
    filter: brightness(0) saturate(100%) invert(28%) sepia(14%) saturate(1773%) hue-rotate(192deg) brightness(96%) contrast(93%);
}

/* =========================
   TABLET
========================= */

@media (min-width: 768px) and (max-width: 1279px) {
    .pagewrap.bbs .bbs_view.conwrap {
        padding: 0 0px 100px;
    }

    .pagewrap.bbs .bbs_view .view_table tr:first-child td {
        padding: 19px 24px 18px;
    }

    .pagewrap.bbs .bbs_view .sbj {
        font-size: 28px;
    }

    .pagewrap.bbs .bbs_view .date {
        font-size: 14px;
    }

    .pagewrap.bbs .bbs_view .view_table td.viewcon {
        padding: 38px 28px 44px;
        font-size: 16px;
        line-height: 1.85;
    }

    .pagewrap.bbs .bbs_view .view_table td.link {
        padding: 24px 28px 28px;
    }

    .pagewrap.bbs .bbs_view .list_btn {
        margin-top: 32px;
    }

    .pagewrap.bbs .bbs_view .list_btn a {
        min-width: 156px;
        height: 50px;
        font-size: 15px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {
    .pagewrap.bbs .bbs_view.conwrap {
        padding: 0 0px 80px;
    }

    .pagewrap.bbs .bbs_view .view_table tr:first-child td {
        padding: 0px 16px 0px;
    }

    .pagewrap.bbs .bbs_view .sbj {
        font-size: 22px;
        line-height: 1.45;
    }

    .pagewrap.bbs .bbs_view .date {
        margin-top: 10px;
        font-size: 13px;
    }

    .pagewrap.bbs .bbs_view .file {
        gap: 8px;
        margin-top: 18px;
        padding-top: 16px;
        align-items: stretch;
    }

    .pagewrap.bbs .bbs_view .file .txt1 {
        width: 100%;
        font-size: 13px;
    }

    .pagewrap.bbs .bbs_view .file .file_name {
        max-width: calc(100% - 28px);
    }

    .pagewrap.bbs .bbs_view .file .file_name a {
        min-height: 36px;
        padding: 8px 12px;
        font-size: 13px;
    }

    .pagewrap.bbs .bbs_view .view_table td.viewcon {
        padding: 28px 18px 34px;
        font-size: 14px;
        line-height: 1.8;
        word-break: break-word;
    }

    .pagewrap.bbs .bbs_view .view_table td.link {
        padding: 18px 18px 22px;
    }

    .pagewrap.bbs .bbs_view .view_table td.link > .link {
        gap: 10px;
    }

    .pagewrap.bbs .bbs_view .view_table td.link .list a {
        font-size: 13px;
        line-height: 1.65;
    }

    .pagewrap.bbs .bbs_view .list_btn {
        margin-top: 28px;
    }

    .pagewrap.bbs .bbs_view .list_btn a {
        width: 100%;
        min-width: 0;
        height: 48px;
        font-size: 14px;
    }
}

/* =========================
   GALLERY BOARD
========================= */

.pagewrap.bbs .bbs_gallery {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 0px 120px;
    box-sizing: border-box;
}

/* 리스트 */
.pagewrap.bbs .bbs_gallery ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* 카드 */
.pagewrap.bbs .bbs_gallery li {
    position: relative;
    background: #fff;
    border: 1px solid #e5e9f2;
    transition: all 0.3s ease;
    overflow: hidden;
}

.pagewrap.bbs .bbs_gallery li:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(62, 81, 157, 0.12);
}

/* 링크 전체 */
.pagewrap.bbs .bbs_gallery li a {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* 이미지 */
.pagewrap.bbs .bbs_gallery .thumb {
    position: relative;
    overflow: hidden;
    background: #f4f6fb;
}

.pagewrap.bbs .bbs_gallery .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pagewrap.bbs .bbs_gallery li:hover .thumb img {
    transform: scale(1.08);
}

/* 텍스트 영역 */
.pagewrap.bbs .bbs_gallery .txts {
    padding: 18px 18px 20px;
	border-top: 1px solid #e5e9f2;
}

/* 제목 */
.pagewrap.bbs .bbs_gallery .sbj {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: #111;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 내용 */
.pagewrap.bbs .bbs_gallery .con {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 14px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 날짜 */
.pagewrap.bbs .bbs_gallery .date {
    font-size: 13px;
    color: #8a94a6;
}

/* =========================
   HOVER 포인트 (브랜드 강조)
========================= */

.pagewrap.bbs .bbs_gallery li:hover .sbj {
    color: #3e519d;
}

/* =========================
   PAGING
========================= */

.pagewrap.bbs .bbs_gallery .paging {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {
    .pagewrap.bbs .bbs_gallery ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {
    .pagewrap.bbs .bbs_gallery {
        padding: 0 18px 80px;
    }

    .pagewrap.bbs .bbs_gallery ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .pagewrap.bbs .bbs_gallery .txts {
        padding: 14px;
    }

    .pagewrap.bbs .bbs_gallery .sbj {
        font-size: 15px;
    }

    .pagewrap.bbs .bbs_gallery .con {
        font-size: 13px;
    }

    .pagewrap.bbs .bbs_gallery .date {
        font-size: 12px;
    }
}


	/* =========================
   MANAGEMENT DIAGRAM
========================= */

.mission-values .mission-section__head {
    margin-bottom: 28px;
}

.management-diagram {
    position: relative;
    padding: 8px 0 0;
}

.management-node {
    text-align: center;
}

.management-node + .management-node {
    margin-top: 42px;
}

.management-node__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    min-height: 38px;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 21px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #fff;
    box-sizing: border-box;
}

.management-node--mission .management-node__badge {
    background: #3e519d;
}

.management-node--vision .management-node__badge {
    background: #3e519d;
}

.management-node__text {
    max-width: 1100px;
    margin: 26px auto 0;
    font-size: 21px;
    line-height: 1.75;
    font-weight: 500;
    letter-spacing: -0.03em;
    word-break: keep-all;
}

.management-node__text--vision {
    font-size: 21px;
    line-height: 1.55;
    font-weight: 500;
}

.management-core {
    position: relative;
    margin-top: 44px;
    padding-top: 80px;
}

.management-core__badge {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    min-height: 38px;
    padding: 0 28px;
    border-radius: 999px;
    background: #3e519d;
    font-size: 21px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #fff;
    z-index: 3;
    box-sizing: border-box;
}

/* 중앙 세로선만 유지 */
.management-core__line {
    position: absolute;
    background: #b0b7bf;
}

.management-core__line--vertical {
    left: 50%;
    top: 15px;
    width: 1px;
    height: 64px;
    transform: translateX(-50%);
    z-index: 1;
}

/* 기존 퍼센트 가로선 제거 */
.management-core__line--horizontal {
    display: none;
}

.management-core__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px;
    position: relative;
    z-index: 2;
}

/* 각 아이템이 자기 기준으로 선을 그림 */
.management-core__item {
    position: relative;
    text-align: center;
}

.management-core__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: calc(100% + 48px);
    height: 1px;
    background: #b0b7bf;
    transform: translateX(-50%);
    z-index: 0;
}

.management-core__item:first-child::before {
    left: 50%;
    width: calc(50% + 24px);
    transform: none;
}

.management-core__item:last-child::before {
    left: auto;
    right: 50%;
    width: calc(50% + 24px);
    transform: none;
}

.management-core__topline {
    position: relative;
    z-index: 1;
    width: 1px;
    height: 34px;
    margin: 0 auto 0px;
    background: #b0b7bf;
}

.management-core__circle {
    position: relative;
    z-index: 1;
    width: 220px;
    height: 220px;
    margin: 0 auto;
    border-radius: 50%;
    background: #abbbcb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-sizing: border-box;
    padding: 28px;
}

.management-core__icon {
    display: block;
    margin-bottom: 18px;
    font-size: 48px !important;
    line-height: 1;
    color: #fff;
}

.management-core__circle strong {
    display: block;
    margin-bottom: 8px;
    font-size: 21px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #fff;
}

.management-core__circle em {
    display: block;
    font-style: normal;
    font-size: 15px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0;
    color: #fff;
}

.management-core__desc {
    max-width: 420px;
    margin: 30px auto 0;
}

.management-core__desc h6 {
    margin: 0 0 18px;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: -0.04em;
    word-break: keep-all;
}

.management-core__desc p {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    word-break: keep-all;
}

/* =========================
   TABLET
========================= */

@media (min-width: 768px) and (max-width: 1279px) {
    .mission-values .mission-section__head {
        margin-bottom: 24px;
    }

    .management-node + .management-node {
        margin-top: 34px;
    }

    .management-node__badge,
    .management-core__badge {
        min-width: 150px;
        min-height: 38px;
        padding: 0 24px;
        font-size: 20px;
    }

    .management-node__text {
        margin-top: 20px;
        font-size: 18px;
        line-height: 1.7;
    }

    .management-node__text--vision {
        font-size: 18px;
        line-height: 1.5;
    }

    .management-core {
        margin-top: 52px;
        padding-top: 72px;
    }

    .management-core__line--vertical {
        top: 20px;
        height: 52px;
    }

    .management-core__list {
        gap: 26px;
    }

    .management-core__item::before {
        width: calc(100% + 26px);
    }

    .management-core__item:first-child::before {
        width: calc(50% + 13px);
    }

    .management-core__item:last-child::before {
        width: calc(50% + 13px);
    }

    .management-core__topline {
        height: 28px;
        margin-bottom: 16px;
    }

    .management-core__circle {
        width: 200px;
        height: 200px;
        padding: 20px;
    }

    .management-core__icon {
        margin-bottom: 12px;
        font-size: 42px !important;
    }

    .management-core__circle strong {
        margin-bottom: 6px;
    }

    .management-core__circle em {
        font-size: 18px;
    }

    .management-core__desc {
        margin-top: 22px;
    }

    .management-core__desc h6 {
        margin-bottom: 12px;
        font-size: 18px;
    }

    .management-core__desc p {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {
    .mission-values .mission-section__head {
        margin-bottom: 20px;
    }

    .management-node + .management-node {
        margin-top: 26px;
    }

    .management-node__badge,
    .management-core__badge {
        min-width: 132px;
        min-height: 42px;
        padding: 0 20px;
        font-size: 18px;
    }

    .management-node__text {
        margin-top: 16px;
        font-size: 16px;
        line-height: 1.75;
    }

    .management-node__text--vision {
        font-size: 18px;
        line-height: 1.6;
    }

    .management-core {
        margin-top: 38px;
        padding-top: 72px;
    }

    .management-core__line--vertical,
    .management-core__topline,
    .management-core__item::before {
        display: none;
    }

    .management-core__list {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .management-core__circle {
        width: 180px;
        height: 180px;
        padding: 18px;
    }

    .management-core__icon {
        margin-bottom: 10px;
        font-size: 34px !important;
    }

    .management-core__circle strong {
        margin-bottom: 4px;
        font-size: 24px;
    }

    .management-core__circle em {
        font-size: 15px;
    }

    .management-core__desc {
        margin-top: 16px;
        max-width: 100%;
    }

    .management-core__desc h6 {
        margin-bottom: 10px;
        font-size: 18px;
        line-height: 1.45;
    }

    .management-core__desc p {
        font-size: 14px;
        line-height: 1.75;
    }
}

/* =========================
   IN VIVO CAR VISUAL COMPARE TABLE
========================= */

.compare-table--visual {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    background: #fff;
    overflow: hidden;
}

.compare-table--visual col.col-left {
    width: 42%;
}

.compare-table--visual col.col-mid {
    width: 16%;
}

.compare-table--visual col.col-right {
    width: 42%;
}

.compare-table--visual th,
.compare-table--visual td {
    padding: 22px 20px;
    text-align: center;
    vertical-align: middle;
    font-size: 18px;
    line-height: 1.45;
    letter-spacing: -0.03em;
    border-right: 1px solid #d7dbe6;
    border-bottom: 1px solid #d7dbe6;
    word-break: keep-all;
    box-sizing: border-box;
}

.compare-table--visual thead th {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.compare-table--visual .head-main {
    background: #3e519d;
    color: #fff;
    border-top: 0;
    border-left: 0;
}

.compare-table--visual .head-vs {
    background: #ececec;
    color: #666;
    font-size: 24px;
    font-weight: 700;
}

.compare-table--visual .head-sub {
    background: #d9d9d9;
    color: #4a4a4a;
}

.compare-table--visual .cell-main {
    background: #eef2ff;
    color: #24315f;
    font-weight: 700;
    border-left: 3px solid #3e519d;
    border-right: 3px solid #3e519d;
}

.compare-table--visual thead .head-main {
    border-left: 3px solid #3e519d;
    border-right: 3px solid #3e519d;
    border-top: 3px solid #3e519d;
}

.compare-table--visual tbody tr:last-child .cell-main {
    border-bottom: 3px solid #3e519d;
}

.compare-table--visual .cell-label {
    background: #f5f5f5;
    color: #666;
    font-size: 17px;
    font-weight: 600;
}

.compare-table--visual .cell-sub {
    background: #fafafa;
    color: #666;
    font-weight: 500;
}

.compare-table--visual tbody tr:first-child td {
    border-top: 0;
}

.compare-table--visual th:last-child,
.compare-table--visual td:last-child {
    border-right: 0;
}

.compare-table--visual tbody tr:last-child td {
    border-bottom: 0;
}

/* 모바일 */
@media (max-width: 767px) {
    .compare-table--visual {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .compare-table--visual table,
    .compare-table--visual tbody {
        width: 100%;
    }

    .compare-table--visual th,
    .compare-table--visual td {
        padding: 14px 10px;
        font-size: 13px;
        line-height: 1.4;
        min-width: 110px;
    }

    .compare-table--visual thead th {
        font-size: 18px;
    }

    .compare-table--visual .head-vs {
        font-size: 16px;
    }

    .compare-table--visual .cell-label {
        font-size: 12px;
    }
}