@charset "utf-8";

/* Type Selector Reset */
body {
	-webkit-text-size-adjust: 100%;
	font-weight: 500;
	font-family: "SUITE Variable", "AppleSDGothicNeo", sans-serif;
	font-size: 1rem;
	line-height: 1.25;
	color: #555;
}
html,
body {
	width: 100%;
	margin: 0;
	padding: 0;
	font-size: 100%;
	box-sizing: border-box;
}
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
figure {
	margin: 0;
	padding: 0;
}
header,
footer,
section,
article,
aside,
nav,
hgroup,
details,
menu,
figure,
figcaption {
	display: block;
}
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	overflow: visible;
	cursor: pointer;
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="submit"],
textarea {
	-webkit-appearance: none;
}
input,
select,
textarea,
button {
	font-family: "SUITE Variable", sans-serif;
	font-size: 100%;
	border-radius: 0;
}
button {
	overflow: visible;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
}
ul li {
	list-style: none;
}
img,
fieldset {
	border: none;
}
hr {
	display: none;
}
a,
a:link {
	text-decoration: none;
	color: #555;
}
a:visited {
	text-decoration: none;
}
a:hover,
a:focus {
	text-decoration: underline;
	color: #222;
}
a:active {
	text-decoration: none;
}

/* 스크롤 방향 관련 설정 */
html,
body {
	overflow-x: hidden;
	width: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
html {
	overflow-y: scroll;
}

/* 접근성 내비게이션 */
#acc-nav {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	height: 0;
}
#acc-nav a {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	overflow: hidden;
	width: 1px;
	height: 1px;
	margin-left: -1px;
	margin-bottom: -1px;
	text-align: center;
	font-weight: bold;
	font-size: 0.875em;
	color: #000;
	white-space: nowrap;
}
#acc-nav a:focus,
#acc-nav a:hover,
#acc-nav a:active {
	width: 100%;
	height: auto;
	padding: 10px 0;
	background: #000;
	color: #fff;
	z-index: 1000;
}

/* 헤더 레이아웃 */
#header {
	position: fixed;
	width: 100%;
	height: 100px;
	top: 0;
	left: 0;
	z-index: 9990;
	background: transparent;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: background 0.3s, border-color 0.3s;
}

/* 스크롤 내리면 흰색 배경 */
#header.on,
#header.scroll {
	background: #fff;
	border-bottom: 1px solid #eee !important;
}

/* 서브 페이지 흰색 배경 */
#tt-body-page #header,
#tt-body-category #header,
#tt-body-search #header,
#tt-body-tag #header,
#tt-body-guestbook #header,
#tt-body-archive #header {
	background: #fff !important;
	border-bottom-color: #eee !important;
}

/* 헤더 내부 영역 1200px, 양옆 24px 패딩 */
#header .inner {
	position: relative;
	max-width: 1200px;
	height: 100%;
	margin: 0 auto;
	padding: 0 24px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* 로고 배경색 따라 변경 */
#header .logo {
	float: none;
	margin: 0;
	position: relative;
	z-index: 101;
}
#header h1 a {
	display: block;
	width: 130px;
	height: 32px;
	text-indent: -9999px;
	overflow: hidden;
}
#header h1 a img {
	display: none;
	height: 100%;
	width: auto;
}

/* 기본 흰색 로고 */
#header h1 a .logo-light {
	display: block;
}
#header h1 a .logo-dark {
	display: none;
}

/* 흰색 배경 어두운 로고 */
#header.on h1 a .logo-light,
#header.scroll h1 a .logo-light,
#tt-body-page #header h1 a .logo-light,
#tt-body-category #header h1 a .logo-light,
#tt-body-search #header h1 a .logo-light,
#tt-body-tag #header h1 a .logo-light,
#tt-body-guestbook #header h1 a .logo-light,
#tt-body-archive #header h1 a .logo-light {
	display: none;
}
#header.on h1 a .logo-dark,
#header.scroll h1 a .logo-dark,
#tt-body-page #header h1 a .logo-dark,
#tt-body-category #header h1 a .logo-dark,
#tt-body-search #header h1 a .logo-dark,
#tt-body-tag #header h1 a .logo-dark,
#tt-body-guestbook #header h1 a .logo-dark,
#tt-body-archive #header h1 a .logo-dark {
	display: block;
}

/* 헤더 어두운 배경일 때 밝은 로고 */
#header.header-light-text h1 a .logo-dark {
	display: none;
}
#header.header-light-text h1 a .logo-light {
	display: block;
}

/* 모바일 햄버거 메뉴 */
.btn_gnb {
	display: none;
	position: relative;
	width: 30px;
	height: 30px;
	z-index: 9999;
	background: transparent;
	cursor: pointer;
}
.btn_gnb .line {
	display: block;
	width: 100%;
	height: 3px;
	background: #fff;
	transition: all 0.3s;
	position: absolute;
	left: 0;
	border-radius: 2px;
}
.btn_gnb .line:nth-child(1) {
	top: 4px;
}
.btn_gnb .line:nth-child(2) {
	top: 50%;
	margin-top: -1.5px;
}
.btn_gnb .line:nth-child(3) {
	bottom: 4px;
}

/* 흰색 배경 햄버거 아이콘 어두운색 */
#header.on .btn_gnb .line,
#header.scroll .btn_gnb .line,
#tt-body-page #header .btn_gnb .line,
#tt-body-category #header .btn_gnb .line,
#tt-body-search #header .btn_gnb .line,
#tt-body-tag #header .btn_gnb .line,
#tt-body-guestbook #header .btn_gnb .line,
#tt-body-archive #header .btn_gnb .line {
	background: #333;
}

/* 어두운 배경 햄버거 아이콘 흰색 */
#header.header-light-text .btn_gnb .line {
	background: #fff;
}

/* 모바일 메뉴 열리면 X 표시, 어두운색 */
.btn_gnb.on .line {
	background: #333 !important;
}
.btn_gnb.on .line:nth-child(1) {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}
.btn_gnb.on .line:nth-child(2) {
	opacity: 0;
}
.btn_gnb.on .line:nth-child(3) {
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
}

/* 서브메뉴 배경 */
.gnb_bg {
	position: absolute;
	left: 0;
	top: 100px;
	width: 100%;
	height: 0;
	z-index: 90;
	background: #fff;
	transition: height 0.3s;
	overflow: hidden;
}
.gnb_bg.on {
	border-bottom-color: #eee;
}

/* PC 서브메뉴 */
@media screen and (min-width: 769px) {
	#gnb {
		position: static;
		text-align: center;
		width: auto;
		z-index: 99;
		height: 100%;
	}
	#gnb .depth1 {
		position: static;
		height: 100%;
		display: flex;
		justify-content: center;
	}
	#gnb .depth1 > li {
		margin: 0;
		display: inline-block;
		vertical-align: top;
		width: auto;
		position: relative;
	}

	/* 1차 메뉴 흰색 기본 */
	#gnb .depth1 > li > a {
		display: block;
		font-size: 1.1rem;
		padding: 0 24px;
		height: 100px;
		line-height: 100px;
		position: relative;
		font-weight: 500;
		color: #fff;
		box-sizing: border-box;
		transition: color 0.3s;
	}
	#gnb .depth1 > li > a:hover {
		font-weight: 500;
		text-decoration: none;
	}

	/* 스크롤, 호버 1차 메뉴 어두운 색 */
	#header.on #gnb .depth1 > li > a,
	#header.scroll #gnb .depth1 > li > a,
	#tt-body-page #header #gnb .depth1 > li > a,
	#tt-body-category #header #gnb .depth1 > li > a,
	#tt-body-search #header #gnb .depth1 > li > a,
	#tt-body-tag #header #gnb .depth1 > li > a,
	#tt-body-guestbook #header #gnb .depth1 > li > a,
	#tt-body-archive #header #gnb .depth1 > li > a {
		color: #333;
	}

	#gnb .depth1 > li > a::after {
		content: "";
		display: block;
		width: 0;
		height: 3px;
		background: #0084e5;
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		transition: width 0.3s;
	}
	#gnb .depth1 > li:hover > a::after {
		width: calc(100% - 50px);
	}
	#gnb .depth1 > li.on > a::after {
		width: calc(100% - 50px);
	}
	#gnb .depth1 > li.on > a {
		color: #1a70df !important;
	}
	#gnb .depth1 > li > a:hover {
		color: #1a70df !important;
	}

	/* 2차 메뉴 */
	#gnb .depth2 {
		position: absolute;
		top: 100px;
		left: 50%;
		transform: translateX(-50%);
		width: 100%;
		min-width: 100%;
		text-align: center;
		z-index: 95;
		height: 0;
		overflow: hidden;
		background: transparent !important;
		padding-top: 12px;
		box-sizing: border-box;
		pointer-events: none;
		display: block;
		transition: height 0.3s ease-in-out;
		white-space: normal;
		word-break: break-word;
	}

	#gnb .depth2 li a {
		padding: 6px 8px;
		font-size: 15px;
		color: #333 !important;
		line-height: 1.3;
		font-weight: 500;
		display: flex;
		justify-content: center;
		align-items: center;
		min-height: 16px;
	}

	/* 마우스 호버 동작 */
	#header:hover .gnb_bg {
		min-height: 170px;
		padding-bottom: 24px;
		border-top: 1px solid #eee;
	}
	#header:hover #gnb .depth2 {
		height: 170px;
		pointer-events: auto;
	}
	#header:hover {
		background: #fff !important;
	}

	/* 2차 메뉴 어두운색 */
	#header:hover #gnb .depth1 > li > a {
		color: #333 !important;
	}

	#header:hover .btn_gnb .line {
		background: #333 !important;
	}
	#header:hover .logo .logo-dark {
		display: block;
	}
	#header:hover .logo .logo-light {
		display: none;
	}

	#gnb .depth1 > li > a:hover {
		text-decoration: none;
	}
	#header.on #gnb .depth1 > li > a,
	#header.scroll #gnb .depth1 > li > a {
		color: #333;
	}

	#gnb .depth1 > li > a::after {
		content: "";
		display: block;
		width: 0;
		height: 3px;
		background: #1a70df;
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		transition: width 0.3s;
	}
	#gnb .depth1 > li:hover > a::after {
		width: calc(100% - 50px);
	}
	#gnb .depth1 > li.on > a {
		color: #1a70df !important;
	}
	#gnb .depth2 li a:hover {
		color: #1a70df !important;
		font-weight: 700;
		text-decoration: none;
	}
}

/* 모바일 환경 */
@media screen and (max-width: 768px) {
	#header {
		height: 64px;
	}
	#header .inner {
		padding: 0 24px;
	}
	#header .logo {
		margin: 0;
	}
	#header h1 a {
		height: 32px;
	}

	.btn_gnb {
		display: block;
		right: 0;
	}
	.gnb_bg {
		display: none !important;
	}

	#gnb {
		position: fixed;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100vh;
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		z-index: 9998;
		transition: left 0.4s ease;
		text-align: center;
		display: flex;
		justify-content: center;
		align-items: center;
		padding-top: 60px;
		box-sizing: border-box;
		overflow-y: auto;
	}
	#gnb.mobile-open {
		left: 0;
	}

	#gnb .depth1 {
		width: 100%;
		max-width: 400px;
		padding: 0 20px;
		box-sizing: border-box;
		margin: auto 0;
	}
	#gnb .depth1 > li {
		display: block;
		width: 100%;
		margin-bottom: 5px;
		border-bottom: 1px solid #eee;
	}
	#gnb .depth1 > li:last-child {
		border-bottom: none;
	}

	#gnb .depth1 > li > a {
		display: block;
		line-height: 60px;
		font-size: 1.5rem;
		font-weight: 700;
		color: #333 !important;
		width: 100%;
		box-sizing: border-box;
		text-decoration: none;
	}
	#gnb .depth1 > li.on > a {
		color: #0084e5 !important;
	}
	#gnb .depth1 > li.on > a::after {
		display: none;
	}

	#gnb .depth2 {
		height: auto !important;
		display: none;
		position: static;
		background: transparent !important;
		padding: 10px 0 20px 0;
		overflow: hidden;
	}
	#gnb .depth2 li:nth-of-type(1) {
		margin-top: 0;
	}
	#gnb .depth2 li a {
		font-size: 1rem;
		color: #555 !important;
		line-height: 36px;
		font-weight: 500;
	}
	#gnb .depth2 li a:hover {
		color: #0084e5 !important;
		font-weight: 500;
		text-decoration: none;
	}
}

/* 헤더 색상 색 제어 */
#header.header-light-text #gnb .depth1 > li > a {
	color: #fff;
}
#header.header-light-text .btn_gnb .line {
	background: #fff;
}
.depth2 li.active a {
	color: #0084e5 !important;
	font-weight: 700;
}

/* 언어 변경 드롭다운 */
.gtranslate_wrapper {
	display: inline-block;
}
@media screen and (max-width: 768px) {
	.gtranslate_wrapper {
		margin-left: auto;
		margin-right: 1rem;
	}
}
.gtranslate_wrapper select {
	appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	padding: 8px 12px;
	border-radius: 4px;
	border: 1px solid #ddd;
	background: #fff;
	font-size: 14px;
	line-height: 1.4;
	cursor: pointer;
	outline: none;
	transition: all 0.05s ease;
	width: 128px;
}
.gtranslate_wrapper select:hover {
	box-shadow: 0 0px 4px rgba(0, 0, 0, 0.2);
}
.gtranslate_wrapper select:focus {
	box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
}
.gtranslate_wrapper option {
	font-size: 14px;
}

/* 홈 상단 영역 */
.cover-thumbnail-3 {
	position: relative;
	margin-bottom: 0;
	padding-top: 0;
	width: 100%;
	height: 100%;
}

/* 메인 슬라이드 */
#mainVisual {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100vh;
	background: transparent;
}

#mainVisual .main_txt {
	display: flex;
	flex-flow: column;
	position: absolute;
	max-width: 1200px;
	padding: 0 24px;
	top: 60%;
	z-index: 10;
	color: #fff;
	margin: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	box-sizing: border-box;
}
#mainVisual .main_txt .btxt {
	font-size: 52px;
	line-height: 1.2;
	font-family: "DM sans";
}
#mainVisual .main_txt .stxt {
	margin-top: 24px;
	font-size: 18px;
	line-height: 1.7;
}

/* 메인 슬라이드 이미지 */
#mainVisual .main_slide {
	height: 100%;
}
#mainVisual ul {
	z-index: 1;
	height: 100%;
}
#mainVisual ul li {
	overflow: hidden;
	height: 100%;
}
#mainVisual ul li:after {
	display: block;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.25);
}
#mainVisual ul li .bg {
	width: 100%;
	height: 100%;
	background: url("./images/bg4.webp") center no-repeat;
	background-size: cover;
}
#mainVisual ul li .bg02 {
	background-image: url("./images/bg1.webp");
}
#mainVisual ul li .bg03 {
	background-image: url("./images/bg7.webp");
}

/* 메인 슬라이드 진행바 */
#mainVisual .controls {
	display: flex;
	align-items: center;
	gap: 35px;
	margin-top: 60px;
}
#mainVisual .circle {
	position: relative;
}
#mainVisual .circle .autoplay-progress {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 60px;
	height: 60px;
}
#mainVisual .circle .autoplay-progress svg {
	z-index: 10;
	width: 100%;
	height: 100%;
	stroke-width: 2px;
	stroke: #fff;
	fill: none;
	stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
	stroke-dasharray: 125.6;
	transform: rotate(-90deg);
}
#mainVisual .circle .autoplay-progress .bg {
	position: absolute;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	border: 3px solid rgba(255, 255, 255, 0.5);
}
#mainVisual .circle .play div {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 10;
	transform: translate(-50%, -50%);
}
#mainVisual .circle .play span {
	cursor: pointer;
	font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 40;
	font-size: 18px;
}
#mainVisual .circle .play div.swiper-pause {
	display: block;
}
#mainVisual .circle .play div.swiper-play {
	display: none;
}
#mainVisual .circle .play.on div.swiper-pause {
	display: none;
}
#mainVisual .circle .play.on div.swiper-play {
	display: block;
}
#mainVisual .arrow {
	display: flex;
	align-items: center;
	gap: 25px;
}
#mainVisual .arrow > span {
	display: flex;
}
#mainVisual .arrow i {
	cursor: pointer;
	width: 40px;
	opacity: 0.6;
	transition: all 0.2s;
}
#mainVisual .arrow .pager {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 43px;
	font-size: 15px;
	font-weight: 600;
}
#mainVisual .arrow .i:hover {
	opacity: 1;
}

