﻿@charset 'utf-8';

/* common */

/* ===== Sub page: header + sub visual on load (sub.js interpolates --sub-sv-p) ===== */
#wrap.sub-page {
	--sub-sv-p: 0;
	/* Same horizontal padding band as .header__inner (common.css) */
	--sv-pad-x: 60px;
	--sv-radius-max: 24px;
	--header-h: 100px;
}

#wrap.sub-page #subWrap {
	position: relative;
	z-index: 0;
}

#wrap.sub-page header {
	position: relative;
	top: auto;
	left: auto;
	z-index: 10;
	width: 100%;
	background: transparent;
	box-shadow: 0 2px 10px rgba(0, 0, 0, calc(0.05 * var(--sub-sv-p)));
	transition: box-shadow 0.25s ease;
}

#wrap.sub-page header::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	background: var(--color-white);
	opacity: var(--sub-sv-p);
	pointer-events: none;
}

#wrap.sub-page header .header__inner {
	position: relative;
	z-index: 1;
}

#wrap.sub-page header .gnb__link {
	color: color-mix(in srgb, var(--color-text-strong) calc(var(--sub-sv-p) * 100%), var(--color-white)) !important;
}

#wrap.sub-page header .header__search {
	color: color-mix(in srgb, var(--color-black) calc(var(--sub-sv-p) * 100%), var(--color-white));
}

#wrap.sub-page .header__mobile-toggle span {
	background-color: color-mix(in srgb, var(--color-black) calc(var(--sub-sv-p) * 100%), var(--color-white));
}

#wrap.sub-page .header__logo,
#wrap.sub-page .header__partner {
	position: relative;
}

#wrap.sub-page .header__logo .logo--white,
#wrap.sub-page .header__partner .logo--white {
	display: block !important;
	opacity: calc(1 - var(--sub-sv-p));
}

#wrap.sub-page .header__logo .logo--dark,
#wrap.sub-page .header__partner .logo--dark {
	display: block !important;
	position: absolute;
	left: 0;
	top: 0;
	opacity: var(--sub-sv-p);
}

/* Overlap: margin-top eases from -header-h toward 0; min-height shrinks by header-h with --sub-sv-p */
#wrap.sub-page #sv.sv01,
#wrap.sub-page #sv.sv02,
#wrap.sub-page #sv.sv03,
#wrap.sub-page #sv.sv04,
#wrap.sub-page #sv.sv05,
#wrap.sub-page #sv.sv06,
#wrap.sub-page #sv.sv07 {
	min-height: calc(var(--sv-min-height) + (1 - var(--sub-sv-p)) * var(--header-h));
	margin-top: calc((1 - var(--sub-sv-p)) * -1 * var(--header-h));
	margin-left: calc(var(--sub-sv-p) * var(--sv-pad-x));
	margin-right: calc(var(--sub-sv-p) * var(--sv-pad-x));
	background-image: none;
	border-radius: calc(var(--sub-sv-p) * var(--sv-radius-max));
}

#wrap.sub-page #sv.sv01::after,
#wrap.sub-page #sv.sv02::after,
#wrap.sub-page #sv.sv03::after,
#wrap.sub-page #sv.sv04::after,
#wrap.sub-page #sv.sv05::after,
#wrap.sub-page #sv.sv06::after,
#wrap.sub-page #sv.sv07::after {
	content: '';
	position: absolute;
	z-index: 0;
	inset: 0;
	background-color: var(--color-text-muted);
	background-image: url('/img/sub/sv_company_01.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	pointer-events: none;
}

#wrap.sub-page #sv.sv01::before,
#wrap.sub-page #sv.sv02::before,
#wrap.sub-page #sv.sv03::before,
#wrap.sub-page #sv.sv04::before,
#wrap.sub-page #sv.sv05::before,
#wrap.sub-page #sv.sv06::before,
#wrap.sub-page #sv.sv07::before {
	z-index: 1;
}

#wrap.sub-page #sv.sv01 .sv__stack,
#wrap.sub-page #sv.sv02 .sv__stack,
#wrap.sub-page #sv.sv03 .sv__stack,
#wrap.sub-page #sv.sv04 .sv__stack,
#wrap.sub-page #sv.sv05 .sv__stack,
#wrap.sub-page #sv.sv06 .sv__stack,
#wrap.sub-page #sv.sv07 .sv__stack {
	z-index: 2;
}

/* ===== Sub visual — company (sv01), policy (sv06): shared layout ===== */
:root {
	--sv-min-height: 550px;
	--sv-overlay: rgba(0, 0, 0, 0.2);
	--sv-crumb-bg: rgba(0, 0, 0, 0.4);
	--sv-crumb-sep: rgba(255, 255, 255, 0.5);
	--sv-title-size: 56px;
	--sv-title-lh: 1.28;
	--sv-crumb-text-size: 17px;
	--sv-crumb-lh: 1.65;
	--sv-crumb-bar-h: 56px;
	--sv-crumb-list-px: 28px;
	--sv-crumb-gap: 14px;
	--sv-stack-pb: 40px;
}

#sv.sv01,
#sv.sv02,
#sv.sv03,
#sv.sv04,
#sv.sv05,
#sv.sv06,
#sv.sv07 {
	display: flex;
	flex-direction: column;
	position: relative;
	min-height: var(--sv-min-height);
	background-color: var(--color-text-muted);
	background-image: url('/img/sub/sv_company_01.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	overflow: hidden;
}

#sv.sv01::before,
#sv.sv02::before,
#sv.sv03::before,
#sv.sv04::before,
#sv.sv05::before,
#sv.sv06::before,
#sv.sv07::before {
	content: '';
	position: absolute;
	z-index: 0;
	inset: 0;
	background: var(--sv-overlay);
}

#sv.sv01 .sv__stack,
#sv.sv02 .sv__stack,
#sv.sv03 .sv__stack,
#sv.sv04 .sv__stack,
#sv.sv05 .sv__stack,
#sv.sv06 .sv__stack,
#sv.sv07 .sv__stack {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	align-items: center;
	position: relative;
	z-index: 1;
	width: 100%;
	min-height: 0;
	padding: var(--sv-stack-pb) 20px calc(var(--sv-crumb-bar-h) + var(--sv-stack-pb));
	box-sizing: border-box;
}

#sv.sv01 .sv__middle,
#sv.sv02 .sv__middle,
#sv.sv03 .sv__middle,
#sv.sv04 .sv__middle,
#sv.sv05 .sv__middle,
#sv.sv06 .sv__middle,
#sv.sv07 .sv__middle {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 0;
	margin-bottom: calc(-1 * var(--sv-crumb-bar-h));
}

#sv.sv01 .sv__title-wrap,
#sv.sv02 .sv__title-wrap,
#sv.sv03 .sv__title-wrap,
#sv.sv04 .sv__title-wrap,
#sv.sv05 .sv__title-wrap,
#sv.sv06 .sv__title-wrap,
#sv.sv07 .sv__title-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

#sv.sv01 .sv__title,
#sv.sv02 .sv__title,
#sv.sv03 .sv__title,
#sv.sv04 .sv__title,
#sv.sv05 .sv__title,
#sv.sv06 .sv__title,
#sv.sv07 .sv__title {
	margin: 0;
	color: var(--color-white);
	font-size: var(--sv-title-size);
	font-weight: 700;
	line-height: var(--sv-title-lh);
}

#sv.sv01 .sv__crumb,
#sv.sv02 .sv__crumb,
#sv.sv03 .sv__crumb,
#sv.sv04 .sv__crumb,
#sv.sv05 .sv__crumb,
#sv.sv06 .sv__crumb,
#sv.sv07 .sv__crumb {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 0;
	right: 0;
	bottom: var(--sv-stack-pb);
	z-index: 3;
	width: 100%;
	pointer-events: none;
}

#sv.sv01 .sv__crumb-list,
#sv.sv01 .sv__crumb-home,
#sv.sv02 .sv__crumb-home,
#sv.sv04 .sv__crumb-list,
#sv.sv04 .sv__crumb-home,
#sv.sv05 .sv__crumb-list,
#sv.sv05 .sv__crumb-home,
#sv.sv06 .sv__crumb-list,
#sv.sv07 .sv__crumb-list,
#sv.sv06 .sv__crumb-home,
#sv.sv07 .sv__crumb-home {
	pointer-events: auto;
}

#sv.sv01 .sv__crumb-list,
#sv.sv02 .sv__crumb-list,
#sv.sv03 .sv__crumb-list,
#sv.sv04 .sv__crumb-list,
#sv.sv05 .sv__crumb-list,
#sv.sv06 .sv__crumb-list,
#sv.sv07 .sv__crumb-list {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: var(--sv-crumb-gap);
	height: var(--sv-crumb-bar-h);
	margin: 0;
	padding: 0 var(--sv-crumb-list-px);
	list-style: none;
	background: var(--sv-crumb-bg);
	border-radius: 999px;
}

#sv.sv01 .sv__crumb-item,
#sv.sv02 .sv__crumb-item,
#sv.sv03 .sv__crumb-item,
#sv.sv04 .sv__crumb-item,
#sv.sv05 .sv__crumb-item,
#sv.sv06 .sv__crumb-item,
#sv.sv07 .sv__crumb-item {
	display: flex;
	flex-direction: row;
	align-items: center;
}

#sv.sv01 .sv__crumb-item--sep,
#sv.sv02 .sv__crumb-item--sep,
#sv.sv03 .sv__crumb-item--sep,
#sv.sv04 .sv__crumb-item--sep,
#sv.sv05 .sv__crumb-item--sep,
#sv.sv06 .sv__crumb-item--sep,
#sv.sv07 .sv__crumb-item--sep {
	pointer-events: none;
}

#sv.sv01 .sv__crumb-dot,
#sv.sv02 .sv__crumb-dot,
#sv.sv03 .sv__crumb-dot,
#sv.sv04 .sv__crumb-dot,
#sv.sv05 .sv__crumb-dot,
#sv.sv06 .sv__crumb-dot,
#sv.sv07 .sv__crumb-dot {
	display: block;
	width: 4px;
	height: 4px;
	background: var(--sv-crumb-sep);
	border-radius: 999px;
}

