/* ==========================================================================
   Sub Hero & Sub Nav Section
   ========================================================================== */
/* Sub Hero */
.sub-hero {
	position: relative;
	width: 100%;
	padding: 110px 0 50px;
	background: url('/opswat/img/visual.png') no-repeat center right / cover;
	overflow: hidden;
} 
.sub-hero .title-wrap {
	position: relative;
	padding-left: 36px;
} 
.sub-hero .title-wrap::before {
	content: '';
	position: absolute;
	left: 0;
	top: 6px;
	bottom: 6px;
	width: 3px;
	background-color: #2549A6;
}
.sub-hero .sub-title {
	font-size: 38px;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 20px;
	color: #ffffff;
} 
.sub-hero .sub-desc {
	font-size: 16px;
	font-weight: 500;
	color: #a3b1c6;
	line-height: 1.5;
}
  
/* Sub Nav */
.sub-nav {
	width: 100%;
	background: linear-gradient(90deg,rgb(3, 56, 153) 0%, rgba(0, 18, 51, 1) 100%);
	display: flex;
} 
.sub-nav .inner {
	display: flex;
}
.sub-nav .sub-tab-list {
	display: flex !important;
	flex-wrap: nowrap !important;
	width: 100%;
	align-items: stretch;
} 
.sub-nav .tab-item {
	flex: 1 !important;
	min-width: 0;
	display: flex;
	box-sizing: border-box;
	border-right: 1px solid rgba(255, 255, 255, 0.05);
} 
.sub-nav .tab-item:last-child {
	border-right: none;
}
.sub-nav .tab-item a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 18px 8px;
	color: #8899a6;
	background-color: transparent;
	transition: all 0.25s ease;
	position: relative;
	box-sizing: border-box;
	text-align: center;
}	
/* Active(활성화) 상태 및 Hover 스타일 */
.sub-nav .tab-item.active a{
	background-color: #0052cc; /* 활성화된 탭 배경 파란색 */
	color: #ffffff;
}
.sub-nav .tab-item a:hover {
	background-color: #0044aa; /* 활성화된 탭 배경 파란색 */
	color: #ffffff;
}
.sub-nav .tab-title {
	font-size: 15px;
	font-weight: 600;
} 
  

/*--------------------------------*/
.integration-viewer {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	min-height: 100vh;
	background: #111f42;
	box-sizing: border-box;
}
.integration-viewer--white {
	background: #fff;
	padding: 0 24px 100px;
	flex-direction: column;
	align-items: center;
}
.integration-intro {
	width: 100%;
	min-height: 300px;
	padding: 100px 24px 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	box-sizing: border-box;
}
.integration-intro .intro-tit {
	color: #0d3488;
	font-size: 42px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	margin-bottom: 6px;
}

.intro-line{
	display: block;
	width: 100px;
	height: 1px;
	background: #e1e3eb;
	margin: 30px 0;
}

.integration-intro .intro-txt {
	margin: 0;
	color: #333333;
	font-size: 18px;
	line-height: 1.5;
	font-weight: 400;
}

.integration-features{
	padding-bottom: 80px;
}
.feature-grid{
	display: flex;
    gap: 12px;
    margin: 0 auto;
}
.feature-item{
	flex: 1;
    background: #f6f8fa;
    border-radius: 10px;
    padding: 28px 26px;

}
.feature-item h3{
	margin: 0 0 14px;
    font-size: 20px;
    font-weight: 700;
    color: #0f2f80;
}
.feature-item p{
	margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #696969;
}


.integration-viewer--white .viewer-stack,
.integration-viewer--white .viewer-single {
	box-shadow: none;
}
.integration-viewer .viewer-stack {
	display: flex;
	flex-direction: column;
	max-width: 100%;
	border: 1px solid #eee;
}
.integration-viewer .viewer-stack img,
.integration-viewer .viewer-single img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	border: 0;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.integration-viewer .viewer-single {
	max-width: 100%;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}