/* 메인 슬라이드 스크롤 */
#mainVisual .scroll {
	position: absolute;
	z-index: 10;
	right: auto;
	bottom: 80px;
	padding: 0 24px;
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	left: 50%;
	transform: translateX(-50%);
	max-width: 1200px;
	text-align: right;
	box-sizing: border-box;
}
#mainVisual .scroll span {
	display: block;
	position: absolute;
	right: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #fff;
	transition: all 0.2s;
	animation: scr_down 3s infinite;
}
@keyframes scr_down {
	0% {
		top: 0;
		opacity: 0;
	}
	20% {
		opacity: 1;
	}
	100% {
		top: 90%;
		opacity: 0;
	}
}

/* 스크롤 스냅 설정 */
.snap-section {
	height: 100vh;
	position: relative;
	overflow: hidden;
}
#footer {
	height: auto;
	position: relative;
	z-index: 10;
}

@media screen and (max-width: 768px) {
	#tt-body-index {
		overflow-y: auto !important;
		height: auto !important;
	}
	#tt-body-index .snap-section:not(#mainVisual) {
		height: auto;
		min-height: auto;
		overflow: visible;
	}
	#mainVisual {
		height: 100vh;
	}
}

/* 기본 타이틀 */
.h2-title {
	font-size: 42px;
	color: #222;
	text-align: center;
	margin-bottom: 32px;
	font-family: "DM sans", "SUITE Variable", sans-serif;
}
@media screen and (max-width: 768px) {
	.h2-title {
		font-size: 32px;
	}
}

/* 홈 - 프로덕트 소개 */
.business-card {
	height: 100vh;
	background: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0 24px;
}
.business-card .card-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
	max-width: 1200px;
	margin: 0 auto;
}
.card-item {
	background: #fff;
	border-radius: 0px;
	overflow: hidden;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	transition: 0.3s ease;
	cursor: pointer;
	position: relative;
}
.card-item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.2);
	z-index: 5;
	transition: background 0.3s ease;
}
.card-image {
	width: 100%;
	height: 400px;
	overflow: hidden;
}
.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.card-item:hover .card-image img {
	transform: scale(1.2);
}
.card-text {
	position: absolute;
	bottom: 24px;
	left: 24px;
	z-index: 12;
	color: #fff;
	pointer-events: none;
}
.card-title {
	margin: 0 0 8px;
	font-size: 20px;
	font-weight: 700;
	text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}
.card-desc {
	margin: 0;
	font-size: 15px;
	text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) {
	.business-card {
		padding: 100px 24px;
	}
	.business-card .card-container {
		grid-template-columns: repeat(2, 1fr);
	}
	.card-desc {
		word-break: break-word;
	}
	.card-image {
		height: 300px;
	}
}

@media screen and (max-width: 480px) {
	.business-card {
		height: auto;
	}
	.business-card .card-container {
		display: grid;
		grid-template-columns: 1fr;
		gap: 8px;
	}
	.card-image {
		height: auto;
		width: 100%;
		aspect-ratio: 4 / 2;
	}
	.card-title {
		font-size: 22px;
	}
	.card-desc {
		font-size: 16px;
	}
}

/* 홈 - 어바웃/메트릭 */
.about-metrics {
	height: 100vh;
	background: rgb(245, 247, 253);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 32px 24px 0;
}
.metrics-grid {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 32px 0;
	background: #fff;
	max-width: 1200px;
	margin: 0 auto;
}
.metric-item {
	width: 25%;
	min-width: 250px;
	position: relative;
	padding: 32px 20px;
	box-sizing: border-box;
	text-align: center;
}
.metric-item::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 80px;
	background-color: #eee;
}
.metric-item:last-child::after {
	display: none;
}
.metric-item .fa-solid {
	display: block;
	font-size: 24px;
	color: #666;
	margin: 0 auto 16px;
}
.metric-item .label {
	font-size: 18px;
	font-weight: 500;
	color: #666;
	margin-bottom: 8px;
}
.metric-item .number {
	font-size: 36px;
	font-weight: 800;
	color: #111;
	line-height: 1.2;
}
.metric-item .unit {
	font-size: 20px;
	font-weight: 500;
	margin-left: -2px;
	vertical-align: baseline;
	color: #333;
}
.about-metrics > a {
	display: block;
	width: 100%;
	max-width: 1200px;
	margin: 16px auto 0;
	text-decoration: none;
}

.grid-contact {
	position: relative;
	width: 100%;
	height: 140px;
	overflow: hidden;
	padding: 32px;
	box-sizing: border-box;
}
.grid-contact::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("./images/bg17.webp") no-repeat center center / cover;
	transition: transform 0.5s ease;
}
.grid-contact::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to right,
		rgba(0, 0, 0, 0.7),
		rgba(0, 0, 0, 0.05)
	);
	z-index: 1;
	pointer-events: none;
}
.grid-contact .contact-title,
.grid-contact .contact-desc {
	position: relative;
	z-index: 2;
}
.about-metrics > a:hover .grid-contact::before {
	transform: scale(1.1);
}
.contact-title {
	font-size: 22px;
	color: #0091e5;
	margin-bottom: 4px;
}
.contact-desc {
	font-size: 15px;
	color: #fff;
}

@media screen and (max-width: 1200px) {
	.metrics-grid {
		flex-wrap: wrap;
		justify-content: center;
		padding: 24px 0px;
		gap: 0;
	}
	.metric-item {
		width: 48%;
		margin-bottom: 16px;
		padding: 0 10px;
	}
	.metric-item:nth-child(3),
	.metric-item:nth-child(4) {
		margin-bottom: 0;
	}
	.metric-item:nth-child(even)::after {
		display: none;
	}
	.metric-item:nth-child(odd)::after {
		display: block;
		content: "";
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		width: 1px;
		height: 60px;
		background-color: #ccc;
	}
	.metrics-grid {
		max-width: none;
		width: 100%;
	}
	.about-metrics a {
		max-width: none;
	}
}

@media screen and (max-width: 768px) {
	.metric-item .number {
		font-size: 32px;
	}
	.metric-item .label {
		font-size: 15px;
		word-break: break-word;
	}
	.about-metrics {
		padding: 100px 24px;
	}
}

@media screen and (max-width: 480px) {
	.metrics-grid {
		display: block;
		padding: 16px 0;
	}
	.metric-item {
		width: 100%;
		margin-bottom: 16px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 16px;
	}
	.metric-item:nth-child(1),
	.metric-item:nth-child(2),
	.metric-item:nth-child(3),
	.metric-item:nth-child(4) {
		margin-bottom: 4px;
	}
	.metric-item::after {
		display: none !important;
	}
	.metric-item .fa-solid {
		font-size: 24px;
		margin-bottom: 8px;
		margin: -8px 4px 0;
	}
	.metric-item .label {
		margin-right: auto;
		margin-left: 4px;
		text-align: left;
		margin-bottom: 0px;
	}
	.metric-item .number {
		align-self: flex-end;
		font-size: 24px;
	}
	.metric-item .unit {
		display: none;
	}
}

/* 홈 - 뉴스 */
.cover-thumbnail-2.snap-section {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.home-news {
	max-width: 1200px;
	padding: 0 24px;
	box-sizing: border-box;
	width: 100%;
}
.home-news-container {
	max-height: 65vh;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 0;
}
.home-news-container::-webkit-scrollbar {
	width: 4px;
}
.home-news-container::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	margin: 4px 0;
}
.home-news-container::-webkit-scrollbar-thumb {
	background: #999;
	border-radius: 8px;
	transition: background 0.3s ease;
}
.home-news-container::-webkit-scrollbar-thumb:hover {
	background: #333;
}
.home-news-container li:hover .title {
	text-decoration: underline;
	color: #0084e5;
}

.cover-thumbnail-2 {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin: 0 auto;
	max-width: 1200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.cover-thumbnail-2 ul li {
	width: 100%;
	margin-top: 0;
	border-bottom: 1px solid #eee;
	padding: 24px 0;
	box-sizing: border-box;
}
.cover-thumbnail-2 ul li:last-child {
	border-bottom: none;
}
.cover-thumbnail-2 ul li a {
	display: flex;
	flex-direction: row;
	text-decoration: none;
	width: 100%;
	align-items: center;
	justify-content: space-between;
}
.cover-thumbnail-2 ul li figure {
	width: 240px;
	aspect-ratio: 4 / 3;
	height: auto;
	margin-right: 0;
	margin-left: 16px;
	order: 2;
	flex-shrink: 0;
	background-color: #eee;
	border-radius: 8px;
	overflow: hidden;
}
.cover-thumbnail-2 ul li figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
	box-sizing: border-box;
}
.cover-thumbnail-2 ul li a:hover figure img {
	transform: scale(1.1);
}
.cover-thumbnail-2 ul li a > div {
	min-width: 0;
	flex: 1;
	order: 1;
	text-align: left;
}
.cover-thumbnail-2 ul li .title {
	display: block;
	font-size: 20px;
	font-weight: 700;
	color: #222;
	margin-bottom: 8px;
	line-height: 1.4;
	-webkit-line-clamp: unset;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.cover-thumbnail-2 ul li .excerpt {
	overflow: hidden;
	margin-bottom: 12px;
	text-overflow: ellipsis;
	font-size: 0.875em;
	line-height: 1.5;
	color: #999;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.cover-thumbnail-2 ul li .meta {
	font-size: 0.75em;
	color: #999;
}

.default-button {
	cursor: pointer;
	width: 180px;
	margin: 32px auto;
	background: #fff;
	border: 1px solid #eee;
	color: #333;
	border-radius: 4px;
	text-align: center;
	display: block;
	padding: 12px;
	font-size: 1rem;
	transition: background 0.3s ease;
}
.default-button:hover {
	background: rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 1200px) {
	.home-news {
		padding: 0 24px;
	}
	.home-news-container {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
	}
}

@media screen and (max-width: 768px) {
	.home-news {
		padding: 0;
	}
	.home-news-container {
		max-height: none;
		height: auto;
		overflow-y: visible;
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
		display: flex;
		flex-direction: column;
	}
	.cover-thumbnail-2 {
		width: auto;
		margin: 0 auto;
		padding: 100px 24px;
		border-top: 0px solid #f5f5f5;
	}

	.cover-thumbnail-2 ul li {
		border-bottom: 1px solid #eee;
		padding-bottom: 16px;
		margin-bottom: 0;
	}

	.cover-thumbnail-2 ul li:last-child {
		border-bottom: none;
	}

	.cover-thumbnail-2 ul li a {
		flex-direction: row;
		align-items: center;
	}

	.cover-thumbnail-2 ul li figure {
		width: 120px;
		height: 100px;
		aspect-ratio: auto;
		margin-bottom: 0;
		flex-shrink: 0;
	}
	.cover-thumbnail-2 ul li .title {
		margin-bottom: 4px;
		font-size: 16px;
	}
	.cover-thumbnail-2 ul li a > div {
		flex: 1;
		min-width: 0;
	}
}

@media screen and (max-width: 480px) {
	.home-news {
		padding: 0;
	}
	.home-news-container {
		grid-template-columns: 1fr;
	}
}

/* 홈 하단 솔루션 */
.cover-event {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
}
.solution-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	padding: 0px;
	box-sizing: border-box;
	width: 100%;
}
.solution-item > .h2-title {
	color: rgba(255, 255, 255, 0.1);
	font-size: 12vw;
	z-index: 3;
	width: 100%;
	white-space: nowrap;
	pointer-events: none;
	padding: 0;
	margin: 0;
	top: 85%;
	left: 50%;
	position: absolute;
	transform: translate(-50%, -50%) !important;
}
#inc02 {
	box-sizing: border-box;
	position: relative;
	width: 100%;
	height: 100dvh;
	overflow: hidden;
	z-index: 2;
}
#inc02 .bsn {
	display: flex;
	height: 100%;
	font-size: 15px;
	z-index: 10;
	position: relative;
	list-style: none;
	padding: 0;
	margin: 0;
}
#inc02 .bsn > li {
	flex: 1;
	text-align: center;
	transition: flex 0.5s ease, background 0.5s ease, color 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 32px 24px;
	color: #fff;
	text-decoration: none;
}
#inc02 .bsn > li + li {
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}
#inc02 .bsn h3.pl {
	font-size: 24px;
	text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
	line-height: 1.3;
	color: rgba(255, 255, 255, 0.9);
	text-transform: none;
	margin: 0;
}
#inc02 .bsn .ex {
	display: none;
	gap: 8px;
	margin-top: 12px;
	font-weight: 500;
	color: #fff;
}
#inc02 .bsn .ex li {
	display: inline-block;
	padding: 12px 16px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 15px;
	background: rgba(0, 0, 0, 0.3);
}
#inc02 .bsn > li:hover {
	flex: 2;
	background: rgba(0, 0, 0, 0.7);
}
#inc02 .bsn > li:hover {
	color: #0084e5;
}
#inc02 .bsn > li:hover h3.pl {
	color: #0084e5;
}
#inc02 .bsn > li:hover .ex {
	display: flex;
	justify-content: center;
	flex-direction: column;
}
#inc02 .hov_bg {
	overflow: hidden;
	position: absolute;
	z-index: 1;
	inset: 0;
	background: #111;
}
#inc02 .hov_bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media screen and (max-width: 768px) {
	.solution-item {
		padding: 48px 0;
		height: 80vh;
		min-height: auto;
	}
	#inc02 {
		height: auto;
	}
	#inc02 .bsn {
		flex-direction: column;
		height: auto;
	}
	#inc02 .bsn > li {
		flex: 1 !important;
		min-height: 120px;
	}
	#inc02 .bsn > li:hover {
		background: rgba(0, 0, 0, 0.7);
		flex: 1;
	}
	#inc02 .bsn > li:hover img {
		transform: none;
		width: 100%;
	}
	#inc02 .bsn > li + li {
		border-left: none;
		border-top: 1px solid rgba(255, 255, 255, 0.2);
	}
	#inc02 .bsn .ex {
		gap: 4px;
		margin-top: 8px;
	}
}

/* 홈 하단 파트너 로고 */
.partner-logos {
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 100vh;
	padding: 0 24px;
	max-width: 1200px;
	box-sizing: border-box;
	overflow: hidden;
}
.partner-logos .h2-title {
	background: linear-gradient(to bottom, #3a3a3a2e, #fff);
	-webkit-background-clip: text;
	-background-clip: text;
	color: transparent;
	font-size: 8vw;
	text-wrap: nowrap;
}
.logos-slide {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: nowrap;
	animation: slide-left 60s linear infinite;
}
.logos-slide img {
	height: 48px;
	margin: 0 24px;
}
.logo-slide-container {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.logo-slide-container::before,
.logo-slide-container::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 60px;
	z-index: 2;
	pointer-events: none;
}
.logo-slide-container::before {
	left: 0;
	background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.logo-slide-container::after {
	right: 0;
	background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

@keyframes slide-left {
	from {
		transform: translateX(0%);
	}
	to {
		transform: translateX(-650%);
	}
}

@media screen and (max-width: 768px) {
	.logos-slide {
		animation-duration: 70s;
	}
	.partner-logos {
		padding: 72px 24px 120px;
	}
}

/* 카테고리, 게시물 및 기타 영역 오버라이드 */
#container {
	position: relative;
}
#container .content-wrap {
	width: 100%;
	margin: 0 auto;
}
#container .content-wrap::after {
	content: "";
	clear: both;
	display: block;
	height: 0;
	visibility: hidden;
}
#content {
	float: left;
	width: 100%;
	padding: 0;
	box-sizing: border-box;
}
#content > .inner::after {
	content: "";
	clear: both;
	display: block;
	height: 0;
	visibility: hidden;
}