#sv.sv01 .sv__crumb-text,
#sv.sv02 .sv__crumb-text,
#sv.sv03 .sv__crumb-text,
#sv.sv04 .sv__crumb-text,
#sv.sv05 .sv__crumb-text,
#sv.sv06 .sv__crumb-text,
#sv.sv07 .sv__crumb-text {
	color: var(--color-white);
	font-size: var(--sv-crumb-text-size);
	font-weight: 500;
	line-height: var(--sv-crumb-lh);
}

#sv.sv01 .sv__crumb-home,
#sv.sv02 .sv__crumb-home,
#sv.sv03 .sv__crumb-home,
#sv.sv04 .sv__crumb-home,
#sv.sv05 .sv__crumb-home,
#sv.sv06 .sv__crumb-home,
#sv.sv07 .sv__crumb-home {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 32px;
	height: 32px;
	color: var(--color-white);
	text-decoration: none;
}

#sv.sv01 .sv__crumb-home-bg,
#sv.sv02 .sv__crumb-home-bg,
#sv.sv03 .sv__crumb-home-bg,
#sv.sv04 .sv__crumb-home-bg,
#sv.sv05 .sv__crumb-home-bg,
#sv.sv06 .sv__crumb-home-bg,
#sv.sv07 .sv__crumb-home-bg {
	position: absolute;
	inset: 0;
	background: var(--color-gnb-sub-bg);
	border-radius: 999px;
}

#sv.sv01 .sv__crumb-home-icon,
#sv.sv02 .sv__crumb-home-icon,
#sv.sv03 .sv__crumb-home-icon,
#sv.sv04 .sv__crumb-home-icon,
#sv.sv05 .sv__crumb-home-icon,
#sv.sv06 .sv__crumb-home-icon,
#sv.sv07 .sv__crumb-home-icon {
	display: block;
	position: relative;
	z-index: 1;
}

#sv.sv01 .sv__crumb-home:focus-visible,
#sv.sv02 .sv__crumb-home:focus-visible,
#sv.sv03 .sv__crumb-home:focus-visible,
#sv.sv04 .sv__crumb-home:focus-visible,
#sv.sv05 .sv__crumb-home:focus-visible,
#sv.sv06 .sv__crumb-home:focus-visible,
#sv.sv07 .sv__crumb-home:focus-visible {
	outline: 2px solid var(--color-white);
	outline-offset: 3px;
}

/* sv02 전용 배경 (적용사례) */
#sv.sv02 {
	background-image: url('/img/sub/sv_company_02.png');
}

#wrap.sub-page #sv.sv02::after {
	background-image: url('/img/sub/sv_company_02.png');
}

/* sv03 전용 배경 (제품소개) */
#sv.sv03 {
	background-image: url('/img/sub/sv_company_03.png');
}

#wrap.sub-page #sv.sv03::after {
	background-image: url('/img/sub/sv_company_03.png');
}

/* sv04 전용 배경 (제품소개) */
#sv.sv04 {
	background-image: url('/img/sub/sv_company_04.png');
}

#wrap.sub-page #sv.sv04::after {
	background-image: url('/img/sub/sv_company_04.png');
}

/* sv05 전용 배경 (제품소개) */
#sv.sv05 {
	background-image: url('/img/sub/sv_company_05.png');
}

#wrap.sub-page #sv.sv05::after {
	background-image: url('/img/sub/sv_company_05.png');
}

/* sv06 전용 배경 (제품소개), sv07 검색결과 동일 배경 */
#sv.sv06,
#sv.sv07 {
	background-image: url('/img/sub/sv_company_06.png');
}

#wrap.sub-page #sv.sv06::after,
#wrap.sub-page #sv.sv07::after {
	background-image: url('/img/sub/sv_company_06.png');
}

/* ===== Section: Greeting ===== */
.greeting {
	position: relative;
	padding: 120px 0 160px;
	overflow: hidden;
}

.greeting__bg-text {
	position: absolute;
	z-index: 0;
	right: 0;
	bottom: 120px;
	color: #FBF5F4;
	font-family: var(--engFont);
	font-size: 152px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -3.04px;
	white-space: nowrap;
	pointer-events: none;
	user-select: none;
}

.greeting__inner {
	position: relative;
	z-index: 1;
}

.greeting__content {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

.greeting__title {
	color: var(--color-black);
	font-size: 52px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -1.04px;
	text-align: center;
}

.greeting__body {
	display: flex;
	align-items: center;
	gap: 120px;
}

.greeting__img-wrap {
	flex-shrink: 0;
	width: 640px;
	height: 720px;
	background: #F5F5F5;
	border-radius: 30px;
	overflow: hidden;
}

.greeting__img-wrap img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}

.greeting__text-wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1;
	min-width: 0;
	padding: 0 80px;
}