@media screen and (max-width: 1200px) {
	#container .content-wrap:before {
		left: 72.7%;
		margin-left: 0;
	}
}

/* 카테고리 게시물 목록일 때 */
#content > .inner:has(.post-item) {
	width: 100%;
	box-sizing: border-box;
	max-width: 1200px;
	margin: 0 auto;
	padding: 64px 24px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px 16px;
}

@media screen and (max-width: 768px) {
	#content > .inner:has(.post-item) {
		padding: 48px 24px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px 16px;
	}
	.pagination {
		padding: 16px 24px 32px;
	}
}
@media screen and (max-width: 480px) {
	#content > .inner:has(.post-item) {
		grid-template-columns: 1fr;
		gap: 4px 0;
		padding: 48px 24px 4px;
	}
}

/* 게시물 리스트 */

.post-item {
	float: none;
	width: auto !important;
	margin: 0;
	min-width: 0;
}
.post-item a {
	display: flex;
	text-decoration: none;
	flex-direction: column;
	height: 100%;
}
.post-item a:hover .title,
.post-item a:focus .title {
	color: #0084e5;
	text-decoration: underline;
	text-decoration-color: #0084e5;
	text-underline-offset: 4px;
}
.post-item .thum {
	position: relative;
	display: block;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 4 / 2.5;
	margin-bottom: 16px;
	background-color: #f8f8f8;
	border-radius: 8px;
}
.post-item .thum img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.post-item .title {
	font-size: 18px;
	font-weight: 700;
	color: #222;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	margin-bottom: 8px;
	padding-top: 0;
	line-height: 1.4;
}
.post-item .excerpt {
	display: none;
	/* display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 12px;
  font-size: 0.875em;
  line-height: 1.5;
  color: #888; */
}
.post-item .meta {
	display: block;
	font-size: 0.8125em;
	color: #aaa;
	margin-top: auto;
}
.post-item.protected .thum:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 34px;
	height: 47px;
	margin: -24px 0 0 -17px;
	background: url(./images/ico_package.png) no-repeat 0 -120px;
	background-size: 120px auto;
}
@media screen and (max-width: 480px) {
	.post-item {
		border-bottom: 1px solid #eee;
		padding: 16px 0;
	}

	.post-item:last-child {
		border-bottom: none;
	}

	.post-item a {
		display: grid;
		grid-template-columns: 110px 1fr;
		grid-template-rows: auto auto auto;
		column-gap: 16px;
		align-items: center;
	}
	.post-item .thum {
		grid-row: 1 / 4;
		width: 110px;
		height: 110px;
		aspect-ratio: auto;
		margin-bottom: 0;
		border-radius: 6px;
	}
	.post-item .title {
		grid-column: 2;
		font-size: 16px;
		margin-bottom: 4px;
		-webkit-line-clamp: 2;
	}
	.post-item .excerpt {
		display: none;
	}
	.post-item .meta {
		grid-column: 2;
		margin-top: 4px;
	}
}

/* 푸터 */
#footer {
	padding: 32px 24px;
	border-top: 1px solid #eee;
}
#footer .inner {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
}
#footer p {
	margin-bottom: 8px;
	font-size: 0.875em;
	color: #777;
}
#footer .order-menu a {
	display: inline-block;
	margin-bottom: 23px;
	font-size: 0.8125em;
	vertical-align: middle;
	color: #555;
}
#footer .order-menu a:hover,
#footer .order-menu a:focus {
	color: #333;
}
#footer .order-menu a:before {
	content: "";
	display: inline-block;
	width: 2px;
	height: 2px;
	margin: 0 8px 2px 8px;
	background-color: #d2d2d2;
	vertical-align: middle;
}
#footer .order-menu a:first-child::before {
	content: none;
}
#footer .page-top {
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 30px;
	border: 1px solid #eee;
	border-radius: 50%;
	background: #fff url(./images/ico_package.png) no-repeat -100px -200px;
	text-indent: -999em;
}
#footer .page-top:focus,
#footer .page-top:hover {
	background-color: rgba(211, 211, 211, 0.5);
	background-position-x: -150px;
}

@media screen and (max-width: 768px) {
	#footer {
		padding: 32px 24px;
	}
	#footer p {
		margin-bottom: 11px;
		font-size: 0.8125em;
	}
	#footer .order-menu {
		margin-bottom: 8px;
	}
	#footer .order-menu a {
		margin-bottom: 0;
	}
	#footer .order-menu a:before {
		content: "";
		display: inline-block;
		width: 2px;
		height: 2px;
		margin: 0 8px 2px 6px;
		background-color: #d2d2d2;
		vertical-align: middle;
	}
	#footer .order-menu a:first-child::before {
		content: none;
	}
}

/* 상단 nav 여백 */
#tt-body-page #container {
	padding-top: 100px;
}
#tt-body-page.post-cover-hide #container {
	padding-top: 0;
}
#tt-body-page .post-cover {
	width: 100%;
}
#tt-body-tag .tags {
	margin-top: 0;
}

@media screen and (max-width: 768px) {
	#tt-body-page #container {
		padding-top: 64px;
	}
}

/* pages hero 영역 */
.category-hero {
	color: #fff !important;
}
.page-header {
	margin-top: 100px;
	padding: 64px 24px;
	height: 300px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
}
.page-header::before {
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.2) 0%,
		rgba(0, 0, 0, 0.7) 100%
	);
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}

/* pages hero 배경 이미지 설정 */
.page-header.company {
	background: url("./images/bg8.webp") no-repeat center center / cover;
}
.page-header.product {
	background: url("./images/bg9.webp") no-repeat center center / cover;
}
.page-header.contact {
	background: url("./images/bg5.webp") no-repeat center center / cover;
}
.page-header.tech {
	background: url("./images/bg2.webp") no-repeat center center / cover;
}

.page-header.service {
	background: url("./images/bg3.webp") no-repeat center center / cover;
}

/* pages 내부 기본 설정 */
.page-content {
	padding: 64px 24px 24px;
	margin: 0 auto !important;
	max-width: 1200px;
	height: auto;
}

/* 회사소개 메인 그라데이션 */
#inc05 {
	position: relative;
	padding-top: 120px;
	padding-bottom: 120px;
	background: #fff;
	color: #111;
	box-sizing: border-box;
}
#inc05-inner {
	position: relative;
	z-index: 2;
}
#inc05 .inc05-pl {
	font-size: 1.1rem;
}
#inc05 .inc05-title {
	text-align: center;
}
#inc05 .inc05-title .inc05-p {
	margin: 0 0 24px 0;
	font-size: 24px;
	font-weight: 500;
	color: #111;
}
#inc05 .inc05-title .inc05-pl {
	font-family: "DM sans", "suite variable", sans-serif;
	font-size: 64px;
	line-height: 1.2;
	color: #111;
}
#inc05 .inc05-title .inc05-pl span {
	color: #0084e5;
}
#inc05 .inc05-content {
	margin-left: auto;
	margin-right: auto;
	max-width: 900px;
	margin-top: 64px;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.7;
	text-align: center;
	color: #333;
	word-break: break-word;
}
#inc05 .bg-gradient {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	width: 100%;
	max-width: 1000px;
	height: 520px;
	pointer-events: none;
}
#inc05 .bg-gradient::before {
	display: block;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.6;
	background: radial-gradient(
		circle,
		rgba(0, 194, 255, 0.25) 0%,
		rgba(0, 194, 255, 0.05) 50%,
		rgba(255, 255, 255, 0) 70%
	);
	animation: float-x 12s ease-in-out infinite alternate;
}
@keyframes float-x {
	0% {
		transform: scale(1) rotate(0deg);
	}
	50% {
		transform: scale(1.1) rotate(5deg);
	}
	100% {
		transform: scale(0.95) rotate(-5deg);
	}
}

@media screen and (max-width: 1200px) {
	#inc05 {
		padding-top: 64px;
		padding-bottom: 64px;
	}
	#inc05 .inc05-title .inc05-p {
		font-size: 22px;
		margin-bottom: 20px;
	}
	#inc05 .inc05-title .inc05-pl {
		font-size: 52px;
	}
	#inc05 .inc05-content {
		margin-top: 32px;
		font-size: 15px;
		max-width: 600px;
	}
	#inc05 .bg-gradient {
		max-width: 600px;
		height: 500px;
	}
}

/* 회사소개 4가지 카드 */
.vision-section {
	width: 100%;
	padding-top: 64px;
	box-sizing: border-box;
}
.vision-section .container {
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	position: relative;
	gap: 12px;
}
.vision-section .container .card {
	background-color: #fff;
	border-radius: 8px;
	padding: 32px 24px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-shadow: 0 0 8px rgba(190, 204, 251, 0.3);
	border: 1px solid rgba(0, 0, 0, 0.05);
	min-height: 120px;
}
.vision-section .card .main-title {
	font-size: 1.75rem;
	color: #0084e5;
	font-weight: 800;
}
.vision-section .card .sub-label {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 8px;
	color: #666;
	opacity: 0.8;
}
.vision-section .card .card-title {
	text-shadow: none !important;
	font-size: 1.5rem;
	margin-bottom: 12px;
	line-height: 1.4;
	font-weight: 800;
}
.vision-section .card .card-title b {
	color: #0084e5;
	font-weight: 800;
}
.vision-section .card .desc {
	font-size: 1rem;
	color: #666;
}
.vision-section .logo-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
.vision-section .logo-inner img {
	width: 80px;
	height: auto;
	filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.07));
}
.vision-section .card .icon-group {
	display: flex;
	justify-content: center;
	width: 100%;
	margin-top: 16px;
	gap: 16px;
}
.vision-section .card .icon-item {
	transition: color 0.3s ease;
	gap: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
	position: relative;
}
.vision-section .card .icon-item .fa-solid {
	font-size: 24px;
}
.vision-section .card .icon-item:not(:last-child)::after {
	content: "";
	position: absolute;
	right: -8px;
	top: 10%;
	height: 80%;
	width: 1px;
	background: #eee;
}
.vision-section .card .icon-item:hover .fa-solid {
	color: #007698;
}
.vision-section .card .icon-item span:not(.fa-solid) {
	font-size: 1rem;
	font-weight: 600;
	color: #333;
}

@media screen and (min-width: 960px) {
	.vision-section .container {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr 1fr;
		gap: 16px;
		min-height: 600px;
	}
	.vision-section .slogan-card {
		grid-column: 1 / 2;
		grid-row: 1 / 2;
		text-align: left;
		align-items: flex-start;
		padding-left: 32px;
	}
	.vision-section .vision-mission-card {
		grid-column: 2 / 3;
		grid-row: 1 / 2;
		align-items: flex-end;
		text-align: right;
		padding-right: 32px;
	}
	.vision-section .business-area-card {
		grid-column: 1 / 2;
		grid-row: 2 / 3;
	}
	.vision-section .value-card {
		grid-column: 2 / 3;
		grid-row: 2 / 3;
		align-items: flex-end;
		text-align: right;
		padding-right: 32px;
	}
	.vision-section .card.logo-card {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 180px;
		height: 180px;
		border-radius: 50%;
		box-shadow: 0 0 8px rgba(190, 204, 251, 0.5);
		z-index: 10;
		padding: 0;
	}
	.vision-section .logo-inner img {
		width: 80px;
	}
}

/* page 타이틀/설명 좌측 정렬 */
.page-title {
	margin-top: 24px;
	font-size: 3rem;
	font-weight: 700;
	color: #111;
	line-height: 1.3;
	margin-bottom: 0.75rem;
	word-break: break-word;
}
.page-description {
	font-size: 1.25rem;
	color: #666;
	line-height: 1.5;
	margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
	.page-title {
		font-size: 2rem;
	}
	.page-description {
		font-size: 1.1rem;
		margin-bottom: 24px;
	}
}

/* 연혁 */
.history-container {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
.year-group {
	display: flex;
	border-bottom: 1px solid #e5e5e5;
	padding: 80px 0;
}
.year-group:last-child {
	border-bottom: none;
}
.year-left {
	flex: 0 0 240px;
	position: sticky;
	top: 120px;
	height: fit-content;
	text-align: left;
}
.year-num {
	font-size: 4rem;
	font-weight: 700;
	color: #333;
	line-height: 1;
	letter-spacing: -1px;
	display: block;
}
.events-right {
	flex: 1;
	padding-top: 15px;
	border-left: 1px solid #eee;
	padding-left: 60px;
}
.event-item {
	position: relative;
	margin-bottom: 20px;
	padding-left: 15px;
	transition: transform 0.3s ease;
}
.event-item:last-child {
	margin-bottom: 0;
}
.event-item:hover {
	transform: translateX(10px);
}
.history-desc {
	font-size: 1.1rem;
	color: #333;
	line-height: 1.6;
	margin: 0;
	word-break: break-word;
}
.event-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 6px;
	height: 6px;
	background-color: #007698;
	border-radius: 50%;
}

@media (max-width: 768px) {
	.year-group {
		flex-direction: column;
		padding: 32px 0;
	}
	.year-left {
		position: relative;
		top: auto;
		width: 100%;
		flex: auto;
		margin-bottom: 20px;
	}
	.year-num {
		font-size: 3rem;
	}
	.events-right {
		padding-left: 0;
		border-left: none;
		border-top: 2px solid #00374c;
		padding-top: 25px;
	}
	.event-item {
		margin-bottom: 16px;
		padding-left: 15px;
	}
	.history-desc {
		font-size: 1rem;
	}
}

/* 수상 특허 인증 */
.certification-list {
	width: 100%;
	padding: 32px 0 0;
}
.certification-wrapper {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
	width: 100%;
}
.cert-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #fff;
	border-radius: 4px;
	padding: 8px;
	transition: all 0.3s ease;
	margin: 0;
	height: 100%;
}
.cert-card:hover {
	transform: translateY(-5px);
}
.img-box {
	width: 100%;
	aspect-ratio: 1 / 1.414;
	overflow: hidden;
	border-radius: 4px;
	background-color: #f7f8f9;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #eee;
}
.img-box img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}
.certification-wrapper .cert-card .certi-caption {
	font-size: 0.95rem !important;
	color: #777;
	text-align: center;
	line-height: 1.5;
	word-break: break-word;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
@media screen and (max-width: 1200px) {
	.certification-wrapper {
		grid-template-columns: repeat(4, 1fr);
	}
}
@media screen and (max-width: 1024px) {
	.certification-wrapper {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media screen and (max-width: 768px) {
	.certification-wrapper {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	.certification-wrapper .cert-card .certi-caption {
		font-size: 0.85rem !important;
	}
}

/* 프로덕트 - 소개 3단 */
.product-links {
	display: flex;
	width: 100%;
	height: 400px;
	margin: 0 auto;
	gap: 8px;
	padding: 48px 0;
	box-sizing: border-box;
}
.pl-card {
	position: relative;
	flex: 1;
	border-radius: 8px;
	overflow: hidden;
	text-decoration: none;
	transition: flex 0.5s ease;
	cursor: pointer;
}
.pl-card:hover {
	flex: 2;
}
.pl-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	transition: transform 0.5s ease;
	z-index: 1;
}
.pl-card:hover .pl-bg {
	transform: scale(1.1);
}
/* gps */
.pl-card.pro1 .pl-bg {
	background-image: url("./images/bg10.webp");
}
/* allbaro */
.pl-card.pro2 .pl-bg {
	background-image: url("./images/bg20.webp");
}
/* dtg */
.pl-card.pro3 .pl-bg {
	background-image: url("./images/bg23.webp");
}
/* 관제 */
.pl-card.pro4 .pl-bg {
	background-image: url("./images/bg19.webp");
}
.pl-dim {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
	transition: background 0.3s ease;
	z-index: 2;
}
.pl-card:hover .pl-dim {
	background: rgba(0, 0, 0, 0.15);
}
.pl-content {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 3;
	pointer-events: none;
}
.pl-title {
	position: absolute;
	top: 24px;
	left: 24px;
	margin: 0;
	color: #fff;
	font-size: 1.5rem;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
	white-space: nowrap;
}
.pl-icon {
	position: absolute;
	bottom: 24px;
	right: 24px;
	color: #fff;
	font-size: 1.2rem;
	transition: transform 0.3s ease;
}
.pl-card:hover .pl-icon {
	transform: translate(4px, -4px);
}

@media screen and (max-width: 768px) {
	.product-links {
		display: grid;
		grid-template-columns: 1fr;
		height: auto;
		gap: 12px;
	}
	.pl-card {
		aspect-ratio: 3 / 2;
		flex: none;
	}
	.pl-card:hover {
		flex: none;
	}
	.pl-title {
		font-size: 1.5rem;
		top: 20px;
		left: 20px;
	}
	.pl-icon {
		bottom: 20px;
		right: 20px;
	}
}

/* 포가드 소개 */
.fg-section {
	margin-top: 32px;
}
.fg-inner {
	width: 100%;
	box-sizing: border-box;
}
.fg-intro-wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 80px;
	gap: 40px;
}
.fg-intro-left {
	flex: 1;
}
.fg-headline {
	font-size: 2.5rem;
	line-height: 1.3;
	color: #111;
	font-weight: 700;
	margin: 0;
}
.fg-headline .accent {
	color: #0084e5;
}
.fg-intro-right {
	flex: 1;
	padding-top: 10px;
}
.fg-sub-title {
	font-size: 0.9rem;
	font-weight: 700;
	color: #0084e5;
	margin-bottom: 16px;
	text-transform: uppercase;
}
.fg-desc {
	font-size: 1rem;
	line-height: 1.7;
	color: #555;
	margin-bottom: 24px;
	word-break: break-word;
}
.fg-btn-more {
	display: inline-block;
	font-size: 0.85rem;
	font-weight: 700;
	color: #111;
	text-decoration: none;
	border-bottom: 1px solid #ccc;
	padding-bottom: 4px;
	transition: all 0.3s;
}
.fg-btn-more:hover {
	color: #df4d26;
	border-color: #df4d26;
}
.fg-product-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 40px;
	row-gap: 80px;
}
.fg-item {
	display: flex;
	flex-direction: column;
}
.fg-item:nth-child(even) {
	margin-top: 72px;
}
.fg-img-box {
	width: 100%;
	height: 320px;
	background-color: #f0f0f0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 16px;
	margin-bottom: 24px;
	position: relative;
}
/* 유선형 */
.fg-img-box.img-01 {
	background-image: url("./images/bg14.webp");
}
/* 무선형 */
.fg-img-box.img-02 {
	background-image: url("./images/bg13.webp");
}
/* 폐기물 */
.fg-img-box.img-03 {
	background-image: url("./images/bg15.webp");
}
/* obd */
.fg-img-box.img-04 {
	background-image: url("./images/bg16.webp");
}
.fg-img-box.img-03,
.fg-img-box.img-04 {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	background-color: #fff;
}
.fg-label {
	display: block;
	font-size: 0.85rem;
	font-weight: 700;
	color: #0084e5;
	margin-bottom: 8px;
}
.fg-item-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #111;
	margin-bottom: 12px;
	line-height: 1.3;
}
.fg-item-desc {
	font-size: 1rem;
	line-height: 1.6;
	color: #666;
	margin-bottom: 20px;
	word-break: break-word;
}
.fg-link {
	font-size: 0.8rem;
	font-weight: 600;
	color: #999;
	text-decoration: none;
	transition: color 0.3s;
}
.fg-item:hover .fg-link {
	color: #111;
}

@media screen and (max-width: 768px) {
	.fg-intro-wrap {
		flex-direction: column;
		gap: 20px;
		margin-bottom: 50px;
	}
	.fg-intro-right {
		padding-top: 0;
	}
	.fg-headline {
		font-size: 2rem;
	}
	.fg-product-grid {
		grid-template-columns: 1fr;
		row-gap: 32px;
	}
	.fg-item:nth-child(even) {
		margin-top: 0;
	}
	.fg-img-box {
		height: 250px;
	}
}

/* 스티키 탭 상단 고정 */
.sticky-tabs {
	z-index: 90;
	background: #fff;
	width: 100%;
	border-bottom: 1px solid transparent;
}
.sticky-tabs.fixed {
	position: fixed;
	top: 100px;
	left: 0;
	border-bottom-color: #eee;
}

.page-content .sticky-tabs .tab-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	background: #fff;
}
.page-content .sticky-tabs .tab-inner .tab-item {
	flex: 1;
	max-width: 200px;
	text-align: center;
	padding: 12px 0;
	font-size: 16px;
	color: #888;
	text-decoration: none !important;
	cursor: pointer;
	margin: 0;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	border-left: 1px solid #eee;
	border-right: 1px solid #eee;
}
.sticky-tabs.fixed .tab-inner .tab-item {
	border-bottom: none !important;
}
.sticky-tabs.fixed .tab-inner .tab-item:last-child {
	border-left: none !important;
}
.tab-item:hover {
	color: #333;
}
.tab-item.active {
	color: #fff !important;
	font-weight: 700;
	background: #0084e5;
	border-right-color: #0084e5;
}
#hardware-dev,
#software-dev,
#process {
	scroll-margin-top: 160px;
	padding-top: 100px;
	padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
	.sticky-tabs.fixed {
		top: 64px;
	}
	.tab-item {
		font-size: 15px;
	}
	#hardware-dev,
	#software-dev,
	#process {
		scroll-margin-top: 144px;
		padding-bottom: 48px;
	}
}

/* 개발 섹션 공통 */
.dev-section *,
.dev-section :after,
.dev-section :before {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
.dev-section {
	width: 100%;
	background: #fff;
	overflow: hidden;
}

.gap {
	margin: 8rem auto 1rem;
}

.dev-section .header-wrap,
.sd-diagram-wrap .header-wrap {
	text-align: center;
	margin-bottom: 48px;
}

.dev-section .main-title,
.sd-diagram-wrap .main-title {
	font-size: 40px;
	font-weight: 700;
	color: #111;
	margin-bottom: 16px;
	line-height: 1.2;
}
.dev-section .sub-desc,
.sd-diagram-wrap .sub-desc {
	font-size: 18px;
	color: #666;
	line-height: 1.6;
	word-break: break-word;
}
.dev-section .cont_wrap {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 20px;
}
.dev-section .grid-wrap {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}
.dev-section .grid-wrap:before {
	content: "";
	position: absolute;
	top: 135px;
	left: 5%;
	width: 0;
	height: 1px;
	background-color: #ddd;
	z-index: 0;
	transition: width 1.5s ease-in-out;
}
.dev-section .cont_wrap.on .grid-wrap:before {
	width: 90%;
}
.dev-section .grid-item {
	position: relative;
	z-index: 1;
	flex: 1 1 22%;
	max-width: 280px;
	min-width: 220px;
	text-align: center;
}
.dev-section .svg-box {
	position: relative;
	width: 100%;
	aspect-ratio: 1/1;
	max-width: 270px;
	margin: 0 auto 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	border-radius: 50%;
}
.dev-section .svg-box svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
}
.dev-section .svg-box svg path {
	stroke-width: 1;
	stroke: #999;
	fill: none;
	stroke-dasharray: 610;
	stroke-dashoffset: 610;
	transition: stroke-dashoffset 1s ease-out;
}
.dev-section .cont_wrap.on .grid-item svg path {
	stroke-dashoffset: 0;
}
.dev-section .cont_wrap.on .grid-item:nth-child(1) svg path {
	transition-delay: 0s;
}
.dev-section .cont_wrap.on .grid-item:nth-child(2) svg path {
	transition-delay: 0.3s;
}
.dev-section .cont_wrap.on .grid-item:nth-child(3) svg path {
	transition-delay: 0.6s;
}
.dev-section .cont_wrap.on .grid-item:nth-child(4) svg path {
	transition-delay: 0.9s;
}
.dev-section .text-box {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
	z-index: 2;
}
.dev-section .en-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #222;
	margin-bottom: 10px;
	line-height: 1.2;
	font-family: "DM sans", "SUITE variable", sans-serif;
}
.dev-section .ko-desc {
	font-size: 0.95rem;
	color: #666;
	line-height: 1.4;
	font-weight: 500;
	word-break: break-word;
}

@media (max-width: 1200px) {
	.dev-section .grid-wrap {
		justify-content: center;
	}
	.dev-section .grid-item {
		flex: 0 0 45%;
		max-width: 350px;
	}
	.dev-section .grid-wrap:before {
		display: none;
	}
}

@media (max-width: 768px) {
	.dev-section .main-title,
	.sd-diagram-wrap .main-title {
		font-size: 28px;
	}
	.dev-section .sub-desc,
	.sd-diagram-wrap .sub-desc {
		font-size: 15px;
	}
	.dev-section .grid-wrap {
		flex-direction: column;
		gap: 16px;
	}
	.dev-section .grid-item {
		width: 100%;
		flex: none;
		padding: 24px;
		border-radius: 16px;
		background-color: #f9f9f9;
		margin: 0;
		max-width: 100%;
	}
	.dev-section .svg-box {
		width: 100%;
		height: auto;
		aspect-ratio: auto;
		max-width: none;
		margin: 0;
		border-radius: 0;
		background: transparent;
		display: block;
	}
	.dev-section .svg-box svg {
		display: none;
	}
	.dev-section .text-box {
		position: static;
		width: auto;
		height: auto;
		padding: 0;
		transform: none;
	}
	.dev-section .en-title {
		font-size: 18px;
		font-weight: 700;
		margin-bottom: 6px;
		color: #222;
	}
	.dev-section .ko-desc {
		font-size: 15px;
		color: #666;
		line-height: 1.4;
	}
}

/* 커스터마이징 프로젝트 카드 */
.project-grid-wrap {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 16px;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
	box-sizing: border-box;
}
.pj-card {
	background-color: #fff;
	border: 1px solid #eee;
	border-radius: 16px;
	padding: 32px 24px;
	position: relative;
	transition: all 0.3s ease;
	cursor: default;
	overflow: hidden;
	min-height: 120px;
	display: flex;
	flex-direction: column;
}
.pj-card:hover {
	border-color: #0084e5;
	box-shadow: 0 10px 30px rgba(0, 132, 229, 0.08);
	background: #f7fbff;
	transform: translateY(-5px);
}
.pj-card:hover .pj-title {
	color: #0084e5;
}
.pj-title {
	font-weight: 700;
	font-size: 20px;
	color: #333;
	line-height: 1.3;
	margin-bottom: 16px;
	word-break: break-word;
}

/* 프로젝트 발주사, 설명 교차 영역 */
.pj-info-area {
	position: relative;
	width: 100%;
	height: 100px;
}
.pj-client {
	font-size: 15px;
	color: #999;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 1;
	transform: translateY(0);
	transition: all 0.3s ease;
}

/* 프로젝트 설명, 기본 숨김 상태 */
.pj-stack {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.3s ease;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.pj-stack span {
	font-size: 15px;
	color: #0084e5;
	background: #e4eff8;
	padding: 4px 8px;
	border-radius: 4px;
	font-weight: 500;
	line-height: 1.4;
	word-break: break-word;
}

/* 카드 호버 발주사 숨김 - 설명 보임 */
.pj-card:hover .pj-client {
	opacity: 0;
	transform: translateY(-10px);
}
.pj-card:hover .pj-stack {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 768px) {
	.project-grid-wrap {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.pj-card {
		min-height: auto;
		padding: 24px 20px;
	}
	.pj-title {
		font-size: 18px;
		margin-bottom: 12px;
	}
	.pj-info-area {
		height: auto;
		display: flex;
		flex-direction: column;
		gap: 12px;
	}
	.pj-client {
		position: static;
		opacity: 1;
		transform: none;
		margin-bottom: 4px;
	}
	.pj-stack {
		position: static;
		opacity: 1;
		transform: none;
	}
	.pj-card:hover {
		transform: none;
		border-color: #eee;
		box-shadow: none;
	}
}

/* Components */
.btn,
a.btn {
	display: inline-block;
	width: 100px;
	height: 36px;
	background-color: #c4c4c4;
	text-align: center;
	font-weight: 400;
	font-size: 14px;
	line-height: 36px;
	color: #fff;
	vertical-align: middle;
}
.btn:hover {
	background-color: #676767;
}

/* 뉴스 hero 영역 */
.post-header {
	margin-top: 100px;
	padding: 64px 24px;
	height: 300px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	background: url("./images/bg6.webp") no-repeat center center / cover;
}
.post-header::before {
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.2) 0%,
		rgba(0, 0, 0, 0.7) 100%
	);
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}

/* hero 영역 텍스트 */
.category-hero {
	z-index: 10;
}
.category-hero-title {
	margin: 0 !important;
	font-size: 36px !important;
	font-weight: 700 !important;
	text-align: center;
	color: #fff !important;
}
.category-hero-description {
	margin-bottom: 12px !important;
	font-size: 18px;
	text-align: center;
	color: rgba(255, 255, 255, 0.5) !important;
}

@media screen and (max-width: 768px) {
	.post-header {
		margin-top: 64px;
		padding: 32px 24px;
		height: 256px;
	}
}

/* post - 게시물 내부 */
.post-cover {
	position: relative;
	z-index: 20;
	display: table;
	width: 100%;
	height: auto;
	background-color: #cbcbcb;
	padding-top: 100px;
	background-position: 50% 50%;
	background-size: cover;
	box-sizing: border-box;
}
.post-cover:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.25);
}
.post-cover .inner {
	display: table-cell;
	position: relative;
	z-index: 10;
	text-align: center;
	vertical-align: bottom;
	padding-bottom: 78px;
}
.post-cover .category {
	display: block;
	max-width: 1200px;
	margin: 0 auto 16px;
	font-size: 1rem;
	color: #fff;
	padding-top: 72px;
}
.post-cover h1 {
	max-width: 1200px;
	margin: 0 auto;
	font-weight: 600;
	font-size: 2rem;
	line-height: 1.3;
	color: #fff;
}
.post-cover a {
	text-decoration: none;
	color: #fff;
}
.post-cover .meta {
	display: block;
	max-width: 1200px;
	margin: 34px auto 0;
	font-size: 0.875em;
	color: rgba(255, 255, 255, 0.6);
}
.post-cover .meta a {
	color: rgba(255, 255, 255, 0.6);
}
.post-cover .meta a:before,
.post-cover .meta span:before {
	content: "";
	display: inline-block;
	width: 2px;
	height: 2px;
	margin: 0 8px 0 4px;
	background-color: rgba(255, 255, 255, 0.6);
	vertical-align: middle;
}
.post-cover .meta span:first-child:before {
	content: none;
}

@media screen and (max-width: 1200px) {
	.post-cover {
		padding-left: 24px;
		padding-right: 24px;
	}
}

@media screen and (max-width: 768px) {
	.post-cover {
		padding-left: 24px;
		padding-right: 24px;
	}
	.post-cover .inner > h1 {
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
	.post-cover .category {
		margin-bottom: 13px;
	}
	.post-cover h1 {
		font-weight: 300;
	}
	.post-cover .meta {
		margin-top: 33px;
		font-size: 0.8125em;
	}
}

#tt-body-archive .post-header span:before {
	content: "'";
}
#tt-body-archive .post-header span:after {
	content: "' 에 등록된 글";
}
#tt-body-tag .post-header span:before {
	content: "#";
}
#tt-body-search .post-header span:before {
	content: "'";
}
#tt-body-search .post-header span:after {
	content: "'의 검색결과";
}