.greeting__text-inner {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.greeting__head-group {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.greeting__lead {
	color: var(--color-black);
	font-size: 32px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: -0.64px;
}

.greeting__lead--point {
	color: var(--color-gnb-sub-bg);
	font-weight: 700;
}

.greeting__bar {
	display: block;
	width: 60px;
	height: 2px;
	background: var(--color-gnb-sub-bg);
}

.greeting__para-group {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.greeting__para-group p {
	color: #444444;
	font-size: 20px;
	font-weight: 300;
	line-height: 1.7;
	letter-spacing: -0.40px;
}

.greeting__para-group b{
	color: var(--color-black);
	font-size: 20px;
	font-weight: 500;
	line-height: 170%; /* 34px */
	letter-spacing: -0.4px;
}

/* ===== Section: Location ===== */
.location {
	padding: 120px 0 160px;
}

.location__content {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

.location__title {
	color: var(--color-black);
	font-size: 52px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -1.04px;
	text-align: center;
	margin: 0;
}

.location__body {
	display: flex;
	align-items: stretch;
	gap: 20px;
}

.location__info {
	flex-shrink: 0;
	width: 640px;
	background: #FBFBFB;
	border-radius: 30px;
	padding: 55px 70px;
	box-sizing: border-box;
}

.location__info-inner {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.location__section {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.location__section-title {
	margin: 0;
	color: var(--color-black);
	font-size: 26px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.52px;
}

.location__list {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.location__item {
	display: flex;
	align-items: center;
	gap: 15px;
}

.location__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 18px;
	height: 18px;
}

.location__text {
	color: #444444;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -0.36px;
}

.location__text--en {
	font-family: var(--engFont, 'Lexend', sans-serif);
	font-weight: 300;
}

.location__divider {
	border: none;
	border-top: 1px solid #CCCCCC;
	margin: 0;
}

.location__transport-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.location__transport-item {
	display: flex;
	align-items: flex-start;
}

.location__transport-label {
	flex-shrink: 0;
	width: 60px;
	color: #444444;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.36px;
	padding-top: 4px;
}

.location__transport-routes {
	display: flex;
	flex-direction: column;
	gap: 5px;
	align-self: flex-end;
}

.location__transport-row {
	display: flex;
	align-items: center;
	gap: 5px;
}

.location__tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	padding: 5px 15px;
	border-radius: 100px;
	color: var(--color-white);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.28px;
}

.location__tag--green { background: #25C24F; }
.location__tag--brown { background: #C66929; }

.location__transport-desc {
	color: #444444;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -0.36px;
}

.location__map {
	flex: 1 1 0;
	min-width: 0;
	border-radius: 30px;
	overflow: hidden;
}

/* ===== Privacy (policy pages, same rhythm as .greeting) ===== */
.privacy {
	position: relative;
	overflow: hidden;
	padding: 120px 0 160px;
}

.privacy__bg-text {
	position: absolute;
	z-index: 0;
	right: 0;
	bottom: 120px;
	color: #FBF5F4;
	font-family: var(--engFont);
	font-size: 152px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -3.04px;
	white-space: nowrap;
	pointer-events: none;
	user-select: none;
}

.privacy__inner {
	position: relative;
	z-index: 1;
}

.privacy__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 60px;
	width: 100%;
}

.privacy__title {
	margin: 0;
	color: var(--color-black);
	font-size: 52px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -1.04px;
	text-align: center;
}

.privacy__head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}

.privacy__bar {
	display: block;
	width: 60px;
	height: 2px;
	background: var(--color-gnb-sub-bg);
}

.privacy__body {
	display: flex;
	flex-direction: column;
	gap: 36px;
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
}

.privacy__lead {
	margin: 0;
	color: #444444;
	font-size: 20px;
	font-weight: 300;
	line-height: 1.7;
	letter-spacing: -0.40px;
	text-align: left;
}

.privacy__brand {
	color: var(--color-gnb-sub-bg);
	font-weight: 700;
}

.privacy__meta {
	margin: 0;
	color: #666666;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.65;
	letter-spacing: -0.36px;
}

.privacy__body > p:not(.privacy__lead):not(.privacy__meta) {
	margin: 0;
	color: #444444;
	font-size: 20px;
	font-weight: 300;
	line-height: 1.7;
	letter-spacing: -0.40px;
}

.privacy__body > dl {
	margin: 0;
	padding: 0;
}

.privacy__body > dl > dt {
	margin: 0 0 12px;
	color: var(--color-black);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: -0.36px;
}

.privacy__body > dl > dd {
	margin: 0;
	color: #444444;
	font-size: 20px;
	font-weight: 300;
	line-height: 1.7;
	letter-spacing: -0.40px;
	text-align: left;
}

.privacy__body > dl > dd ul {
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
}

.privacy__body > dl > dd ul li {
	position: relative;
	margin-top: 12px;
	padding-left: 18px;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.65;
	letter-spacing: -0.36px;
	color: #444444;
}

.privacy__body > dl > dd ul li:first-child {
	margin-top: 6px;
}

.privacy__body > dl > dd ul li::before {
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--color-gnb-sub-bg);
}

.privacy__body > dl > dd ul li p {
	margin: 8px 0 0;
	padding: 0;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.65;
	letter-spacing: -0.36px;
	color: #444444;
}

.privacy .sTxt {
	margin-top: 12px;
	padding: 28px 32px;
	background: #F5F5F5;
	border-radius: 20px;
	box-sizing: border-box;
}

/* ===== Section: Cases (적용사례) ===== */
.cases {
	padding: 100px 0 160px;
}

.cases__head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	margin-bottom: 60px;
}

.cases__title {
	margin: 0;
	color: var(--color-black);
	font-size: 52px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -1.04px;
	text-align: center;
}

.cases__tab {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	background: #F6F6F6;
	border-radius: 100px;
}

.cases__tab-btn {
	width: 220px;
	padding: 15px 40px;
	border: none;
	border-radius: 100px;
	background: transparent;
	color: #444444;
	font-size: 18px;
	font-family: var(--mainFont, 'SUIT Variable', sans-serif);
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.36px;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.cases__tab-btn.is-active {
	background: #DA291C;
	color: var(--color-white);
}

.cases__panel {
	display: none;
}

.cases__panel.is-active {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.cases__card {
	display: flex;
	align-items: center;
	gap: 100px;
	padding: 60px;
	background: #FBFBFB;
	border-radius: 30px;
	overflow: hidden;
	outline: 2px solid transparent;
	transition: background 0.25s, outline-color 0.25s;
}

.cases__card:hover {
	background: var(--color-white);
	outline-color: #F44336;
}

.cases__card:hover .cases__card-title {
	color: #DA291C;
}

.cases__card-img {
	flex-shrink: 0;
	width: 500px;
	height: 340px;
	background: #E2E2E2;
	border-radius: 15px;
	overflow: hidden;
	position: relative;
}

.cases__slide-track {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 0.35s ease;
}

.cases__slide-item {
	flex-shrink: 0;
	width: 100%;
	height: 100%;
}

.cases__card-img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	user-select: none;
	-webkit-user-drag: none;
	pointer-events: none;
}

.cases__card-img-dot {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 5px;
}

.cases__card-img-dot span {
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 100px;
	background: rgba(255, 255, 255, 0.6);
	cursor: pointer;
	transition: width 0.2s, background 0.2s;
}

.cases__card-img-dot span.is-active {
	width: 16px;
	background: #DA291C;
}

.cases__card-body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.cases__card-title-wrap {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.cases__card-title-inner {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.cases__card-category {
	color: var(--color-gray);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.36px;
}

.cases__card-title {
	margin: 0;
	color: var(--color-black);
	font-size: 32px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.64px;
	transition: color 0.25s;
}

.cases__card-divider {
	border: none;
	border-top: 1px solid #CCCCCC;
	margin: 0;
}

.cases__card-desc {
	margin: 0;
	color: #444444;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.7;
	letter-spacing: -0.36px;
}

.cases__card-recommend {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.cases__card-recommend-label {
	color: var(--color-black);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -0.40px;
}

.cases__card-tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.cases__card-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
	background: var(--color-white);
	border: 1px solid #DDDDDD;
	border-radius: 100px;
	color: #444444;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.3;
	letter-spacing: -0.32px;
}

/* ===== Section: Cases — Auto (자동차 포인트 인터랙션) ===== */
.auto-viewer {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	width: 100%;
	max-width: 1155px;
	margin: 0 auto;
}

.auto-viewer__stage-wrap {
	position: relative;
	width: 100%;
}

.auto-viewer__stage {
	position: relative;
	width: 100%;
	aspect-ratio: 1155 / 770;
	background: #F0F0F0;
	border-radius: 30px;
	overflow: hidden;
}

.auto-viewer__shadow {
	position: absolute;
	left: 15.93%;
	top: 34.94%;
	width: 73.59%;
	height: 47.53%;
	background: rgba(68, 68, 68, 0.60);
	filter: blur(30px);
	pointer-events: none;
}

.auto-viewer__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: fill;
	display: block;
	pointer-events: none;
	user-select: none;
}
.auto-viewer__overlay {
	position: absolute;
	inset: 0;
	background: var(--color-white);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	z-index: 2;
}
.auto-viewer__overlay.is-visible {
	opacity: 1;
}

/* ── 포인트 ── */
.auto-viewer__points {
	position: absolute;
	inset: 0;
}
.auto-viewer__points.is-points-in .auto-point {
	animation: pointFadeIn 0.35s ease both;
}
.auto-viewer__points.is-points-in .auto-point:nth-child(1)  { animation-delay: 0.00s; }
.auto-viewer__points.is-points-in .auto-point:nth-child(2)  { animation-delay: 0.04s; }
.auto-viewer__points.is-points-in .auto-point:nth-child(3)  { animation-delay: 0.08s; }
.auto-viewer__points.is-points-in .auto-point:nth-child(4)  { animation-delay: 0.12s; }
.auto-viewer__points.is-points-in .auto-point:nth-child(5)  { animation-delay: 0.16s; }
.auto-viewer__points.is-points-in .auto-point:nth-child(6)  { animation-delay: 0.20s; }
.auto-viewer__points.is-points-in .auto-point:nth-child(7)  { animation-delay: 0.24s; }
.auto-viewer__points.is-points-in .auto-point:nth-child(8)  { animation-delay: 0.28s; }
.auto-viewer__points.is-points-in .auto-point:nth-child(9)  { animation-delay: 0.32s; }
.auto-viewer__points.is-points-in .auto-point:nth-child(10) { animation-delay: 0.36s; }
.auto-viewer__points.is-points-in .auto-point:nth-child(11) { animation-delay: 0.40s; }
.auto-viewer__points.is-points-in .auto-point:nth-child(12) { animation-delay: 0.44s; }
.auto-viewer__points.is-points-in .auto-point:nth-child(13) { animation-delay: 0.48s; }
.auto-viewer__points.is-points-in .auto-point:nth-child(14) { animation-delay: 0.52s; }
.auto-viewer__points.is-points-in .auto-point:nth-child(15) { animation-delay: 0.56s; }
.auto-viewer__points.is-points-in .auto-point:nth-child(16) { animation-delay: 0.60s; }
@keyframes pointFadeIn {
	from { opacity: 0; transform: scale(0.5); }
	to   { opacity: 1; transform: scale(1); }
}

.auto-point {
	position: absolute;
	width: 50px;
	height: 50px;
	margin-left: -25px;
	margin-top: -25px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
}

/* 퍼지는 애니메이션 링 */
.auto-point::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 9999px;
	background: rgba(218, 41, 28, 0.25);
	animation: auto-pulse 1.8s ease-out infinite;
}

/* 빨간 중심 점 */
.auto-point::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 12px;
	transform: translate(-50%, -50%);
	background: #DA291C;
	border-radius: 9999px;
	z-index: 1;
	transition: transform 0.2s, box-shadow 0.2s;
}


/* 활성 시 — 빨간 테두리, 안쪽 흰 점 */
.auto-point.is-active::before {
	background: var(--color-white);
	box-shadow: 0 0 0 3px #DA291C;
}

.auto-point.is-active::after {
	animation: none;
	background: rgba(218, 41, 28, 0.35);
}

@keyframes auto-pulse {
	0%   { opacity: 0.8; transform: scale(0.4); }
	100% { opacity: 0;   transform: scale(1.6); }
}

/* ── 포인트-카드 연결 대시 선 ── */
.auto-point-line {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	overflow: visible;
}

/* ── 탭 ── */
.auto-viewer__tab-wrap {
	display: flex;
	justify-content: center;
	position: absolute;
	bottom: 28px;
	left: 0;
	right: 0;
	z-index: 2;
	pointer-events: none;
}

.auto-viewer__tab {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	background: var(--color-white);
	border-radius: 100px;
	outline: 1px solid #DDDDDD;
	pointer-events: auto;
}

.auto-tab-btn {
	padding: 15px 60px;
	border: none;
	border-radius: 100px;
	background: transparent;
	color: #444444;
	font-size: 18px;
	font-family: var(--mainFont, 'SUIT Variable', sans-serif);
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.36px;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.auto-tab-btn.is-active {
	background: #DA291C;
	color: var(--color-white);
}

/* ── 안내 문구 ── */
.auto-viewer__note {
	align-self: stretch;
	max-width: 1155px;
	width: 100%;
	margin: 20px auto 0;
	color: var(--color-gray);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -0.36px;
}

/* ── 정보 카드 ── */
.auto-card {
	position: absolute;
	width: 36%;
	padding: 30px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 20px;
	outline: 1px solid #DDDDDD;
	outline-offset: -1px;
	backdrop-filter: blur(5px);
	display: flex;
	flex-direction: column;
	gap: 30px;
	z-index: 10;
	animation: auto-card-in 0.2s ease;
}

@keyframes auto-card-in {
	from { opacity: 0; transform: translateY(-6px); }
	to   { opacity: 1; transform: translateY(0); }
}

.auto-card[hidden] { display: none; }

.auto-card__img-wrap {
	width: 100%;
	height: 200px;
	background: var(--color-white);
	border-radius: 10px;
	overflow: visible;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.auto-card__swiper {
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 10px;
}

.auto-card__swiper .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
}

.auto-card__img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.auto-card__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 34px;
	height: 34px;
	border-radius: 100px;
	border: 0.5px solid var(--color-gray);
	background: transparent;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	z-index: 1;
}

.auto-card__arrow--prev { left: 10px; }
.auto-card__arrow--next { right: 10px; }

.auto-card__dots {
	position: absolute;
	bottom: 12px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 5px;
	z-index: 99;
}

.auto-card__dot {
	width: 8px;
	height: 8px;
	border-radius: 100px;
	background: var(--color-white);
}

.auto-card__dot.is-active {
	width: 16px;
	background: #DA291C;
}

.auto-card__txt {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.auto-card__title {
	margin: 0;
	color: #DA291C;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -0.44px;
	font-family: 'Lexend', var(--mainFont, 'SUIT Variable', sans-serif);
}

.auto-card__sub {
	margin: 0;
	color: var(--color-black);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.36px;
}

.auto-card__bar {
	width: 30px;
	height: 3px;
	background: #DA291C;
	flex-shrink: 0;
	margin:10px 0;
}

.auto-card__desc {
	margin: 0;
	color: var(--color-black);
	font-size: 17px;
	font-weight: 300;
	line-height: 1.7;
	letter-spacing: -0.034em;
	max-width: 349px;
}

.auto-card__recommend {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.auto-card__recommend-label {
	margin: 0;
	color: var(--color-black);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.30px;
}

.auto-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.auto-card__tag {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	background: var(--color-white);
	border: 1px solid #DDDDDD;
	border-radius: 100px;
	color: #444444;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: -0.26px;
}

/* ── 포인트 숫자 (PC에서는 숨김, 모바일에서 표시) ── */
.auto-point__num {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 11px;
	font-weight: 700;
	color: var(--color-white);
	line-height: 1;
	letter-spacing: -0.22px;
	z-index: 2;
	pointer-events: none;
}

/* ── 모바일 카드 나열 레이아웃 ── */
.auto-mobile-list {
	display: flex;
	flex-direction: column;
	gap: 40px;
	width: 100%;
	margin-top: 30px;
}

.auto-mobile-list[hidden] { display: none; }

.auto-mobile-list__group[hidden] { display: none; }

.auto-mobile-list__group {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.auto-mobile-list__group-title {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	color: var(--color-black);
	letter-spacing: -0.36px;
	padding-bottom: 12px;
	border-bottom: 2px solid #DA291C;
}

.auto-mobile-list__cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.auto-mobile-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 20px;
	background: var(--color-white);
	border-radius: 16px;
	outline: 1px solid #DDDDDD;
	outline-offset: -1px;
	min-width: 0;
}

.auto-mobile-card__num {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 9999px;
	background: #DA291C;
	color: var(--color-white);
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.26px;
}

/* 슬라이드용 외부 래퍼: 화살표 기준점 */
.auto-mobile-card__slide-outer {
	position: relative;
	width: 100%;
	flex-shrink: 0;
	overflow: hidden;
}

.auto-mobile-card__img-wrap {
	width: 100%;
	height: 120px;
	background: #F0F0F0;
	border-radius: 10px;
	overflow: hidden;
	flex-shrink: 0;
}

.auto-mobile-card__swiper {
	width: 100%;
	height: 100%;
}

/* swiper-wrapper가 Swiper loop 초기화 시 부모를 늘리지 않도록 고정 */
.auto-mobile-card__swiper .swiper-wrapper {
	width: 100%;
}

.auto-mobile-card__swiper .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
}

.auto-mobile-card__img-wrap--single {
	background: #F0F0F0;
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.auto-mobile-card__img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
}

.auto-mobile-card__arrow {
	position: absolute;
	top: 60px;
	transform: translateY(-50%);
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid #DDDDDD;
	border-radius: 9999px;
	cursor: pointer;
	padding: 0;
}

.auto-mobile-card__arrow--prev { left: 6px; }
.auto-mobile-card__arrow--next { right: 6px; }

.auto-mobile-card__title {
	margin: 0;
	color: #DA291C;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -0.28px;
	font-family: 'Lexend', var(--mainFont, 'SUIT Variable', sans-serif);
}

.auto-mobile-card__sub {
	margin: 0;
	color: var(--color-black);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.28px;
}

.auto-mobile-card__desc {
	margin: 0;
	color: #444444;
	font-size: 13px;
	font-weight: 300;
	line-height: 1.6;
	letter-spacing: -0.26px;
}

.auto-mobile-card__recommend {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.auto-mobile-card__recommend-label {
	margin: 0;
	color: var(--color-black);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.26px;
}

.auto-mobile-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.auto-mobile-card__tag {
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	background: var(--color-white);
	border: 1px solid #DDDDDD;
	border-radius: 100px;
	color: #444444;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: -0.24px;
}

.privacy .sTxt h3 {
	margin: 22px 0 12px;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: -0.34px;
	color: var(--color-black);
}

.privacy .sTxt h3:first-child {
	margin-top: 0;
}

.privacy .sTxt p {
	margin-top: 12px;
	color: #444444;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.65;
	letter-spacing: -0.36px;
}

.privacy .sTxt dl {
	margin: 12px 0 0;
}

.privacy .sTxt dt {
	margin-top: 14px;
	font-weight: 700;
	color: var(--color-black);
	font-size: 17px;
	letter-spacing: -0.34px;
}

.privacy .sTxt dt:first-child {
	margin-top: 0;
}

.privacy .sTxt dd {
	margin: 6px 0 0;
	color: #444444;
	font-size: 17px;
	font-weight: 300;
	line-height: 1.6;
	letter-spacing: -0.34px;
}

.privacy h2:not(.privacy__title) {
	margin: 40px 0 24px;
	color: var(--color-text-strong);
	font-size: 18px;
	font-weight: bold;
	line-height: 1.3;
	letter-spacing: -0.36px;
	text-align: left;
}

/* ===== Sub quick menu: chat + scroll (same tokens as main .qm-btns; breakpoints shared with media.css) ===== */
.qm-btns {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	position: fixed;
	z-index: 90;
	right: 20px;
	bottom: 40px;
}

.qm-chat {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	border: none;
	border-radius: 9999px;
	background: var(--color-gnb-sub-bg);
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.qm-chat:hover {
	background: #F44336;
}

.qm-chat img {
	display: block;
}

.qm-scroll {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	border: none;
	border-radius: 9999px;
	background: #0A0A0A;
	color: var(--color-white);
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.qm-scroll:hover {
	background: #2B2B2B;
}

.qm-scroll__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease;
}

.qm-scroll--up .qm-scroll__icon {
	transform: rotate(180deg);
}

.qm-scroll__icon svg {
	display: block;
	width: 24px;
	height: 24px;
}

.qm-chat:focus-visible,
.qm-scroll:focus-visible {
	outline: 2px solid var(--color-white);
	outline-offset: 4px;
}

.privacy__inner .br-mo {
	display: none;
}

/* ===== Section: Inline Cases (인라인 산업용) ===== */
.inline-cases {
	padding: 100px 0 160px;
}

.inline-cases__title {
	margin: 0 0 60px;
	color: var(--color-black);
	font-size: 52px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -1.04px;
	text-align: center;
}

.inline-cases__list {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

/* ── 아이템 ── */
.inline-item {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.inline-item__tit {
	display: flex;
	align-items: center;
	gap: 10px;
}

.inline-item__num {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background: #DA291C;
	color: var(--color-white);
	font-family: var(--engFont, 'Lexend', sans-serif);
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
}

.inline-item__name {
	margin: 0;
	color: var(--color-black);
	font-family: var(--engFont, 'Lexend', sans-serif);
	font-size: 26px;
	font-weight: 500;
	line-height: 1.3;
}

/* ── 박스 ── */
.inline-item__box {
	padding: 30px;
	border-radius: 30px;
	outline: 1px solid #DDDDDD;
	outline-offset: -1px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* ── U자형 상단 선 + 라벨 ── */
.inline-item__arc {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.inline-item__arc-line {
	width: min(1000px, 100%);
	height: 62px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-top: 1px solid #F44336;
	border-left: 1px solid #F44336;
	border-right: 1px solid #F44336;
}

.inline-item__label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 20px 30px;
	background: #FFF5F4;
	border-radius: 100px;
	outline: 1px solid #F44336;
	outline-offset: -1px;
	color: var(--color-black);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
	text-align: center;
}

/* ── 스테이지(제품 + 스텝 이미지) ── */
.inline-item__stage {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 100px;
	width: 100%;
	padding: 30px;
	background: #FBFBFB;
	border-radius: 20px;
	margin-top: 0;
}

/* ── 제품 영역 ── */
.inline-item__product {
	position: relative;
	flex-shrink: 0;
	width: 260px;
	height: 260px;
	overflow: hidden;
}

.inline-item__product img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: bottom center;
}

.inline-item__product-info {
	position: absolute;
	top: 20px;
	left: 20px;
	display: flex;
	flex-direction: column;
}

.inline-item__product-name {
	margin: 0;
	color: var(--color-black);
	font-family: var(--engFont, 'Lexend', sans-serif);
	font-size: 26px;
	font-weight: 500;
	line-height: 1.3;
}

.inline-item__product-name span {
	color: #FB7543;
}

.inline-item__product-type {
	margin: 0;
	color: var(--color-black);
	font-family: var(--engFont, 'Lexend', sans-serif);
	font-size: 20px;
	font-weight: 300;
	line-height: 1.3;
}

/* ── 스텝 이미지들 ── */
.inline-item__steps {
	display: flex;
	align-items: center;
	gap: 30px;
}

.inline-item__step {
	flex-shrink: 0;
	width: 220px;
	height: 220px;
	border-radius: 999px;
	overflow: hidden;
	background: var(--color-white);
}

.inline-item__step img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.inline-item__step--dark {
	background: #0C0C0C;
}

.inline-item__step--border {
	outline: 1px solid #DDDDDD;
	outline-offset: -1px;
}

.inline-item__step--outlined {
	outline: 1px solid var(--color-white);
	outline-offset: -1px;
}

/* ── 화살표 ── */
.inline-item__arrow {
	flex-shrink: 0;
	width: 20px;
	height: 30px;
	background: #FFD2CF;
	border: 1px solid #F44336;
	clip-path: polygon(0 0, 60% 0, 100% 50%, 60% 100%, 0 100%, 40% 50%);
}

/* ── FX17: 마지막 두 이미지 겹침 쌍 ── */
.inline-item__steps-pair {
	display: flex;
	align-items: center;
}

.inline-item__steps-pair .inline-item__step + .inline-item__step {
	margin-left: -20px;
}

/* ── 03: 전폭 이미지 ── */
.inline-item__box--img {
	padding: 30px;
}

.inline-item__full-img {
	width: 100%;
	background: #FBFBFB;
	border-radius: 20px;
	overflow: hidden;
	padding: 30px;
	box-sizing: border-box;
}

.inline-item__full-img img {
	display: block;
	width: 100%;
	height: auto;
}

.root_daum_roughmap .border1,
.root_daum_roughmap .border2,
.root_daum_roughmap .border3,
.root_daum_roughmap .border4,
.root_daum_roughmap .cont{display: none !important;}

.location__map .root_daum_roughmap {
	width: 100% !important;
	max-width: 100% !important;
	height: 100% !important;
}

.location__map .root_daum_roughmap .wrap_map,
.location__map .root_daum_roughmap .wrap_controllers,
.location__map .root_daum_roughmap iframe {
	width: 100% !important;
	height: 100% !important;
}

/* =====================================================
   제품소개 — 제품 목록 (.prod-list, .pcard, .prod-pagination)
   ===================================================== */

.prod-list {
	padding: 100px 0 140px;
}

.prod-list__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
}

.prod-list__head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	margin-bottom: 60px;
}

.prod-list__title {
	color: var(--color-black);
	font-size: 52px;
	font-family: 'SUIT', sans-serif;
	font-weight: 700;
	line-height: 1.3;
}

.prod-list__tab {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	background: #F6F6F6;
	border-radius: 100px;
}

.prod-list__tab-btn {
	width: 300px;
	padding: 15px 60px;
	border: none;
	border-radius: 100px;
	background: transparent;
	color: #444444;
	font-size: 18px;
	font-family: 'SUIT', sans-serif;
	font-weight: 700;
	line-height: 1.3;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.prod-list__tab-btn.is-active {
	background: #DA291C;
	color: var(--color-white);
}

.prod-list__panel {
	display: none;
	width: 100%;
	flex-direction: column;
	align-items: center;
	gap: 60px;
}

.prod-list__panel.is-active {
	display: flex;
}

.prod-list__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	width: 100%;
}

.pcard {
	display: flex;
	flex-direction: column;
	flex: none;
	width: calc((100% - 60px) / 4);
	background: #FBFBFB;
	border-radius: 30px;
	outline: 1px solid #DDDDDD;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.2s, outline-color 0.2s;
}

.pcard:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	outline-color: #DA291C;
}

.pcard:hover .pcard__name {
	color: #DA291C;
}

.pcard__img {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 305px;
	padding: 30px;
	box-sizing: border-box;
}

.pcard__img img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain !important;
}

.pcard__img--placeholder img {
	opacity: 0.25;
	max-width: 200px;
}

.pcard__body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 0 30px 30px;
	min-height: 121px;
}

.pcard__name {
	color: var(--color-black);
	font-size: 22px;
	font-family: 'Lexend', sans-serif;
	font-weight: 600;
	line-height: 1.3;
	transition: color 0.2s;
	letter-spacing: -0.44px;
}

.pcard__features {
	display: flex;
	flex-direction: column;
	gap: 5px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.pcard__features li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: #444444;
	font-size: 16px;
	font-family: 'SUIT', sans-serif;
	font-weight: 300;
	line-height: 1.3;
	letter-spacing: -0.32px;
}

.pcard__features li::before {
	content: '';
	flex-shrink: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #444444;
	margin-top: calc((1.3em - 5px) / 2);
}

.prod-pagination {
	display: flex;
	align-items: center;
	gap: 20px;
}

.prod-pagination__list {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.prod-pagination__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 50%;
	background: transparent;
	color: #444444;
	font-size: 16px;
	font-family: 'SUIT', sans-serif;
	font-weight: 400;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.prod-pagination__btn:hover {
	background: #F6F6F6;
}

.prod-pagination__btn.is-active {
	background: #DA291C;
	color: var(--color-white);
	font-weight: 700;
}

.prod-pagination__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 50%;
	outline: 1px solid #DDDDDD;
	background: transparent;
	color: #444444;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.prod-pagination__arrow:hover:not(:disabled) {
	background: #F6F6F6;
}

.prod-pagination__arrow:disabled {
	color: #CCCCCC;
	cursor: default;
}

/* =====================================================
   검색결과 페이지 (.search-result)
   ===================================================== */

.search-result {
	padding: 100px 0 140px;
}

.search-result__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
}

/* 검색바 */
.search-result__bar {
	width: 100%;
	max-width: 594px;
	margin-bottom: 60px;
	display: flex;
	justify-content: center;
}

.search-result__form {
	display: flex;
	align-items: center;
	gap: 10px;
}

.search-result__input {
	width: 520px;
	height: 64px;
	flex-shrink: 0;
	border: 1px solid #DDDDDD;
	border-radius: 100px;
	background: var(--color-bg-light);
	padding: 0 28px;
	box-sizing: border-box;
	font-size: 18px;
	font-family: 'SUIT', sans-serif;
	font-weight: 400;
	color: var(--color-black);
	outline: none;
}

.search-result__input::placeholder {
	color: var(--color-gray-pale);
}

.search-result__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	border: none;
	border-radius: 100px;
	background: var(--color-text-dark);
	cursor: pointer;
	transition: background 0.2s;
}

.search-result__submit:hover {
	background: #444444;
}

/* 결과 문구 */
.search-result__count {
	margin: 0 0 60px;
	color: var(--color-black);
	font-size: 34px;
	font-family: 'SUIT', sans-serif;
	font-weight: 500;
	line-height: 1.3;
	text-align: center;
}

.search-result__keyword {
	font-weight: 600;
}

.search-result__num {
	color: #DA291C;
	font-weight: 600;
}

/* 결과 그리드 — pcard 재사용 */
.search-result__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	width: 100%;
	margin-bottom: 60px;
}

/* pcard__sub — 제품명 옆 카테고리 텍스트 */
.pcard__sub {
	color: #666666;
	font-size: 16px;
	font-family: 'SUIT', sans-serif;
	font-weight: 300;
	line-height: 1.3;
}

#sv.sv07 .sv__crumb-item:nth-child(4),
#sv.sv07 .sv__crumb-item:nth-child(5) {
	display: none;
}

/* =====================================================
   제품소개 — 제품 상세 뷰 (.prod-view)
   ===================================================== */

.prod-view {
	padding: 100px 0 140px;
}

.prod-view__inner {
	display: flex;
	flex-direction: column;
	gap: 100px;
}

/* ── 상단: 갤러리 + 제품 정보 ── */
.prod-view__top {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 20px;
}

/* 갤러리 */
.prod-view__gallery {
	position: relative;
	display: flex;
	flex-direction: column;
	flex: 0 0 820px;
	width: 820px;
	min-height: 572px;
	border-radius: 30px;
	outline: 1px solid #DDDDDD;
	outline-offset: -1px;
	overflow: hidden;
	background: var(--color-white);
}

.prod-view__slides {
	display: flex;
	flex-direction: column;
	width: 100%;
	flex: 1;
}

.prod-view__slide {
	display: none;
	align-items: center;
	justify-content: center;
	width: 100%;
	flex: 1;
	box-sizing: border-box;
}