/* 페이지를 찾을 수 없습니다 */
.not-found {
	display: block;
	width: 100%;
	margin-bottom: 35px;
}
.not-found li {
	position: relative;
	padding-left: 10px;
	font-size: 0.9375em;
	line-height: 2;
	color: #999;
}
.not-found li:before {
	content: "";
	position: absolute;
	top: 15px;
	left: 0;
	width: 2px;
	height: 2px;
	background-color: #999;
}
.not-found .tag,
.not-found .category,
.not-found .archive {
	display: none;
}
#tt-body-tag .not-found ul,
#tt-body-category .not-found ul,
#tt-body-archive .not-found ul {
	display: none;
}
#tt-body-tag .not-found .tag,
#tt-body-category .not-found .category,
#tt-body-archive .not-found .archive {
	display: block;
}

/* 페이지네이션 */
.pagination {
	margin-bottom: 60px;
	text-align: center;
}
.pagination a {
	display: inline-block;
	margin: 0 12px;
	font-size: 0.875em;
	line-height: 1.5rem;
	vertical-align: top;
	color: #999;
}
.pagination .selected {
	color: #333;
}
.pagination .prev,
.pagination .next {
	width: 22px;
	height: 22px;
	border: 1px solid #eee;
	border-radius: 50%;
	background: url(./images/ico_package.png) no-repeat 0 -50px;
	text-indent: -999em;
}
.pagination .next {
	background-position-x: -50px;
}
.pagination .view-more {
	display: block;
	margin: 0;
	padding: 12px 0 11px;
	border: 1px solid #eee;
	text-align: center;
	font-size: 0.875em;
	color: #999;
}

@media screen and (max-width: 768px) {
	.pagination {
		margin-bottom: 0;
	}
	.pagination a {
		margin: 0 5px;
	}
}

/* 태그 */
.tags {
	margin-bottom: 45px;
	font-size: 0;
}
.tags:after {
	content: "";
	clear: both;
	display: block;
	height: 0;
	visibility: hidden;
}
.tags h2 {
	margin-bottom: 15px;
	font-weight: 600;
	font-size: 16px;
}
.tags a {
	display: inline-block;
	margin: 0 8px 12px 0;
	padding: 0 17px;
	border: 1px solid #eee;
	border-radius: 32px;
	font-size: 14px;
	line-height: 30px;
	vertical-align: middle;
	color: #555;
}
.tags a:hover,
.tags a:focus {
	color: #333;
}

@media screen and (max-width: 768px) {
	.tags {
		margin-bottom: 25px;
		padding: 0 24px;
	}
	.tags h2 {
		margin-bottom: 19px;
	}
}

/* 페이지네비 */
.page-nav {
	margin: 52px 0 60px 0;
	padding: 23px 0 20px;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}
.page-nav a {
	display: block;
	overflow: hidden;
	padding-left: 58px;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 0.875em;
	line-height: 2.125rem;
	color: #555;
}
.page-nav a:hover,
.page-nav a:focus {
	color: #333;
}
.page-nav a strong {
	float: left;
	width: 58px;
	margin-left: -58px;
	font-weight: 400;
	color: #999;
}
.page-nav a strong:after {
	content: "";
	display: inline-block;
	width: 1px;
	height: 5px;
	margin: 0 8px;
	background: url(./images/ico_package.png) no-repeat -150px -50px;
	vertical-align: middle;
}

@media screen and (max-width: 768px) {
	.page-nav {
		margin: 32px 24px 32px;
		padding: 25px 0 25px;
	}
	.page-nav a {
		line-height: 1.6875rem;
	}
}

/* 관련글 */
.related-articles {
	margin-bottom: 55px;
}
.related-articles h2 {
	margin-bottom: 15px;
	font-weight: 600;
	font-size: 1em;
}
.related-articles ul {
	display: inline-block;
	width: 101.621621621621622%;
	margin-left: -1.621621621621622%;
	vertical-align: top;
}
.related-articles ul li {
	float: left;
	width: 25%;
	padding-left: 1.621621621621622%;
	box-sizing: border-box;
}
.related-articles ul li:first-child {
	margin-left: 0;
}
.related-articles ul li a {
	color: #555;
}
.related-articles ul li a:hover,
.related-articles ul li a:focus {
	color: #333;
}
.related-articles ul li figure {
	display: block;
	width: 100%;
	height: 0;
	margin-bottom: 9px;
	padding-bottom: 68.181818181818182%;
	background-color: #f8f8f8;
}
.related-articles ul li figure img {
	width: 100%;
	height: auto;
}
.related-articles ul li .title {
	display: block;
	overflow: hidden;
	max-width: 95%;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 0.875em;
	line-height: 1.4;
}

@media screen and (max-width: 768px) {
	.related-articles {
		margin-bottom: 21px;
		padding: 0 24px;
	}
	.related-articles h2 {
		margin-bottom: 19px;
	}
	.related-articles ul {
		width: 103.571428571428571%;
		margin-left: -3.571428571428571%;
	}
	.related-articles ul li {
		width: 50%;
		margin-bottom: 15px;
		padding-left: 3.448275862068966%;
	}
	.related-articles ul li figure {
		margin-bottom: 9px;
	}
	.related-articles ul li .title {
		height: 2.8em;
		white-space: normal;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
	}
}

/* Entry Content */
.entry-content h1 {
	clear: both;
	margin: 29px 0 22px;
	font-size: 1.6875em;
	line-height: 1.5;
	color: #000;
}
.entry-content h2 {
	clear: both;
	margin: 29px 0 22px;
	font-size: 1.5em;
	line-height: 1.5;
	color: #000;
}
.entry-content h3 {
	clear: both;
	margin: 29px 0 22px;
	font-size: 1.3125em;
	line-height: 1.5;
	color: #000;
}
.entry-content h4 {
	clear: both;
	margin: 29px 0 22px;
	font-weight: 400;
	font-size: 1.125em;
	line-height: 1.5;
	color: #000;
}
.entry-content p {
	word-break: break-word;
}
.entry-content p img {
	max-width: 100%;
	height: auto;
}
.entry-content hr {
	display: block;
	height: 0;
	border: 0;
	border-bottom: 1px solid #000;
}
.entry-content pre {
	word-break: break-word;
	white-space: pre-wrap;
	word-wrap: break-word;
}
.entry-content ul {
	list-style: disc;
	margin-bottom: 22px;
	padding: revert;
}
.entry-content ul li {
	position: relative;
	margin-bottom: 10px;
	list-style: inherit;
}
.entry-content ol {
	list-style: decimal inside;
	margin-bottom: 22px;
}
.entry-content ol li {
	position: relative;
	margin-bottom: 10px;
	text-indent: -15px;
	list-style: inherit;
}
.entry-content img.alignleft {
	float: left;
	margin: 0 22px 22px 0;
}
.entry-content img.aligncenter {
	display: block;
	margin: 0 auto 22px;
}
.entry-content img.alignright {
	float: right;
	margin: 0 0 22px 22px;
}
.entry-content blockquote {
	margin-bottom: 40px;
	padding: 16px 20px;
	border-left: 4px solid #e6e6e6;
}
.entry-content blockquote p {
	margin: 22px 0 0;
}
.entry-content blockquote p:first-child {
	margin-top: 0;
}
.entry-content input {
	height: 36px;
	padding: 0 10px;
	border: 1px solid #e6e6e6;
	font-size: 0.875em;
	line-height: 1.25;
	color: #666;
	box-sizing: border-box;
	vertical-align: middle;
}
.entry-content .entry-content .protected_form {
	margin-bottom: 40px;
	padding: 120px 0 200px;
	border-bottom: 1px solid #7a583a;
	text-align: center;
}
.entry-content .entry-content .protected_form input {
	width: 200px;
	margin-bottom: 10px;
	vertical-align: top;
}
.entry-content .cap1 {
	text-align: center;
	font-size: 0.875em;
	font-style: italic;
}
.entry-content .iframe-wrap {
	position: relative;
	height: 0;
	padding-bottom: 56.25%;
}
.entry-content .iframe-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.entry-content .protected_form {
	display: block;
	width: 100%;
	padding: 98px 0 120px;
	text-align: center;
}
.entry-content .protected_form h2 {
	margin: 0 0 8px;
	font-weight: 600;
	font-size: 1.625em;
	line-height: 2.125rem;
	color: #555;
}
.entry-content .protected_form p {
	margin-bottom: 34px;
	font-weight: 300;
	font-size: 1em;
	line-height: 1.75;
	color: #999;
}
.entry-content .protected_form input {
	width: 183px;
	padding: 0 23px;
	border: 1px solid #eee;
	font-size: 0.9125em;
	line-height: 2.125rem;
}
.entry-content .protected_form input:focus {
	border-color: #484848;
}
.entry-content .protected_form .btn {
	margin-left: 5px;
}

@media screen and (max-width: 768px) {
	.entry-content {
		padding: 0;
	}
	.entry-content p {
		margin-bottom: 22px;
		line-height: 1.625rem;
	}
	.entry-content figure {
		margin-top: 6px !important;
	}
	.entry-content .protected_form input {
		width: 163px;
	}
}

/* ETC */
#dimmed {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 300;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
}
.mobile-menu {
	overflow: hidden;
	height: 100%;
}
.slide-wrap {
	overflow: hidden;
}

/* Overwrite */
#content .another_category {
	margin: 60px 0 57px !important;
	padding: 16px 20px 14px;
}
#content .another_category h4 {
	margin: 0 0 13px !important;
	padding: 0 !important;
	border-bottom: 0 !important;
	font-size: 0.875em !important;
}
#content .another_category table {
	margin: 0 !important;
	border: 0;
}
#content .another_category th {
	padding: 2px 0 !important;
	font-size: 0.875rem !important;
}
#content .another_category th a.current {
	text-decoration: underline !important;
	font-weight: 400;
	color: #333 !important;
	border: 0 !important;
}
#content .another_category td {
	padding: 2px 0 !important;
	border: 0;
	font-size: 0.75rem !important;
}

@media screen and (max-width: 768px) {
	#content .another_category {
		margin: 40px 0 37px !important;
	}
	#content .another_category th {
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 1;
		-webkit-box-orient: vertical;
	}
}

.container_postbtn {
	margin: 53px 0 55px;
	padding: 0 !important;
}
@media screen and (max-width: 768px) {
	.container_postbtn {
		margin: 35px 0 37px;
	}
}

.absent_post:before {
	content: "죄송합니다만 \A글을 찾지 못했습니다.";
	display: block;
	margin-bottom: 7px;
	font-weight: bold;
	font-size: 1.75em;
	line-height: 1.285714285714286;
	color: #555;
	white-space: pre;
}
.absent_post {
	padding: 98px 0 !important;
	background: none !important;
	font-weight: normal !important;
	font-size: 1em !important;
	line-height: 1.75;
	color: #999 !important;
}

/* Retina Display - 이미지 변경 */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5) {
	#header .util .search:before,
	#header .util .search button,
	#footer .page-top,
	.cover-thumbnail-3 button,
	.cover-thumbnail-4 button,
	.page-nav a strong:after,
	.entry-content .protected_form h2:before,
	.comment-list ul li .author-meta .control button,
	.comment-form .secret input[type="checkbox"]:checked + label:before,
	.sidebar .social-channel ul li a,
	.sidebar .tab-ui h2 a:before {
		background-image: url(./images/ico_package_2x.png);
		background-size: 200px auto;
	}
	.post-item.protected .thum:before {
		background-image: url(./images/ico_package_2x.png);
		background-size: 120px auto;
	}
}

@media screen and (max-width: 768px) {
	#tt-body-index #content {
		padding: 0;
	}
	#tt-body-index #content > .inner {
		padding: 0 24px;
	}
	#tt-body-index #content > .inner:first-child {
		padding-top: 40px;
	}
	#tt-body-index.list-type-text #content > .inner:first-child {
		padding-top: 36px;
	}
	#tt-body-index .pagination {
		margin: 0 20px 40px;
	}
	#tt-body-page #content {
		padding-left: 0;
		padding-right: 0;
	}
	#tt-body-tag .tags,
	#tt-body-guestbook #content {
		padding-left: 0;
		padding-right: 0;
	}
	#tt-body-guestbook .post-header {
		margin: 0 24px 28px;
	}
}

@media screen and (max-width: 768px) {
	.list-type-vertical .post-item {
		margin-bottom: 30px;
	}
	.list-type-vertical .post-item .title {
		margin-bottom: 7px;
	}
	.list-type-text .post-header {
		margin-bottom: 28px;
	}
	.list-type-text .post-item {
		margin-bottom: 26px;
	}
	.list-type-text .post-item .title {
		margin-bottom: 10px;
	}
	.list-type-text .post-item .excerpt {
		margin-bottom: 12px;
		-webkit-line-clamp: 4;
	}
	.list-type-text .pagination {
		margin-top: 30px;
	}
	#tt-body-index.promotion-mobile-hide .main-slider {
		display: none;
	}
	#tt-body-index .post-header {
		padding-top: 36px;
		padding-left: 24px;
	}
}

.revenue_unit_wrap.position_list {
	max-width: 740px;
	margin: 30px auto;
}
.tt-comment-cont .tt-box-total .tt_txt_g {
	font-size: 14px;
}
.tt-comment-cont .tt-box-total .tt_num_g {
	font-size: 14px;
	color: #777;
}
.tt-comment-cont .tt-wrap-cmt .tt-link-user {
	font-size: 14px;
}
.tt-comment-cont .tt-wrap-cmt .tt_desc {
	font-size: 14px;
	color: #555;
}
.tt-comment-cont .tt-txt-mention {
	color: #555;
}
.tt-comment-cont .tt-btn_register {
	width: 100px;
	height: 36px;
	background-color: #333;
	font-size: 14px;
	color: #fff;
	border-radius: 0;
	border-color: #333;
}
.tt-comment-cont .tt-btn_register:hover {
	background-color: #04beb8;
	border-color: #04beb8;
}
.tt-comment-cont .tt-btn_register:focus {
	background-color: #04beb8;
	border-color: #04beb8;
}
.my_edit .ico_more {
	fill: #fff !important;
}

@media screen and (max-width: 768px) {
	.tt-comments-wrap {
		padding: 0 24px;
	}
}

/* 게시물 조회 */
#article-view {
	padding-top: 0;
	margin: 0 auto;
	word-wrap: break-word;
	color: #333;
	padding-bottom: 24px;
	min-height: 370px;
	line-height: 1.5;
	font-family: "Suite variable", -apple-system, BlinkMacSystemFont,
		"Helvetica Neue", "Apple SD Gothic Neo", Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: 0;
}
.post-cover + #article-view {
	padding: 48px 24px;
	max-width: 1200px;
}
.contents_style > * {
	margin: 0;
}

#article-view > a.default-button {
	text-decoration: none;
	color: #333;
}

/* 텍스트 관련 */
#article-view h2[data-ke-size] {
	font-size: 1.62em;
	line-height: 1.46;
}
#article-view h3[data-ke-size] {
	font-size: 1.44em;
	line-height: 1.48;
}
#article-view h4[data-ke-size] {
	font-size: 1.25em;
	line-height: 1.55;
}

#article-view p[data-ke-size="size18"] {
	font-size: 1.12em;
	line-height: 1.67;
}
#article-view p[data-ke-size="size16"] {
	line-height: 1.75;
}
#article-view p[data-ke-size="size14"] {
	font-size: 0.87em;
	line-height: 1.71;
}

#article-view h2,
#article-view h3,
#article-view h4 {
	font-weight: normal;
	letter-spacing: -1px;
	color: #000;
	margin: 1em 0 20px;
}

#article-view p + p,
#article-view p {
	margin-bottom: 30px;
}

#article-view h2 + h2,
#article-view h3 + h3,
#article-view h4 + h4 {
	margin: 0;
}

#article-view h2 + h3,
#article-view h2 + h4,
#article-view h3 + h4 {
	margin-top: 10px;
}

#article-view h2 + p,
#article-view h3 + p,
#article-view h4 + p,
#article-view h5 + p,
#article-view h6 + p {
	margin-top: 10px;
}

#article-view div[data-ke-type="moreLess"] {
	caret-color: auto;
	background-color: #fafafa;
	padding: 20px 20px 22px;
	margin: 20px 0;
	border: 1px dashed #dddddd;
	color: #333333;
}

#article-view a {
	color: #0070d1;
	text-decoration: underline;
}

#article-view figure[data-ke-type="contentSearch"] a {
	text-decoration: none;
}

/* 인용문 */
#article-view blockquote[data-ke-style="style1"] {
	text-align: center;
	background: url(https://t1.daumcdn.net/keditor/dist/0.7.21/image/blockquote-style1.svg)
		no-repeat 50% 0;
	padding: 34px 0 0 0;
	font-size: 1.12em;
	color: #333;
	line-height: 1.67;
	border: 0 none;
	font-family: "SUITE variable";
}
#article-view blockquote[data-ke-style="style2"] {
	border-color: #d0d0d0;
	border-width: 0 0 0 4px;
	border-style: solid;
	padding: 1px 0 0 12px;
	color: #666;
	line-height: 1.75;
	font-size: 1em;
	text-align: left;
}
#article-view blockquote[data-ke-style="style3"] {
	border: 1px solid #dddddd;
	background-color: #fcfcfc;
	text-align: left;
	padding: 21px 25px 20px 25px;
	color: #666;
	font-size: 1em;
	line-height: 1.75;
}
#article-view blockquote {
	display: block;
	margin: 20px auto 0;
	letter-spacing: 0px;
}

/* 첨부: 공통 */
/* 이미지 클릭 관련 - lightbox */
#article-view span[data-lightbox] {
	cursor: pointer;
}

/* 첨부: 파일 */
#article-view figure.fileblock {
	width: 470px;
	height: 73px;
	box-sizing: border-box;
	position: relative;
	border-radius: 1px;
	margin-top: 20px;
	margin-bottom: 0px;
	box-shadow: 0 1px 4px 0 rgb(0 0 0 / 7%);
	border: solid 1px rgba(0, 0, 0, 0.1);
}
#article-view figure.fileblock a {
	display: block;
}
#article-view figure.fileblock .image {
	float: left;
	width: 30px;
	height: 30px;
	background-image: url("https://t1.daumcdn.net/tistory_admin/static/manage/post-editor/img_editor_content.svg");
	margin: 22px 17px 21px 22px;
	background-position: 0 0;
}
#article-view figure.fileblock .desc {
	position: absolute;
	left: 70px;
	right: 60px;
	top: 4px;
	bottom: 0;
}
#article-view figure.fileblock .filename {
	color: #333333;
	font-size: 14px;
	text-overflow: ellipsis;
	width: 100%;
	height: 20px;
	margin: 16px 0 0;
}
#article-view figure.fileblock .size {
	font-family: "SUITE variable";
	font-size: 12px;
	color: #777;
	height: 16px;
}
#article-view figure[data-ke-align="alignCenter"].fileblock {
	margin-left: auto;
	margin-right: auto;
}
#article-view figure[data-ke-align="alignRight"].fileblock {
	margin-left: auto;
}
#article-view figure.fileblock .name {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 272px;
	height: 20px;
	display: block;
}
#article-view figure.fileblock a::after {
	content: "";
	background-image: url("https://t1.daumcdn.net/tistory_admin/static/manage/post-editor/img_editor_content.svg");
	background-position: -40px 0;
	width: 30px;
	height: 30px;
	position: absolute;
	right: 24px;
	top: 19px;
}

/* 첨부: 이미지 */
#article-view figure.imageblock {
	display: table;
	position: relative;
}
#article-view figure.imageblock.alignLeft {
	text-align: left;
}
#article-view figure.imageblock.alignCenter {
	margin: 20px auto 0;
	text-align: center;
}
#article-view figure.imageblock.alignRight {
	text-align: right;
	margin-left: auto;
}
#article-view figure.imageblock.floatLeft {
	float: left;
	margin-right: 20px;
}
#article-view figure.imageblock.floatRight {
	float: right;
	margin-left: 20px;
}
#article-view figure.imageblock.widthContent {
	display: block;
}
#article-view figure.imageblock.widthContent img {
	width: 100%;
}
#article-view figure.imageblock.floatLeft figcaption,
#article-view figure.imageblock.floatRight figcaption {
	text-align: left;
}
#article-view figure.imageblock img {
	display: inline-block;
	max-width: 100%;
	margin: 0;
	height: auto;
}
#article-view iframe,
#article-view figure img,
#article-view figure iframe {
	max-width: 100%;
}
#article-view figure img:not([width]),
#article-view figure iframe:not([width]) {
	width: 100%;
}
#article-view figure {
	max-width: 100%;
	clear: both;
}
#article-view figure img {
	display: inline-block;
}
#article-view figure.imagegridblock + figure.imagegridblock,
#article-view figure.imagegridblock + figure.imageblock,
#article-view figure.imageblock + figure.imagegridblock {
	margin-top: 10px;
}

/* 캡션 텍스트 */
#article-view figure figcaption {
	font-size: 13px;
	color: #777;
	word-break: break-word;
	padding-top: 10px;
	min-height: 20px;
	caption-side: bottom;
	text-align: center;
	caret-color: auto;
	width: 100%;
	box-sizing: content-box;
}

/* 첨부: 이미지 그리드 */
#article-view figure.imagegridblock {
	position: relative;
	caret-color: transparent;
	background-color: transparent;
	width: 100%;
	height: auto;
	margin: 20px 0 0 0;
}
#article-view figure.imagegridblock .image-container {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	flex-wrap: wrap;
}
#article-view figure.imagegridblock .image-container > span {
	margin-right: 0;
	margin-top: 2px;
}
#article-view figure.imagegridblock img {
	margin: 0;
	height: inherit;
}
#article-view figure.imagegridblock span img {
	width: 100%;
}

hr[data-ke-style],
#article-view hr[data-ke-style] {
	border: none;
	font-size: 0;
	line-height: 0;
	margin: 20px auto;
	background: url(https://t1.daumcdn.net/keditor/dist/0.7.21/image/divider-line.svg);
	background-size: 200px 420px;
	cursor: default !important;
}
hr[data-ke-style="style1"],
#article-view hr[data-ke-style="style1"] {
	background-position: center 0;
	width: 64px;
	height: 4px;
	padding: 20px;
}
hr[data-ke-style="style2"],
#article-view hr[data-ke-style="style2"] {
	background-position: center -48px;
	width: 64px;
	height: 3px;
	padding: 20px;
}
hr[data-ke-style="style3"],
#article-view hr[data-ke-style="style3"] {
	background-position: center -96px;
	width: 64px;
	height: 8px;
	padding: 18px 20px;
}
hr[data-ke-style="style4"],
#article-view hr[data-ke-style="style4"] {
	background-position: center -144px;
	width: 2px;
	height: 60px;
	padding: 0 51px;
}
hr[data-ke-style="style4"] + hr[data-ke-style="style4"],
#article-view hr[data-ke-style="style4"] + hr[data-ke-style="style4"] {
	margin-top: 0;
}
hr[data-ke-style="style5"],
#article-view hr[data-ke-style="style5"] {
	background-position: center -208px;
	background-repeat: repeat-x;
	height: 2px;
	padding: 21px 0;
}
hr[data-ke-style="style6"],
#article-view hr[data-ke-style="style6"] {
	background-position: center -256px;
	background-repeat: repeat-x;
	height: 2px;
	padding: 21px 0;
}
hr[data-ke-style="style7"],
#article-view hr[data-ke-style="style7"] {
	background-position: center -304px;
	width: 200px;
	height: 19px;
	padding: 18px 20px 17px 20px;
}
hr[data-ke-style="style8"],
#article-view hr[data-ke-style="style8"] {
	background-position: center -362px;
	width: 200px;
	height: 19px;
	padding: 18px 20px 17px 20px;
}

/* 테이블 */
#article-view table[data-ke-style] {
	margin-bottom: 0px;
}
#article-view table {
	border-color: #ddd;
	margin-bottom: 0px;
}
#article-view table tbody tr {
	box-sizing: content-box;
}
#article-view table td {
	word-break: break-word;
	padding: 8px;
	font-size: 15px;
}
#article-view table[data-ke-style="style1"] tr:first-child td {
	border-bottom: 1px solid #6ed3d8;
}
#article-view table[data-ke-style="style2"] tr:first-child td {
	border-bottom: 1px solid #008300;
}
#article-view table[data-ke-style="style3"] tr:first-child td {
	border-bottom: 1px solid #006dbe;
}
#article-view table[data-ke-style="style4"] tr:nth-child(2n) td {
	background-color: #f9f9f9;
}
#article-view table[data-ke-style="style5"] tr:nth-child(2n) td {
	background-color: #f8fbfb;
}
#article-view table[data-ke-style="style6"] tr:nth-child(2n) td {
	background-color: #f5f7f5;
}
#article-view table[data-ke-style="style7"] tr:nth-child(2n) td {
	background-color: #f6f8fb;
}
#article-view table[data-ke-style="style8"] tr:first-child td {
	border-bottom: 2px solid #797979;
}
#article-view table[data-ke-style="style8"] {
	border-left: 0 none;
	border-right: 0 none;
}
#article-view table[data-ke-style="style8"] td {
	border-right-color: transparent;
	border-left-color: transparent;
}
#article-view table[data-ke-style="style9"] tr:first-child td {
	border-bottom: 2px solid #6ed3d8;
}
#article-view table[data-ke-style="style9"] {
	border-left: 0 none;
	border-right: 0 none;
}
#article-view table[data-ke-style="style9"] td {
	border-right-color: transparent;
	border-left-color: transparent;
}
#article-view table[data-ke-style="style10"] tr:first-child td {
	border-bottom: 2px solid #008300;
}
#article-view table[data-ke-style="style10"] {
	border-left: 0 none;
	border-right: 0 none;
}
#article-view table[data-ke-style="style10"] td {
	border-right-color: transparent;
	border-left-color: transparent;
}
#article-view table[data-ke-style="style11"] tr:first-child td {
	border-bottom: 2px solid #2780d4;
}
#article-view table[data-ke-style="style11"] {
	border-left: 0 none;
	border-right: 0 none;
}
#article-view table[data-ke-style="style11"] td {
	border-right-color: transparent;
	border-left-color: transparent;
}
#article-view table[data-ke-style="style12"] tr:nth-child(odd) td {
	background-color: #f9f9f9;
}
#article-view table[data-ke-style="style12"] tr td:first-child {
	background-color: #efefef;
}
#article-view table[data-ke-style="style12"] tr:first-child td {
	background-color: #9b9b9b;
	border: 1px solid #888;
	color: #fff;
}
#article-view table[data-ke-style="style13"] tr:nth-child(odd) td {
	background-color: #f9f9f9;
}
#article-view table[data-ke-style="style13"] tr td:first-child {
	background-color: #efefef;
}
#article-view table[data-ke-style="style13"] tr:first-child td {
	background-color: #6ed3d8;
	border: 1px solid #5cbcc1;
	color: #fff;
}
#article-view table[data-ke-style="style14"] tr:nth-child(odd) td {
	background-color: #f9f9f9;
}
#article-view table[data-ke-style="style14"] tr td:first-child {
	background-color: #efefef;
}
#article-view table[data-ke-style="style14"] tr:first-child td {
	background-color: #008300;
	border: 1px solid #006d00;
	color: #fff;
}
#article-view table[data-ke-style="style15"] tr:nth-child(odd) td {
	background-color: #f9f9f9;
}
#article-view table[data-ke-style="style15"] tr td:first-child {
	background-color: #efefef;
}
#article-view table[data-ke-style="style15"] tr:first-child td {
	background-color: #2780d4;
	border: 1px solid #1568b7;
	color: #fff;
}
#article-view table[data-ke-style="style16"],
#article-view table[data-ke-style="style16"] tr,
#article-view table[data-ke-style="style16"] tr td {
	border-color: transparent;
}

/* 오픈 그래프 */
#article-view figure[data-ke-type="opengraph"] {
	margin: 10px 0;
}
#article-view figure[data-ke-type="opengraph"] a {
	box-sizing: initial;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.07);
	border: solid 1px rgba(0, 0, 0, 0.1);
	text-decoration: none;
	color: #000;
}
#article-view figure[data-ke-type="opengraph"] a:hover {
	opacity: 1;
}
#article-view figure[data-ke-type="opengraph"] div.og-image {
	border-right: solid 1px rgba(0, 0, 0, 0.06);
	width: 200px;
	height: 200px;
	background-size: cover;
	background-position: center;
}
#article-view figure[data-ke-type="opengraph"] div.og-image button {
	display: none;
}
#article-view figure[data-ke-type="opengraph"]:hover div.og-image button {
	cursor: pointer;
	border: none;
	display: block;
	position: absolute;
	top: 0px;
	right: 0px;
	background-color: #000;
	width: 15px;
	height: 15px;
}
#article-view figure[data-ke-type="opengraph"] p.og-title {
	color: #000000;
	font-size: 22px;
	padding-bottom: 10px;
	max-width: 467px;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin: 0px;
	overflow: hidden;
	font-family: "SUITE variable";
}
#article-view figure[data-ke-type="opengraph"] .og-desc {
	margin: 0px;
	max-width: 467px;
	text-overflow: ellipsis;
	overflow: hidden;
	font-family: "SUITE variable";
	font-size: 14px;
	font-weight: 300;
	font-style: normal;
	font-stretch: normal;
	line-height: normal;
	letter-spacing: normal;
	color: #909090;
	max-height: 42px;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	display: -webkit-box;
}

@media (max-width: 600px) {
	#article-view figure[data-ke-type="opengraph"] a {
		height: 90px;
	}
	#article-view figure[data-ke-type="opengraph"] a::before {
		left: 44px;
	}
	#article-view figure[data-ke-type="opengraph"] div.og-image {
		width: 90px;
		height: 90px;
	}
	#article-view figure[data-ke-type="opengraph"] div.og-text {
		padding: 13px 12px 0 20px;
		height: 90px;
	}
	#article-view figure[data-ke-type="opengraph"] div.og-text p.og-title {
		font-size: 16px;
		-webkit-line-clamp: 1;
	}
	#article-view figure[data-ke-type="opengraph"] div.og-text p.og-desc {
		display: none;
	}
	#article-view figure[data-ke-type="opengraph"] div.og-text p.og-host {
		bottom: 10px;
	}
}

/* 비디오 첨부 */
#article-view figure[data-ke-type="video"] {
	display: block;
	table-layout: fixed;
	justify-content: center;
	align-items: center;
	position: relative;
	text-align: center;
	color: #bdbdbd;
	font-size: 16px;
	line-height: 30px;
}
#article-view figure[data-ke-type="video"][data-ke-style="alignLeft"] {
	text-align: left;
}
#article-view figure[data-ke-type="video"][data-ke-style="alignCenter"] {
	margin: 20px auto 0;
	text-align: center;
}
#article-view figure[data-ke-type="video"][data-ke-style="alignRight"] {
	text-align: right;
	margin-left: auto;
}
#article-view figure[data-ke-type="video"] img {
	display: block;
	max-width: 100%;
	margin: 0 auto;
}
#article-view figure[data-ke-type="video"][data-video-host] iframe {
	margin: 0px;
	display: block;
}
#article-view figure[data-ke-type="video"] > iframe[width="0"][height="0"] {
	width: 860px;
	height: 484px;
	max-width: 100%;
}

/* 코드 블럭 */
#article-view pre code.hljs {
	font-size: 14px;
	padding: 20px;
	font-family: SF Mono, Menlo, Consolas, Monaco, monospace;
	border: solid 1px #ebebeb;
	line-height: 1.71;
	overflow: auto;
}