.prod-view__slide.is-active {
	display: flex;
}

.prod-view__slide img {
	width: 100%;
    max-width: 500px;
    object-fit: contain;
    max-height: 500px;
}

.prod-view__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border: none;
	background: transparent;
	cursor: pointer;
	padding: 0;
}

.prod-view__arrow--prev { left: 20px; }
.prod-view__arrow--next { right: 20px; }

.prod-view__dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 5px;
}

.prod-view__dot {
	width: 8px;
	height: 8px;
	border-radius: 100px;
	background: #DDDDDD;
	cursor: pointer;
	transition: width 0.2s, background 0.2s;
}

.prod-view__dot.is-active {
	width: 16px;
	background: #DA291C;
}

/* 제품 정보 패널 */
.prod-view__info {
	flex: 0 0 810px;
	width: 810px;
	min-height: 572px;
	background: #FBFBFB;
	border-radius: 30px;
	box-sizing: border-box;
}

.prod-view__info-inner {
	display: flex;
	flex-direction: column;
	gap: 30px;
	padding: 60px;
}

.prod-view__name-group {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.prod-view__category {
	color: var(--color-black);
	font-size: 20px;
	font-family: 'SUIT', sans-serif;
	font-weight: 300;
	line-height: 1.3;
	margin: 0;
	letter-spacing: -0.4px;
}

.prod-view__name {
	color: #F44336;
	font-size: 36px;
	font-family: 'Lexend', sans-serif;
	font-weight: 600;
	line-height: 1.3;
	margin: 0;
	letter-spacing: -0.72px;
}

.prod-view__divider {
	border: none;
	border-top: 1px solid #CCCCCC;
	margin: 0;
}

.prod-view__meta {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.prod-view__meta-row {
	display: flex;
	flex-direction: column;
	gap: 13px;
}

.prod-view__meta-label {
	display: flex;
	align-items: flex-start;
	gap: 7px;
	color: var(--color-black);
	font-size: 18px;
	font-family: 'SUIT', sans-serif;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -0.36px;
}

.prod-view__meta-label svg {
	margin-top: calc((1.3em - 16px) / 2);
}

.prod-view__meta-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	background: var(--color-black);
	border-radius: 100px;
}

.prod-view__meta-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0;
	padding: 0 23px;
	list-style: none;
}

.prod-view__meta-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #444444;
	font-size: 18px;
	font-family: 'SUIT', sans-serif;
	font-weight: 300;
	line-height: 1.3;
	letter-spacing: -0.36px;
}

.prod-view__meta-list li::before {
	content: '';
	flex-shrink: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #444444;
}

/* 버튼 그룹 */
.prod-view__btns {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: auto;
}

.prod-view__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 165px;
	height: 70px;
	background: var(--color-white);
	border-radius: 100px;
	outline: 1px solid #DA291C;
	outline-offset: -1px;
	color: var(--color-black);
	font-size: 18px;
	font-family: 'SUIT', sans-serif;
	font-weight: 500;
	line-height: 1.3;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}

.prod-view__btn:hover {
	background: #DA291C;
	color: var(--color-white);
}

/* ── 본문 섹션 ── */
.prod-view__body {
	display: flex;
	flex-direction: column;
	gap: 80px;
}

.prod-view__section {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 196px;
}

.prod-view__section-head {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	gap: 10px;
}

.prod-view__section-num {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 100px;
	background: #DA291C;
	color: var(--color-white);
	font-size: 18px;
	font-family: 'Lexend', sans-serif;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.36px;
}

.prod-view__section-title {
	margin: 0;
	color: var(--color-black);
	font-size: 30px;
	font-family: 'SUIT', sans-serif;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.6px;
}

/* section-content: 배경 박스 */
.prod-view__section-content {
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 0;
	background: #FBFBFB;
	border-radius: 20px;
	padding: 30px;
	box-sizing: border-box;
}

.prod-view__section-content > p {
	margin: 0;
	color: #444444;
	font-size: 20px;
	font-weight: 300;
	line-height: 1.3;
	letter-spacing: -0.36px;
	font-family: Pretendard;
}

/* 제품특징 아이템 */
.prod-view__feature {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.prod-view__feature + .prod-view__feature {
	margin-top: 60px;
}

.prod-view__feature-title {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	height: 42px;
	margin: 0;
	color: var(--color-text-dark);
	font-size: 22px;
	font-family: 'SUIT', sans-serif;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -0.44px;
}

.prod-view__feature-title::before {
	content: '';
	flex-shrink: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #444444;
	margin-top: calc((1.3em - 5px) / 2);
}

.prod-view__feature > p {
	margin: 0;
	padding-left: 15px;
	color: #444444;
	font-size: 18px;
	font-family: 'SUIT', sans-serif;
	font-weight: 300;
	line-height: 1.7;
	letter-spacing: -0.36px;
}

.prod-view__feature-img {
	padding-left: 15px;
}

.prod-view__feature-img img {
	display: block;
	width: auto;
	max-width: 100%;
	height: 360px;
	border-radius: 5px;
	outline: 1px solid #DDDDDD;
	outline-offset: -1px;
	object-fit: cover;
}

/* 시스템도 */
.prod-view__system-img {
	width: 100%;
	border-radius: 10px;
	outline: 1px solid #DDDDDD;
	outline-offset: -1px;
	overflow: hidden;
}

.prod-view__system-img img {
	display: block;
	width: 100%;
	height: auto;
}

/* 주요사양 — 배경박스 없음, 테이블 직접 노출 */
.prod-view__section-content--spec {
	background: none;
	padding: 0;
	border-radius: 0;
}

/* 주요사양 테이블 */
.prod-view__spec-table {
	width: 100%;
	border-collapse: collapse;
	border-radius: 20px;
	overflow: hidden;
	outline: 1px solid #DDDDDD;
	outline-offset: -1px;
}

.prod-view__spec-table tr {
	display: flex;
	align-items: stretch;
}

.prod-view__spec-table th,
.prod-view__spec-table td {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	font-size: 18px;
	font-family: 'SUIT', sans-serif;
	line-height: 1.3;
	border-top: 1px solid #DDDDDD;
	text-align: center;
	letter-spacing: -0.36px;
}

.prod-view__spec-table th {
	width: 300px;
	flex-shrink: 0;
	background: #F2F2F3;
	color: var(--color-text-dark);
	font-weight: 500;
	letter-spacing: -0.36px;
}

.prod-view__spec-table td {
	flex: 1;
	color: #444444;
	font-weight: 300;
	border-left: 1px solid #DDDDDD;
}

.prod-view__spec-table tr:first-child th,
.prod-view__spec-table tr:first-child td {
	border-top: none;
}

.prod-view__spec-caution {
	margin: 0;
	color: var(--color-gray);
	font-size: 16px;
	font-family: 'SUIT', sans-serif;
	font-weight: 300;
	line-height: 1.6;
	letter-spacing: -0.32px;
}

/* ── 관련 제품 ── */
.prod-view__related {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 60px;
	overflow: hidden;
	padding: 10px 4px;
	margin: -10px -4px;
	width: calc(100% + 8px);
	box-sizing: border-box;
}

.prod-view__related-slider {
	width: 100%;
	overflow: visible !important;
}

.prod-view__related-grid {
	display: flex;
}

.prod-view__related-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.prod-view__related-pagination {
	display: flex;
	align-items: center;
	gap: 6px;
}

.prod-view__related-pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: #C4C4C4;
	opacity: 1;
	margin: 0;
	flex-shrink: 0;
	transition: width 0.2s, background 0.2s;
}

.prod-view__related-pagination .swiper-pagination-bullet-active {
	background: #DA291C;
	width: 24px;
	border-radius: 4px;
}

.prod-view__related-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid #DDDDDD;
	border-radius: 50%;
	background: #fff;
	color: #444;
	cursor: pointer;
	transition: border-color 0.2s, color 0.2s;
	flex-shrink: 0;
}

.prod-view__related-btn:hover {
	border-color: #DA291C;
	color: #DA291C;
}

.prod-view__related-btn.swiper-button-disabled {
	opacity: 0.35;
	cursor: default;
	pointer-events: none;
}

.prod-view__back-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 220px;
	height: 70px;
	background: #DA291C;
	border-radius: 100px;
	color: var(--color-white) !important;
	font-size: 20px;
	font-family: 'SUIT', sans-serif;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.40px;
	text-decoration: none;
	transition: background 0.2s;
}

.prod-view__back-btn:hover {
	background: #B71C1C;
}

.prod-view__section-content .prod-view__caution{
	color: #444;
	font-family: Pretendard;
	font-size: 18px;
	font-style: normal;
	font-weight: 300;
	line-height: 130%; /* 23.4px */
	letter-spacing: -0.36px;
	margin-top: 20px;
}

.line-divider{width: 100%; height: 1px; background: #DDDDDD; margin-top: -20px; margin-bottom: -20px;}

/* =====================================================
   다운로드 — 매뉴얼 (.manual)
   ===================================================== */

.manual {
	padding: 100px 0 140px;
}

.manual__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 60px;
}

/* 제목 + 검색바 묶음 */
.manual__head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 60px;
	position: relative; /* popup */
	z-index: 10;
}

.manual__title {
	margin: 0;
	color: var(--color-black);
	font-size: 52px;
	font-family: 'SUIT', sans-serif;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -1.04px;
	text-align: center;
}

/* 검색 영역 */
.manual__search {
	display: flex;
	align-items: center;
	gap: 10px;
}

/* 카테고리 드롭다운 */
.manual__select-wrap {
	position: relative; /* popup */
	flex-shrink: 0;
}

.manual__select {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 240px;
	height: 64px;
	padding: 0 20px 0 40px;
	background: var(--color-bg-light);
	border: 1px solid #DDDDDD;
	border-radius: 100px;
	color: #444444;
	font-size: 18px;
	font-family: 'SUIT', sans-serif;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -0.36px;
	cursor: pointer;
	box-sizing: border-box;
	outline: none;
}

.manual__select-text {
	flex: 1;
	text-align: left;
}

.manual__select-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	transition: transform 0.2s;
}

.manual__select[aria-expanded="true"] .manual__select-icon {
	transform: rotate(180deg);
}

.manual__dropdown {
	display: none;
	position: absolute; /* popup */
	top: calc(100% + 6px);
	left: 0;
	min-width: 100%;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.12);
	padding: 8px 0;
	z-index: 100;
	list-style: none;
	margin: 0;
}

.manual__dropdown.is-open {
	display: block;
}

.manual__dropdown-item {
	padding: 12px 24px;
	font-size: 16px;
	font-family: 'SUIT', sans-serif;
	font-weight: 400;
	color: #888888;
	cursor: pointer;
	transition: color 0.15s;
}

.manual__dropdown-item:hover {
	color: #444444;
}

.manual__dropdown-item.is-selected {
	color: #1C5FA8;
	font-weight: 600;
}

/* 검색 인풋 + 버튼 */
.manual__input-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
}

.manual__input {
	width: 300px;
	height: 64px;
	padding: 0 28px;
	background: var(--color-bg-light);
	border: 1px solid #DDDDDD;
	border-radius: 100px;
	color: var(--color-black);
	font-size: 18px;
	font-family: 'SUIT', sans-serif;
	font-weight: 400;
	letter-spacing: -0.36px;
	box-sizing: border-box;
	outline: none;
}

.manual__input::placeholder {
	color: var(--color-gray-pale);
}

.manual__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	border: none;
	border-radius: 100px;
	background: var(--color-text-dark);
	cursor: pointer;
	transition: background 0.2s;
}

.manual__submit:hover {
	background: #444444;
}

/* 카드 목록 */
.manual__list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	width: 100%;
}

/* 카드 */
.manual__card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 0 0 calc((100% - 60px) / 4);
	width: calc((100% - 60px) / 4);
	padding: 40px;
	background: var(--color-white);
	border-radius: 20px;
	outline: 1px solid #DDDDDD;
	outline-offset: -1px;
	box-sizing: border-box;
	min-height: 187px;
	text-decoration: none;
	color: inherit;
	transition: all 0.2s;
}

.manual__card:hover {
	outline-color: #DA291C;
	transition: all 0.2s;
}

.manual__card:hover .manual__card-dl svg {
	filter: invert(19%) sepia(87%) saturate(5833%) hue-rotate(354deg) brightness(87%) contrast(92%);
	transition: all 0.2s;
}

.manual__card-top {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.manual__card-category {
	color: #F44336;
	font-size: 18px;
	font-family: 'SUIT', sans-serif;
	font-weight: 300;
	line-height: 1.3;
	letter-spacing: -0.36px;
	margin: 0 0 10px;
}

.manual__card-name {
	color: var(--color-black);
	font-size: 24px;
	font-family: 'Lexend', sans-serif;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -0.48px;
	margin: 0;
}

.manual__card-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
}

.manual__card-type {
	color: #444444;
	font-size: 18px;
	font-family: 'SUIT', sans-serif;
	font-weight: 300;
	line-height: 1.3;
	letter-spacing: -0.36px;
	margin: 0;
}

.manual__card-dl {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	flex-shrink: 0;
}

.manual__card-dl svg {
	display: block;
}

/* =====================================================
   다운로드 — 프로그램 (.program)
   ===================================================== */

.program {
	padding: 100px 0 140px;
}

.program__inner {
	display: flex;
	flex-direction: column;
	gap: 60px;
	align-items: center;
}

.program__head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 60px;
}

.program__title {
	margin: 0;
	color: var(--color-black);
	font-size: 52px;
	font-family: var(--mainFont, 'SUIT Variable', sans-serif);
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -1.04px;
	text-align: center;
}

.program__panel {
	display: none;
	flex-direction: column;
	gap: 60px;
}

.program__panel.is-active {
	display: flex;
}

.program__list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.program__card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 0 0 calc((100% - 60px) / 4);
	width: calc((100% - 60px) / 4);
	height: 223px;
	padding: 40px;
	background: var(--color-white);
	border-radius: 20px;
	outline: 1px solid #DDDDDD;
	outline-offset: -1px;
	box-sizing: border-box;
	text-decoration: none;
	color: var(--color-black) !important;
	transition: outline-color 0.2s;
	overflow: hidden;
}

.program__card:hover {
	outline-color: #DA291C;
}

.program__card:hover .program__card-dl svg path {
	stroke: #DA291C;
	transition: stroke 0.2s;
}