/* 접은 글 */
#article-view .moreless-content :first-child {
	margin-top: 0;
	margin-bottom: 0;
}
#article-view div[data-ke-type="moreLess"] .moreless-content {
	display: none;
}
#article-view div[data-ke-type="moreLess"].open .moreless-content {
	display: block;
}
#article-view div[data-ke-type="moreLess"] .btn-toggle-moreless {
	color: #909090;
	font-size: 16px;
	line-height: 26px;
	font-family: "SUITE variable", sans-serif;
	cursor: pointer;
	text-decoration: none;
}

/* 리스트 */
#article-view ul li,
#article-view ol li {
	margin: 0 0 3px 22px;
	line-height: 1.7;
}
#article-view ul,
#article-view ol {
	margin: 14px auto 24px;
	padding: 0 0 0 10px;
}

/* 이모티콘 */
#article-view figure[data-ke-type="emoticon"][data-ke-align="alignCenter"] {
	text-align: center;
}
#article-view figure[data-ke-type="emoticon"][data-ke-align="alignLeft"] {
	text-align: left;
}
#article-view figure[data-ke-type="emoticon"][data-ke-align="alignRight"] {
	text-align: right;
}

/* 지도 */
#article-view figure[data-ke-type="map"],
#article-view iframe[data-ke-type="map"] {
	display: block;
	margin: 0 auto;
}

/* 첨부: 이미지 슬라이드 */
#article-view figure.imageslideblock {
	clear: both;
	position: relative;
	font-size: 0;
	outline: 0 none;
}
#article-view figure.imageslideblock .btn {
	display: none;
	outline: none;
}
#article-view figure.imageslideblock.ready .btn {
	display: inline-block;
}
#article-view figure.imageslideblock.ready .mark {
	opacity: 1;
}
#article-view figure.imageslideblock div.image-container {
	position: relative;
	min-width: 480px;
	max-width: 100%;
	min-height: 300px;
	max-height: 860px;
	background-color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin: 0 auto;
}
#article-view figure.imageslideblock div.image-container span.image-wrap {
	display: none;
}
#article-view
	figure.imageslideblock
	div.image-container
	span.image-wrap.selected {
	display: inline;
}
#article-view figure.imageslideblock div.image-container img {
	max-width: 100%;
	max-height: 100%;
}
#article-view figure.imageslideblock div.image-container .btn {
	position: absolute;
	border: 0;
	background: transparent;
	width: 60px;
	height: 60px;
	top: 50%;
	margin-top: -20px;
}
#article-view figure.imageslideblock div.image-container .btn-prev {
	left: 0;
}
#article-view figure.imageslideblock div.image-container .btn-next {
	right: 0;
}
#article-view figure.imageslideblock div.image-container:hover .btn span {
	opacity: 0.3;
}
#article-view figure.imageslideblock div.image-container .btn span {
	background-image: url("https://t1.daumcdn.net/tistory_admin/static/manage/post-editor/img_editor_content.svg");
	text-indent: -10000px;
	overflow: hidden;
	width: 40px;
	height: 40px;
	opacity: 0;
	transition: opacity ease-in-out 0.2s;
	display: inline-block;
}
#article-view figure.imageslideblock div.image-container .btn:hover span {
	opacity: 1;
}
#article-view figure.imageslideblock div.image-container .btn .ico-prev {
	background-position: -220px 0;
}
#article-view figure.imageslideblock div.image-container .btn .ico-next {
	background-position: -260px 0;
}
#article-view figure.imageslideblock div.mark {
	display: block;
	height: 44px;
	text-align: center;
	opacity: 0;
	transition: opacity ease-in-out 0.2s;
}
#article-view figure.imageslideblock div.mark span {
	width: 30px;
	height: 4px;
	display: inline-block;
	margin: 20px 1px;
	background-color: #d6d6d6;
	text-indent: -10000px;
	overflow: hidden;
	cursor: pointer;
}
#article-view figure.imageslideblock div.mark span:first-child {
	background-color: #000;
	margin-left: 0;
}
#article-view figure.imageslideblock div.mark span:last-child {
	margin-right: 0;
}
#article-view figure.imageslideblock figcaption {
	text-align: center;
	color: #666;
	font-size: 14px;
}
#article-view figure.imageslideblock.alignLeft {
	text-align: left;
}
#article-view figure.imageslideblock.alignCenter {
	margin: 0 auto 20px;
	text-align: center;
}
#article-view figure.imageslideblock.alignRight {
	text-align: right;
	margin-left: auto;
}

@media (max-width: 600px) {
	#article-view figure.imageslideblock div.image-container {
		min-width: 100%;
		width: 100%;
		max-height: 100%;
	}
	#article-view figure.imageslideblock div.image-container .btn span {
		opacity: 0.3;
	}
}

/* 구 에디터 속성 */
.btn_more,
.btn_less {
	border: 0;
	background: transparent;
	display: block;
	height: 21px;
	margin: 20px 0;
	font-size: 14px;
	line-height: 14px;
	color: #888;
	position: relative;
	width: 100%;
	text-align: left;
}
.btn_less::before,
.btn_more::before {
	content: "...";
	display: inline-block;
	padding-right: 5px;
	font-size: 14px;
	line-height: 6px;
	vertical-align: top;
}
.box-timeline-content {
	word-break: break-all;
}

/* 게시물 하단 공감 버튼 삭제 */
#post_button_group,
.container_postbtn {
	display: none !important;
}

/* 게시물 폰트 강제 설정 */
.tt_article_useless_p_margin.contents_style {
	font-family: "suite variable", sans-serif;
}

/* 컨테이너 상단 여백 제거 */
#tt-body-page #container,
#tt-body-category #container,
#tt-body-archive #container,
#tt-body-search #container,
#tt-body-tag #container {
	padding-top: 0 !important;
}
.page-header,
.post-header,
.post-cover {
	margin-top: 0 !important;
	padding-top: 120px !important;
}

@media screen and (max-width: 768px) {
	#tt-body-page #container {
		padding-top: 0 !important;
	}
	.page-header,
	.post-header,
	.post-cover {
		padding-top: 80px !important;
	}
}

/* 서브 페이지 상단 투명 배경 */
#tt-body-page #header.header-light-text,
#tt-body-category #header.header-light-text,
#tt-body-search #header.header-light-text,
#tt-body-tag #header.header-light-text,
#tt-body-guestbook #header.header-light-text,
#tt-body-archive #header.header-light-text {
	background-color: transparent !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* 서브 페이지 상단 텍스트 흰색 */
#header.header-light-text #gnb .depth1 > li > a,
#header.header-light-text .order-menu a {
	color: #fff !important;
	background-color: transparent !important;
}

/* 햄버거 버튼 흰색 */
#header.header-light-text .btn_gnb .line {
	background-color: #fff !important;
}

/* 어두운색 로고 숨김, 흰색 로고 보이게 */
#header.header-light-text h1 a .logo-dark {
	display: none !important;
}
#header.header-light-text h1 a .logo-light {
	display: block !important;
}

/* 이미지 헤더 뒤로 */
#tt-body-page #container,
#tt-body-category #container {
	padding-top: 0 !important;
}

/* Hero 이미지 영역 위치 보정 */
.page-header,
.post-header,
.post-cover {
	margin-top: 0 !important;
	padding-top: 140px !important;
}

/* 헤더 배경 흰색 변경 */
#tt-body-page #header.header-light-text:hover,
#tt-body-category #header.header-light-text:hover,
#tt-body-search #header.header-light-text:hover,
#tt-body-tag #header.header-light-text:hover,
#tt-body-guestbook #header.header-light-text:hover,
#tt-body-archive #header.header-light-text:hover {
	background-color: #fff !important;
	border-bottom: 1px solid #eee !important;
}

/* 헤더 메뉴 글자 어두운색 변경 */
#header.header-light-text:hover #gnb .depth1 > li > a,
#header.header-light-text:hover .order-menu a {
	color: #333 !important;
}

/* 햄버거 버튼 어두운색 변경 */
#header.header-light-text:hover .btn_gnb .line {
	background-color: #333 !important;
}

/* 흰색 로고 숨김, 어두운색 로고 보임 */
#header.header-light-text:hover h1 a .logo-light {
	display: none !important;
}
#header.header-light-text:hover h1 a .logo-dark {
	display: block !important;
}

/* 커스텀 커서 */
@media screen and (min-width: 769px) {
	#cursor {
		position: fixed;
		top: 0;
		left: 0;
		width: 20px;
		height: 20px;
		pointer-events: none;
		z-index: 99999;
		transform: translate(-50%, -50%);
		transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1),
			height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
		display: flex;
		align-items: center;
		justify-content: center;
	}

	/* 3. 중앙 원 (Dot) */
	.cursor-circle {
		width: 100%;
		height: 100%;
		background-color: #0084e5;
		border-radius: 50%;
		transition: all 0.3s ease;
		opacity: 0.8;
	}

	.cursor-text {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 130px;
		height: 130px;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease;
	}

	/* SVG 텍스트 스타일 */
	.cursor-text text {
		fill: #fff;
		font-size: 10px;
		font-weight: 400;
		letter-spacing: 1.1px;
	}

	#cursor.active {
		width: 130px; /* 전체 커서 영역 확대 */
		height: 130px;
	}

	#cursor.active .cursor-circle {
		width: 100%;
		height: 100%;
		background-color: #002a47;
		opacity: 0.7;
		transform: scale(1);
	}

	#cursor.active .cursor-text {
		opacity: 1;
		visibility: visible;
		animation: rotateText 8s linear infinite; /* 빙글빙글 회전 */
	}
}