.program__card-name {
	margin: 0;
	color: var(--color-black);
	font-size: 24px;
	font-family: 'Lexend', sans-serif;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -0.48px;
}

.program__card-bottom {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 10px;
}

.program__card-models {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.program__card-models-label {
	margin: 0;
	color: #444444;
	font-size: 18px;
	font-family: var(--mainFont, 'SUIT Variable', sans-serif);
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -0.36px;
}

.program__card-models-text {
	margin: 0;
	color: var(--color-black);
	font-size: 16px;
	font-family: var(--mainFont, 'SUIT Variable', sans-serif);
	font-weight: 300;
	line-height: 1.7;
	letter-spacing: -0.32px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.program__card-dl {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.program__card-dl svg {
	display: block;
}

/* =====================================================
   다운로드 공용 페이지네이션 (.dl-paging)
   ===================================================== */

.dl-paging {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.dl-paging__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid #DDDDDD;
	border-radius: 100px;
	background: transparent;
	cursor: pointer;
	padding: 0;
	flex-shrink: 0;
}

.dl-paging__nums {
	display: flex;
	align-items: center;
	gap: 5px;
}

.dl-paging__num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: none;
	border-radius: 100px;
	background: transparent;
	color: var(--color-gray);
	font-size: 17px;
	font-family: 'Lexend', sans-serif;
	font-weight: 300;
	line-height: 1.3;
	cursor: pointer;
	padding: 0;
}

.dl-paging__num.is-active {
	background: #DA291C;
	color: var(--color-white);
}

/* =====================================================
   공지사항 (.notice)
   ===================================================== */

.notice {
	padding: 80px 0 120px;
}

.notice__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 60px;
}

/* 제목 */
.notice__title {
	font-size: 52px;
	font-family: 'SUIT', sans-serif;
	font-weight: 700;
	line-height: 1.3;
	color: var(--color-black);
	text-align: center;
	width: 100%;
}

/* 전체 건수 + 검색바 한 줄 */
.notice__head {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 30px;
	position: relative; /* popup */
	z-index: 10;
}

.notice__search {
	display: flex;
	align-items: center;
	gap: 10px;
}

/* 전체 건수 */
.notice__count {
	font-size: 18px;
	font-family: 'SUIT', sans-serif;
	font-weight: 500;
	color: #444444;
	display: flex;
	align-items: center;
	gap: 5px;
}

.notice__count-num {
	font-family: 'Lexend', sans-serif;
	font-weight: 500;
	color: #DA291C;
}

/* 테이블 */
.notice__table {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.notice__row {
	display: flex;
	align-items: center;
	width: 100%;
	border-bottom: 1px solid #DDDDDD;
	background: var(--color-white);
}

.notice__row--head {
	background: var(--color-bg-light);
	border-bottom: none;
	border-radius: 20px 20px 0 0;
}

/* 컬럼 공통 */
.notice__col {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 95px;
	padding: 0 20px;
	font-size: 18px;
	font-family: 'SUIT', sans-serif;
	font-weight: 300;
	color: #444444;
}

.notice__row--head .notice__col {
	font-size: 20px;
	font-weight: 500;
	color: var(--color-black);
}

/* 컬럼 너비 */
.notice__col--num    { width: 90px;   flex-shrink: 0; }
.notice__col--title  { flex: 1; min-width: 0; overflow: hidden; justify-content: flex-start; padding: 0 30px; }
.notice__row--head .notice__col--title { justify-content: center; }
.notice__col--writer { width: 200px;  flex-shrink: 0; }
.notice__col--date   { width: 240px;  flex-shrink: 0; font-family: 'Lexend', sans-serif; }
.notice__col--view   { width: 120px;  flex-shrink: 0; font-family: 'Lexend', sans-serif; }

.notice__row--head .notice__col--date,
.notice__row--head .notice__col--view {
	font-family: 'SUIT', sans-serif;
}

/* PC: body wrapper — title col처럼 flex:1로 동작 */
.notice__col--body {
	flex: 1;
	min-width: 0;
	display: contents; /* PC에서는 자식들이 직접 row의 flex 아이템으로 */
}

.notice__meta {
	display: contents; /* PC에서는 writer/date/view가 직접 flex 아이템 */
}

/* 제목 링크 */
.notice__link {
	display: flex;
	align-items: center;
	min-width: 0;
	overflow: hidden;
	gap: 10px;
	text-decoration: none;
	color: inherit;
}

.notice__link-text {
	min-width: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* =====================================================
   공지사항 뷰 (.notice-view)
   ===================================================== */

.notice-view {
	padding: 80px 0 120px;
}

.notice-view__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 60px;
}

/* 제목 */
.notice-view__title {
	font-size: 52px;
	font-family: 'SUIT', sans-serif;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -1.04px;
	color: var(--color-black);
	text-align: center;
	width: 100%;
	margin: 0;
}

/* 게시글 헤더 */
.notice-view__head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 50px;
	width: 100%;
}

.notice-view__tit-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	width: 1229px;
	max-width: 100%;
}

.notice-view__post-title {
	margin: 0;
	text-align: center;
	color: var(--color-black);
	font-size: 34px;
	font-family: 'SUIT', sans-serif;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -0.68px;
}

.notice-view__info {
	display: flex;
	align-items: center;
	gap: 40px;
}

.notice-view__info-item {
	color: var(--color-gray);
	font-size: 18px;
	font-family: 'SUIT', sans-serif;
	font-weight: 300;
	line-height: 1.3;
	letter-spacing: -0.36px;
}

.notice-view__info-item--en {
	font-family: 'Lexend', sans-serif;
}

/* 구분선 */
.notice-view__divider {
	width: 100%;
	height: 1px;
	background: var(--color-text-dark);
}

/* 본문 */
.notice-view__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 80px;
	width: 100%;
}

.notice-view__content {
	display: flex;
	flex-direction: column;
	gap: 63px;
	width: 1000px;
	max-width: 100%;
}

.notice-view__img-wrap {
	width: 100%;
	height: 620px;
	border-radius: 20px;
	overflow: hidden;
	background: #f0f0f0;
}

.notice-view__img-wrap img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.notice-view__text {
	margin: 0;
	color: #444444;
	font-size: 18px;
	font-family: 'SUIT', sans-serif;
	font-weight: 200;
	line-height: 1.7;
	letter-spacing: -0.36px;
}

/* 첨부파일 */
.notice-view__file {
	display: flex;
	align-items: flex-start;
	gap: 60px;
	width: 1000px;
	max-width: 100%;
	padding: 30px 60px;
	background: var(--color-bg-light);
	border-radius: 20px;
	box-sizing: border-box;
}

.notice-view__file-tit {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.notice-view__file-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
}

.notice-view__file-label {
	color: var(--color-black);
	font-size: 18px;
	font-family: 'SUIT', sans-serif;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: -0.36px;
}

.notice-view__file-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.notice-view__file-link {
	color: #444444 !important;
	font-size: 18px;
	font-family: 'Lexend', sans-serif;
	font-weight: 300;
	line-height: 1.3;
	letter-spacing: -0.36px;
	text-decoration: none;
}

.notice-view__file-link:hover {
	text-decoration: underline;
}

/* 이전/다음글 네비게이션 */
.notice-view__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.notice-view__nav-item {
	display: flex;
	align-items: center;
	gap: 40px;
	flex: 1;
	min-width: 0;
	text-decoration: none;
}

.notice-view__nav-item--next {
	justify-content: flex-end;
}

.notice-view__nav-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 12px;
	height: 22px;
}

.notice-view__nav-txt {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.notice-view__nav-txt--right {
	align-items: flex-end;
	gap: 10px;
}

.notice-view__nav-label {
	display: block;
	color: var(--color-gray);
	font-size: 16px;
	font-family: 'SUIT', sans-serif;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -0.32px;
}

.notice-view__nav-title {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	line-clamp: 1;
	overflow: hidden;
	color: var(--color-black);
	font-size: 18px;
	font-family: 'SUIT', sans-serif;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: -0.36px;
}

/* 목록으로 버튼 */
.notice-view__list-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 80px;
	padding: 0 80px;
	background: #DA291C;
	border-radius: 300px;
	color: var(--color-white) !important;
	font-size: 20px;
	font-family: 'SUIT', sans-serif;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -0.40px;
	text-decoration: none;
	flex-shrink: 0;
	white-space: nowrap;
	transition: background 0.2s;
}

.notice-view__list-btn:hover {
	background: #B71C1C;
}

/* ===================================================
   온라인 문의 (inquiry)
=================================================== */
.inquiry {
	padding: 80px 0 120px;
}

.inquiry__inner {
}

.inquiry__title {
	text-align: center;
	color: var(--color-black);
	font-size: 52px;
	font-family: 'SUIT', sans-serif;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -1.04px;
	margin-bottom: 40px;
}

.inquiry__form-wrap {
}

/* 폼 헤더 */
.inquiry__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--color-black);
	margin-bottom: 30px;
}

.inquiry__head-tit {
	color: var(--color-black);
	font-size: 30px;
	font-family: 'SUIT', sans-serif;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.6px;
}

.inquiry__required-note {
	color: #444444;
	font-size: 18px;
	font-family: 'SUIT', sans-serif;
	font-weight: 300;
	line-height: 1.3;
	letter-spacing: -0.36px;
}

.inquiry__required-note em {
	color: #FF0000;
	font-style: normal;
}