/* 회전 애니메이션 */
@keyframes rotateText {
	from {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

/* --- 모바일 (768px 이하) --- */
@media screen and (max-width: 768px) {
	#cursor {
		display: none;
	}
	body,
	a,
	button {
		cursor: auto !important;
	}
}

/* 오시는길 location */

.mapping-info {
	margin: 2rem auto;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.mapping-item {
	padding: 2rem 0;
	border-bottom: 1px solid #eee;
	display: flex;
	justify-content: flex-start;
	flex-direction: row;
	width: 100%;
}

@media screen and (max-width: 480px) {
	.mapping-info {
		margin: 0 auto;
	}

	.mapping-item {
		flex-direction: column;
		gap: 8px;
	}
}

.mapping-item:last-child {
	border-bottom: none;
}

.mapping-item .mapping-icon {
	gap: 8px;
	color: #555555;
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 192px;
}

.mapping-item .mapping-icon .mapping-title {
	font-weight: 700;
	font-size: 1.1rem;
	color: #111;
}

.mapping-item .mapping-text {
	font-weight: 500;
	font-size: 1.1rem;
	color: #333;
	flex: 1;
}

.ci-content {
	margin: 2rem auto;
}

.ci-logo {
	display: flex;
	gap: 2rem;
	flex-direction: column;
}

.ci-logo-item {
	display: flex;
	flex-direction: row;
	gap: 1rem;
	margin: 2rem auto;
	width: 100%;
}

.ci-img {
	flex: 1;
	width: 45%;
	border-radius: 1rem;
	box-shadow: 0px 0px 0px 1px #ddd;
}
@media screen and (max-width: 480px) {
	.ci-logo-item {
		flex-direction: column;
	}
	.ci-img {
		width: 100%;
	}
}

.ci-img:nth-child(2) {
	filter: brightness(1.15);
	box-shadow: 0px 0px 0px 1px rgb(185, 185, 185);
}

.ci-title {
	text-align: center;
}

.ci-desc .ci-title,
.ci-color .ci-title {
	padding-bottom: 1rem;
	border-bottom: 1px solid #eee;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	font-weight: 700;
	text-align: left;
}

.ci-desc .ci-text {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #333;
	margin-bottom: 3rem;
}

.ci-color .ci-chip {
	display: flex;
	flex-direction: row;
	gap: 1rem;
}

@media screen and (max-width: 480px) {
	.ci-color .ci-chip {
		flex-direction: column;
	}
}

.ci-color-chip {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	flex: 1;
}

.ci-color-green {
	width: 100%;
	height: 100px;
	background: rgb(0, 155, 109);
	position: relative;
}

.ci-color-green::after {
	content: "RGB(0, 155, 109) / IoT-GREEN";
	color: #fff;
	position: absolute;
	bottom: 8px;
	left: 8px;
}

.ci-color-blue {
	width: 100%;
	height: 100px;
	background: rgb(0, 109, 187);
	position: relative;
}

.ci-color-blue::after {
	content: "RGB(0, 109, 187) / IoT-BLUE";
	color: #fff;
	position: absolute;
	bottom: 8px;
	left: 8px;
}

.ci-color-gradient {
	background: linear-gradient(
		to right,
		rgb(0, 155, 109) 0%,
		rgb(0, 109, 187) 100%
	);
	position: relative;
	width: 100%;
	height: 100px;
}

.ci-color-gradient::after {
	content: "IoT-GREEN > IoT-BLUE";
	position: absolute;
	color: #fff;
	bottom: 8px;
	left: 8px;
}

.ci-color-tag {
	padding: 0.5rem;
	color: #333;
	background: #e7e7e7;
	font-size: 0.95rem;
	font-weight: 700;
	border-radius: 0 16px 0 0;
}

.ci-color-text {
	font-size: 1rem;
	color: #333;
	line-height: 1.7;
	padding-left: 8px;
	word-break: break-word;
}

.philo {
	margin: 8rem auto 3rem;
}

.philo-section .grid-wrap {
	flex-wrap: nowrap;
	justify-content: space-between;
	gap: 0;
}

.philo-section .grid-item {
	flex: 1 1 0;
	width: auto;
	max-width: none;
	min-width: 0;
	padding: 0 10px;
}
.philo-section .svg-box {
	width: 100%;
	max-width: 220px;
	margin: 0 auto 24px;
}

.philo-section .grid-wrap:before {
	left: 2%;
	width: 0;
	top: 110px;
}

.philo-section .cont_wrap.on .grid-wrap:before {
	width: 96%;
}

.philo-section .cont_wrap.on .grid-item:nth-child(5) svg path {
	transition-delay: 1.2s;
}
@media (max-width: 1200px) {
	.philo-section .grid-wrap {
		flex-wrap: wrap;
		justify-content: center;
		gap: 30px 0;
	}

	.philo-section .grid-item {
		flex: 0 0 33.33%;
		padding: 0 15px;
	}

	.philo-section .grid-wrap:before {
		display: none;
	}
}
@media (max-width: 768px) {
	.philo-section .grid-wrap {
		flex-direction: column;
		gap: 16px;
	}

	.philo-section .grid-item {
		flex: 1 1 100%;
		width: 100%;
		max-width: 100%;
		padding: 24px;
		background-color: #f9f9f9;
		border-radius: 16px;
	}

	.philo-section .svg-box {
		max-width: none;
		margin-bottom: 0;
	}
}

/* 개발 관련 아이콘 추가 */
.main-buttons {
	display: flex;
	justify-content: center;
	margin-bottom: 48px;
	filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.pill {
	padding: 16px 32px;
	color: white;
	font-size: 1.2rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 300px;
}

.hw-pill {
	background: linear-gradient(135deg, #0084e5 0%, #0020b1 100%);
	border-radius: 50px 0 0 50px;
	position: relative;
	z-index: 2;
}

.sw-pill {
	background: linear-gradient(135deg, #58b9ca 0%, #0084e5 100%);
	border-radius: 0 50px 50px 0;
	position: relative;
	z-index: 1;
	left: -1px;
}

.icon-process-list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 24px;
	margin-bottom: 32px;
}

.process-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100px;
}

.dev-circle {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2.5rem;
	margin-bottom: 15px;
	position: relative;
	border: 3px solid transparent;
	background-image: linear-gradient(#fff, #fff),
		linear-gradient(135deg, #0084e5 0%, #00f2fe 100%);
	background-origin: border-box;
	background-clip: content-box, border-box;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

.process-item:nth-child(even) .dev-circle {
	background-image: linear-gradient(#fff, #fff),
		linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.dev-circle i {
	background: linear-gradient(135deg, #0084e5, #8bb94c);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.process-item:hover .dev-circle {
	transform: translateY(-5px);
}

.dev-label {
	font-weight: 700;
	color: #333;
	font-size: 1rem;
}

.arrow-divider {
	color: #ddd;
	font-size: 2rem;
	margin-bottom: 20px;
	text-align: center;
}

.footer-desc {
	color: #555;
	line-height: 1.8;
	font-size: 1.1rem;
	text-align: center;
	width: 50vw;
	margin: 0 auto;
	word-break: break-word;
}

.footer-desc strong {
	color: #0084e5;
}

.contact-text {
	margin-top: 24px;
	font-weight: 700;
	font-size: 1.2rem;
	word-break: break-word;
}

@media (max-width: 1024px) {
	.footer-desc {
		width: 80vw;
	}
}

@media (max-width: 768px) {
	.main-buttons {
		flex-direction: column;
		align-items: center;
	}

	.pill {
		width: 100%;
		max-width: 300px;
	}

	.hw-pill {
		border-radius: 32px 32px 0 0;
		margin-bottom: 0;
	}

	.sw-pill {
		border-radius: 0 0 32px 32px;
		left: 0;
	}

	.icon-process-list {
		gap: 16px;
	}

	.process-item {
		width: 30%;
	}
	.footer-desc {
		width: 100%;
	}
}

/* 개발 포인트 4개 - 배경 고정 */
.sp-parallax-container {
	width: 100%;
	background-image: url("./images/bg19.webp");
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	margin-bottom: 48px;
}

.sp-overlay-mask {
	background-color: rgba(0, 0, 0, 0.6);
	padding: 64px 24px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.sp-grid-wrap {
	display: flex;
	justify-content: space-around;
	width: 100%;
	max-width: 1200px;
	flex-wrap: wrap;
	gap: 24px;
}

.sp-item-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: #fff;
}

.sp-icon-frame {
	font-size: 3.5rem;
	margin-bottom: 20px;
	color: #fff;
	filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.3));
	transition: transform 0.3s ease;
}

.sp-item-box:hover .sp-icon-frame {
	transform: translateY(-10px);
}

.sp-green-line {
	width: 24px;
	height: 2px;
	background-color: #0084e5;
	margin-bottom: 20px;
	border-radius: 2px;
}

.sp-txt-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 8px;
	letter-spacing: -0.5px;
}

.sp-txt-desc {
	font-size: 0.95rem;
	font-weight: 400;
	color: #ddd;
	line-height: 1.4;
}

@media (max-width: 1024px) {
	.sp-parallax-container {
		background-attachment: scroll;
	}
}

@media (max-width: 768px) {
	.sp-overlay-mask {
		padding: 60px 15px;
	}

	.sp-grid-wrap {
		gap: 40px 10px;
	}

	.sp-item-box {
		width: 45%;
	}

	.sp-icon-frame {
		font-size: 2.8rem;
		margin-bottom: 15px;
	}

	.sp-txt-title {
		font-size: 1.1rem;
	}

	.sp-txt-desc {
		font-size: 0.85rem;
		word-break: break-word;
	}
}

/* 개발 프로세스 추가 */
.st-process-section {
	max-width: 1200px;
	margin: 0 auto 80px;
	/* padding: 0 20px; */
}

.st-step-block {
	margin-bottom: 128px;
}

.st-progress-header {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 40px;
}

.st-ph-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 2;
	width: 120px;
}

.st-ph-circle {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #eee;
	color: #999;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 10px;
	border: 3px solid #fff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.st-ph-text {
	font-size: 1rem;
	color: #aaa;
	font-weight: 500;
	text-align: center;
}

.st-ph-line {
	flex-grow: 1;
	height: 4px;
	background-color: #eee;
	max-width: 150px;
	margin: -32px 10px 0;
	position: relative;
	z-index: 1;
}

.st-ph-item.active .st-ph-circle {
	background-color: #0020b1;
	color: #fff;
	transform: scale(1.1);
}
.st-ph-item.active .st-ph-text {
	color: #0020b1;
	font-weight: 700;
}

.st-ph-item.done .st-ph-circle {
	background-color: #0084e5;
	color: #fff;
}
.st-ph-line.done-line {
	background-color: #0084e5;
}

.st-step1-grid {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.st-card-box {
	background: #f9f9f9;
	min-width: 280px;
	padding: 40px 20px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s;
}

.st-card-box:hover {
	transform: translateY(-5px);
	background: #fff;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.st-card-icon {
	font-size: 2.5rem;
	color: #555;
	margin-bottom: 20px;
}

.st-dash {
	width: 30px;
	height: 3px;
	background-color: #0084e5;
	margin: 0 auto 20px;
}

.st-card-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: #333;
}

.st-arrow-icon {
	font-size: 1.5rem;
	color: #ddd;
}

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

.st-img-box {
	text-align: center;
}

.st-img-placeholder {
	width: 100%;
	aspect-ratio: 4 / 3;
	background-color: #ddd;
	background-size: cover;
	background-position: center;
	border-radius: 8px;
	margin-bottom: 15px;
	border: 1px solid #eee;
}

.st-img-desc {
	font-weight: 700;
	color: #333;
	font-size: 1.05rem;
}

.st-step3-flow {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	background: #fdfdfd;
	padding: 40px 20px;
	border-radius: 15px;
	border: 1px dashed #ddd;
}

.st-flow-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 140px;
	text-align: center;
}

.st-flow-circle {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #0084e5;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2rem;
	color: #0084e5;
	margin-bottom: 15px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.st-flow-circle.highlight {
	background: #0084e5;
	color: white;
}

.st-flow-item:hover .st-flow-circle {
	transform: scale(1.05);
	box-shadow: 0 8px 15px rgba(139, 185, 76, 0.3);
}

.st-flow-text {
	font-weight: 700;
	color: #444;
	font-size: 1rem;
	line-height: 1.3;
}

.st-flow-arrow {
	color: #ccc;
	font-size: 1.5rem;
}

@media (max-width: 1024px) {
	.st-step2-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}

@media screen and (max-width: 768px) {
	.st-step1-grid {
		flex-direction: column;
	}
	.st-arrow-icon {
		transform: rotate(90deg);
	}
	.st-card-box {
		max-width: 320px;
	}
	.st-img-placeholder {
		aspect-ratio: 16 / 9;
	}
	.st-flow-item {
		display: flex;
		flex-direction: row;
		gap: 16px;
		width: calc(100vw - 48px);
		align-items: center;
	}
	.st-step3-flow {
		flex-direction: column;
		gap: 16px;
	}
	.st-flow-arrow {
		transform: rotate(90deg);
	}
	.st-ph-text {
		font-size: 0.8rem;
	}
	.st-ph-circle {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}
	.st-ph-line {
		margin-top: -32px;
	}
}

/* 제품 소개 */
.product-data {
	width: 100%;
	background-color: #fff;
	padding: 72px 0;
}

.pd-container {
	max-width: 1200px;
	margin: 0 auto;
}

.pd-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 60px 0;
	border-top: 1px solid #e0e0e0;
	gap: 60px;
}

.pd-item:first-child {
	border-top: 2px solid #333;
}

.pd-text-group {
	flex: 1;
	order: 1;
}

.pd-title {
	font-size: 2rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 24px;
	line-height: 1.1;
	position: relative;
	padding-left: 20px;
}

.pd-title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 6px;
	width: 4px;
	height: 24px;
	background-color: #0084e5;
}

.pd-desc {
	font-size: 1.05rem;
	color: #555;
	line-height: 1.7;
	margin-bottom: 32px;
	word-break: break-word;
	max-width: 95%;
}

.pd-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.pd-pill {
	display: inline-block;
	padding: 8px 16px;
	background-color: rgba(0, 132, 229, 0.08);
	color: #0084e5;
	font-size: 0.9rem;
	font-weight: 600;
	border-radius: 50px;
	transition: all 0.3s ease;
}

.pd-pill:hover {
	background-color: #0084e5;
	color: #fff;
	transform: translateY(-2px);
}

.pd-img-group {
	flex: 1;
	order: 2;
	width: 100%;
}

.pd-img-box {
	width: 100%;
	/* 이미지 비율 설정 (16:9 56.25% 4:3 75% 1:1 100%;) */
	padding-bottom: 56.25%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 8px;
	border: 1px solid #eee;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
	.product-data {
		padding: 50px 0;
	}

	.pd-item {
		flex-direction: column-reverse;
		align-items: flex-start;
		gap: 30px;
		padding: 40px 0;
	}

	.pd-text-group {
		width: 100%;
	}

	.pd-img-group {
		width: 100%;
	}

	.pd-title {
		font-size: 1.5rem;
		padding-left: 15px;
	}

	.pd-title::before {
		top: 4px;
		height: 20px;
	}

	.pd-desc {
		font-size: 1rem;
		max-width: 100%;
	}

	.pd-pill {
		padding: 6px 12px;
		font-size: 0.85rem;
	}
}

/* 솔루션 섹션 변경 */

.sol-detail-wrapper {
	width: 100%;
	overflow-x: hidden;
}

.sd-container {
	max-width: 1200px;
	margin: 0 auto;
}

.sd-container:last-child {
	margin-top: 32px;
}

.sd-intro {
	padding: 100px 0;
	background: #fff;
}

.sd-flex-row {
	display: flex;
	align-items: center;
	gap: 60px;
}

@media (min-width: 769px) {
	.sd-flex-row.sd-reverse .sd-img-col {
		order: -1;
	}
}

.sd-text-col,
.sd-img-col {
	flex: 1;
}

.sd-section-title {
	font-size: 1.875rem;
	color: #333;
	font-weight: 700;
	margin-bottom: 24px;
	border-left: 4px solid #0084e5;
	padding-left: 20px;
}

.sd-desc {
	font-size: 1.1rem;
	color: #555;
	line-height: 1.8;
	margin-bottom: 30px;
	word-break: break-word;
}

.sd-check-list {
	margin-top: 30px;
}

.check-item {
	font-size: 1.1rem;
	color: #333;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
}

.check-item i {
	color: #0084e5;
}

.sd-img-box {
	width: 100%;
	padding-bottom: 70%; /* 4:3 비율 */
	border-radius: 16px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border: 1px solid #eee;
}

.sd-features {
	padding: 100px 24px;
	background: #f8f9fa;
	margin: 0 auto !important;
}

.sd-center-title {
	text-align: center;
	margin-bottom: 48px;
}

.sd-center-title .sd-h2 {
	font-size: 2.2rem;
	color: #333;
	font-weight: 700;
	margin-bottom: 10px;
}

.sd-feature-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.sd-f-card {
	background: #fff;
	padding: 32px 24px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: border-bottom 0.3s ease, transform 0.2s ease-in !important;
	border-bottom: 3px solid transparent;
}

.sd-f-card:hover {
	border-bottom: 3px solid #0084e5;
	transform: translateY(-5px) !important;
}

.sd-f-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 24px;
	background: rgba(0, 132, 229, 0.08);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: #0084e5;
}

.sd-f-card .sd-h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 16px;
	color: #333;
}

.sd-f-card .sd-p,
.sd-center-title .sd-p {
	font-size: 1rem;
	color: #666;
	line-height: 1.6;
	word-break: break-word;
}

.sd-cta {
	padding: 80px 0;
	background: linear-gradient(0deg, #fff 0%, #0084e5 100%);
	text-align: center;
	color: #fff;
}

.sd-cta .sd-h2 {
	font-size: 2.25rem;
	color: #fff;
	margin-bottom: 12px;
	font-weight: 700;
}

.sd-cta .sd-p {
	font-size: 1.1rem;
	font-weight: 700;
	color: #0661a1;
}

.sd-cta-btn {
	display: inline-block;
	margin-top: 33px;
	padding: 12px 32px;
	background: #fff;
	color: #0084e5 !important;
	font-weight: 700;
	border-radius: 50px;
	text-decoration: none !important;
	transition: all 0.3s;
}

.sd-cta-btn:hover {
	background: #0084e5;
	color: #fff !important;
}

@media (max-width: 1024px) {
	.sd-feature-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.sd-flex-row {
		flex-direction: column;
		gap: 40px;
	}

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

	.sd-img-col {
		width: 100%;
	}

	.sd-intro,
	.sd-features {
		padding: 64px 0;
	}

	.sd-center-title .sd-h2,
	.sd-cta .sd-h2 {
		font-size: 28px;
	}
}

/* 구성도 추가 */
.sd-diagram-wrap {
	width: 100%;
	text-align: center;
}

.sd-diagram-img {
	width: 100%;
	max-width: 1200px;
	height: auto;
	border-radius: 12px;
}

.sd-diagram-img.small {
	width: 70%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}

/* 모바일 반응형 설정 */
@media (max-width: 768px) {
	.sd-diagram-wrap {
		margin-bottom: 40px;
	}

	.sd-diagram-img.small {
		width: 95%;
	}
}

.sd-bg {
	background: #0086e515;
	border-radius: 32px;
	padding: 100px 0;
}

/* dtg 테이블 추가 */
.sd-detail-table {
	padding: 96px 0;
}

.table-container {
	max-width: 1200px;
	margin: 2rem auto 6rem;
	border-top: 1px solid #eee;
	font-size: 1rem;
	line-height: 1.6;
	color: #333;
}

.row {
	display: flex;
	border-bottom: 1px solid #e0e0e0;
	min-height: 80px;
}

.col-header {
	background-color: #0084e5;
	color: #fff;
	font-weight: 700;
	width: 25%;
	min-width: 140px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 8px;
}

.col-content {
	background: #fff;
	width: 75%;
	padding: 16px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 8px;
}
.highlight {
	font-weight: 700;
	color: #0084e5;
}

/* 차량관제 플랫폼 추가 */
.sd-bna {
	background: #0086e515;
	padding: 96px 0;
	border-radius: 32px;
}

/* 차량관제 사례 추가 */
.sd-reference {
	padding: 96px 0;
	margin: 0 auto;
}
.case-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	max-width: 1200px;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.case-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.case-grid {
		grid-template-columns: 1fr;
	}
}

.case-item {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	cursor: pointer;
}

.case-item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.case-item:hover img {
	transform: scale(1.05);
}

/* gps feature */
.feature-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	max-width: 1200px;
	margin: 4rem auto 1rem;
}

.feature-card {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	background: #fff;
	width: 100%;
	aspect-ratio: 4 / 3;
	border: 1px solid #eee;
}

.image-wrapper {
	width: 100%;
	height: 100%;
}

.bg-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.5s ease;
	display: block;
}

.bg-img.cover {
	object-fit: cover;
}

.feature-card:hover .bg-img {
	transform: scale(1.1);
}

.hover-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	opacity: 0;
	transition: opacity 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 16px;
	color: #fff;
	text-align: center;
	box-sizing: border-box;
}

.feature-card:hover .hover-content {
	opacity: 1;
}

.text-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 2px solid #0084e5;
	width: 80%;
	color: #6bc1ff;
}

.text-desc-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 0.95rem;
	line-height: 1.7;
	color: #e0e0e0;
}

@media (max-width: 768px) {
	.feature-container {
		grid-template-columns: 1fr;
	}

	.feature-card {
		aspect-ratio: unset;
		height: auto;
		overflow: visible;
	}

	.image-wrapper {
		height: auto;
	}

	.hover-content {
		position: relative;
		opacity: 1;
		background: transparent;
		color: #333;
		height: auto;
		padding: 32px 16px;
	}

	.feature-card:hover .bg-img {
		transform: none;
	}

	.text-title {
		font-size: 1.1rem;
		color: #111;
		border-bottom: 2px solid #ddd;
	}

	.text-desc-group {
		font-size: 15px;
		color: #555;
	}
}

.sd-img {
	margin: 100px auto;
}

@media (max-width: 1024px) {
	.sd-img .feature-container {
		padding: 0;
	}
}