/* 행 */
.inquiry__form {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.inquiry__row {
	display: flex;
	align-items: flex-start;
	gap: 80px;
}

.inquiry__row--full {
	gap: 0;
}

.inquiry__col {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.inquiry__col--full {
	width: 100%;
	flex: none;
}

/* 라벨 */
.inquiry__label {
	color: var(--color-black);
	font-size: 20px;
	font-family: 'SUIT', sans-serif;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -0.4px;
}

.inquiry__label em {
	color: #FF0000;
	font-style: normal;
}

/* 인풋 공통 */
.inquiry__input,
.inquiry__select,
.inquiry__textarea {
	width: 100%;
	height: 70px;
	background: #F7F7F7;
	border: none;
	border-radius: 10px;
	padding: 0 25px;
	color: var(--color-black);
	font-size: 18px;
	font-family: 'SUIT', sans-serif;
	font-weight: 300;
	line-height: 1.3;
	letter-spacing: -0.36px;
	outline: none;
	box-sizing: border-box;
	appearance: none;
	-webkit-appearance: none;
}

.inquiry__input::placeholder,
.inquiry__select option[value=""] {
	color: #999999;
}

/* 셀렉트 래퍼 */
.inquiry__select-wrap {
	position: relative;
	width: 100%;
}

.inquiry__select-wrap .inquiry__select {
	cursor: pointer;
}

.inquiry__select-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}

/* 이메일 도메인 셀렉트 */
.inquiry__select-wrap--email {
	width: 242px;
	flex-shrink: 0;
}

.inquiry__select--email {
	width: 100%;
}

/* 전화번호 */
.inquiry__tel-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
}

.inquiry__input--tel {
	flex: 1 1 0;
	width: auto;
}

.inquiry__dash,
.inquiry__at {
	color: #444444;
	font-size: 16px;
	font-family: 'Pretendard', sans-serif;
	font-weight: 300;
	line-height: 1.3;
	flex-shrink: 0;
}

/* 이메일 */
.inquiry__email-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
}

.inquiry__input--email-domain {
	flex: 1 1 0;
	width: auto;
}

/* 텍스트에어리어 */
.inquiry__textarea {
	height: 160px;
	padding: 22px 25px;
	resize: none;
}

/* 개인정보 동의 */
.inquiry__agree {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.inquiry__agree-tit {
	display: flex;
	align-items: center;
	gap: 10px;
}

.inquiry__agree-check {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	flex-shrink: 0;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
}

.inquiry__check-on {
	display: none;
}

.inquiry__agree-check[aria-checked="true"] .inquiry__check-off {
	display: none;
}

.inquiry__agree-check[aria-checked="true"] .inquiry__check-on {
	display: block;
}

.inquiry__agree-label {
	color: var(--color-black);
	font-size: 20px;
	font-family: 'SUIT', sans-serif;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.4px;
}

.inquiry__agree-box {
	height: 260px;
	background: #F7F7F7;
	border-radius: 10px;
	overflow-y: auto;
	padding: 40px;
	box-sizing: border-box;
}

.inquiry__agree-text {
	color: var(--color-gray);
	font-size: 18px;
	font-family: 'SUIT', sans-serif;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: -0.36px;
}

.inquiry__agree-text p {
	margin-bottom: 12px;
}

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

/* 개인정보 동의 박스 커스텀 스크롤바 */
.inquiry__agree-box::-webkit-scrollbar {
	width: 5px;
}
.inquiry__agree-box::-webkit-scrollbar-track {
	background: transparent;
}
.inquiry__agree-box::-webkit-scrollbar-thumb {
	background: #CCCCCC;
	border-radius: 100px;
}

/* 커스텀 드롭다운 */
.inquiry__custom-select {
	position: relative;
	width: 100%;
}

.inquiry__custom-select-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 70px;
	padding: 0 25px;
	background: #F7F7F7;
	border: 1px solid transparent;
	border-radius: 10px;
	cursor: pointer;
	box-sizing: border-box;
	transition: border-color 0.15s, background 0.15s, border-radius 0.15s;
}

.inquiry__custom-select[aria-expanded="true"] .inquiry__custom-select-btn {
	background: var(--color-white);
	border-color: #DA291C;
	border-bottom-color: transparent;
	border-radius: 10px 10px 0 0;
}

.inquiry__custom-select-text {
	color: var(--color-black);
	font-size: 18px;
	font-family: 'SUIT', sans-serif;
	font-weight: 300;
	line-height: 1.3;
	letter-spacing: -0.36px;
}

.inquiry__custom-select-text.is-placeholder {
	color: #999999;
}

.inquiry__custom-select-icon {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	transition: transform 0.25s ease;
}

.inquiry__custom-select[aria-expanded="true"] .inquiry__custom-select-icon {
	transform: rotate(180deg);
}

.inquiry__custom-select-list {
	display: flex;
	flex-direction: column;
	gap: 17px;
	position: absolute;
	top: 69px;
	left: 0;
	width: 100%;
	background: var(--color-white);
	border: 1px solid #DA291C;
	border-top: none;
	border-radius: 0 0 10px 10px;
	padding: 20px 25px;
	box-sizing: border-box;
	z-index: 100;
	list-style: none;
	margin: 0;
	opacity: 0;
	transform: translateY(-6px);
	pointer-events: none;
	transition: opacity 0.22s ease, transform 0.22s ease;
}

.inquiry__custom-select[aria-expanded="true"] .inquiry__custom-select-list {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.inquiry__custom-select-item {
	color: #666666;
	font-size: 18px;
	font-family: 'SUIT', sans-serif;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -0.36px;
	cursor: pointer;
}

.inquiry__custom-select-item.is-selected {
	color: #DA291C;
}

.inquiry__custom-select-item:hover {
	color: #DA291C;
}

/* 버튼 */
.inquiry__btns {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 40px;
}

.inquiry__btn {
	height: 80px;
	padding: 0 80px;
	border-radius: 300px;
	border: none;
	cursor: pointer;
	color: var(--color-white);
	font-size: 20px;
	font-family: 'SUIT', sans-serif;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -0.4px;
	transition: background 0.2s;
}

.inquiry__btn--cancel {
	background: var(--color-black);
}

.inquiry__btn--cancel:hover {
	background: #333333;
}

.inquiry__btn--submit {
	background: #DA291C;
}

.inquiry__btn--submit:hover {
	background: #B71C1C;
}


/* 20260622 제품특징 최신 css */

/* 제품 특징 섹션 전체 폰트 및 기본 여백 정의 */
.prod-view__section-content .notice-view__text {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
  color: #444444;
  word-break: keep-all; /* 한글 단어 단위 줄바꿈으로 깔끔하게 */
	display: flex;
	flex-direction: column;
	gap: 35px;
}

/* 1. 타이틀 영역 (점 + 텍스트 세로 중앙 정렬) */
.prod-view__section-content .feature-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 35px;       /* 각 항목 간의 상단 간격 */
  margin-bottom: 12px;    /* 타이틀과 본문 사이의 간격 */
}

/* 타이틀 첫 번째 요소는 상단 여백 제거 */
.prod-view__section-content .feature-title:first-of-type {
  margin-top: 0;
}

/* 2. 타이틀 앞 회색 점 */
.prod-view__section-content .feature-title .dot {
  flex-shrink: 0;         /* 텍스트가 길어져도 점 크기 유지 */
  width: 5px;
  height: 5px;
  background-color: #444444;
  border-radius: 50%;
}

/* 3. 타이틀 텍스트 스타일 */
.prod-view__section-content .feature-title h3 {
  margin: 0;
  color: #222222;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  font-family: Pretendard;
}

/* 4. 본문 내용 영역 (왼쪽 들여쓰기로 타이틀 점 위치와 정렬) */
.prod-view__section-content .feature-content {
  padding-left: 15px;     /* 타이틀 점 너비만큼 들여쓰기 */
  margin-bottom: 25px;    /* 본문/이미지 하단 여백 */
}

/* 5. 본문 텍스트 스타일 */
.prod-view__section-content .feature-content p {
  margin: 0 0 15px 0;     /* 텍스트 아래 여백 (이미지가 올 경우 대비) */
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: #444444;
}

/* 마지막 p태그 뒤에 이미지가 없다면 margin-bottom 제거 */
.prod-view__section-content .feature-content p:last-child {
  margin-bottom: 0;
}

/* 6. 이미지 스타일 스타일 정리 */
.prod-view__section-content .feature-content img {
  display: block;
  max-width: 500px;
  height: auto;
  margin-top: 15px;
  border: 1px solid #DDDDDD;
  border-radius: 5px;
}

.prod-view__section-content br{display: none;}

.prod-view__spec-table td{text-align: left; justify-content: flex-start;}

.prod-view__spec-table tr:first-child td{justify-content: center; background: #F2F2F3;}

.feature-content .feature-image {
  display: flex;
  gap: 10px;          /* 이미지와 이미지 사이 간격 */
  flex-wrap: wrap;    /* 화면이 좁아지면 자동으로 아래로 떨어지게 */
}

.feature-content .feature-image img {
  max-width: 100%;
  height: auto;
  /* 만약 두 이미지를 정확히 50%씩 반반 배치하고 싶다면 아래 주석 해제 */
  /* flex: 1 1 calc(50% - 5px); */
}

.prod-view__spec-table tr { display: table-row; }
.prod-view__spec-table th,
.prod-view__spec-table td { display: table-cell; vertical-align: middle; }

.prod-view__spec-table th{border-right: 1px solid #DDDDDD;border-left: 1px solid #DDDDDD;}

/* 사양 테이블 스타일 정의 */
.feature-content .spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 15px;
  border-top: 2px solid #222222;
  border-bottom: 1px solid #DDDDDD;
}

/* 테이블 캡션(제목) */
.feature-content .spec-table caption {
  font-weight: 600;
  color: #222222;
  text-align: left;
  font-size: 16px;
  margin-bottom: 8px;
}

/* 각 행 디자인 */
.feature-content .spec-table tr {
  border-bottom: 1px solid #EEEEEE;
}

/* 왼쪽 열 (항목 이름) */
.feature-content .spec-table th {
  width: 25%;
  background-color: #F9F9F9;
  color: #222222;
  font-weight: 500;
  text-align: left;
  padding: 12px 15px;
  vertical-align: middle;
}

/* 오른쪽 열 (상세 내용) */
.feature-content .spec-table td {
  width: 75%;
  color: #555555;
  padding: 12px 15px;
  line-height: 1.5;
  vertical-align: middle;
}

/* 화면이 좁은 환경(모바일 등)에서 가독성을 보장 */
@media (max-width: 768px) {
  .feature-content .spec-table th {
    width: 35%;
    font-size: 14px;
    padding: 10px;
  }
  .feature-content .spec-table td {
    width: 65%;
    font-size: 14px;
    padding: 10px;
  }
}


/* 20260629 */
.prod-view__section-content .feature-content p {
    margin: 0;
    color: #444444;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: -0.36px;
	font-family: Pretendard;
}
