@charset "utf-8";

.cms-container {
	font-family: 'Noto Sans KR', sans-serif;
	padding-bottom: 100px;
}

/* ==============================================
   Section 1 — Hero
   canvas ref: top 0~290, width 1100px
============================================== */
.cma-section1 {
	position: relative;
	width: 100%;
	height: auto;
	margin: 0 auto;
	box-sizing: border-box;
	overflow: hidden;
}

.cma-hero-row {
	display: flex;
	align-items: center;
	padding: 46px 30px 30px;
	gap: 30px;
	background-image: url('../../images/features/cms-management/boxBG_23689.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center bottom;
}

.cma-hero-logo-group {
	position: relative;
	width: 258px;
	height: 143px;
	flex-shrink: 0;
}

/* Logo image: absolute within logo-group */
.cma-logo-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 258px;
	height: 143px;
	display: block;
}

/* Hero text group: flex item */
.cma-hero-text-group {
	position: relative;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	overflow: hidden;
}

/* Big title: flexible width */
.cma-big-title {
	font-family: 'Noto Sans KR', sans-serif;
	font-size: clamp(20px, 3.5vw, 28px);
	font-weight: 600;
	letter-spacing: -1px;
	line-height: 1.6;
	color: #005728;
	text-align: left;
	margin: 0;
}

.cma-big-title-cms {
	font-size: clamp(32px, 5vw, 50px);
}

/* Sub label: flexible width */
.cma-sub-label {
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: -1px;
	line-height: 1.6;
	color: #333333;
	text-align: left;
	margin: 2px 0 0 0;
}

/* Subtitle: flexible width */
.cma-subtitle {
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: -1px;
	line-height: 1.4;
	color: #333333;
	text-align: left;
	margin: 6px 0 0 0;
}

/* ==============================================
   Section 2 — CMS 메인페이지
   canvas ref: top 290~940, height 650px
============================================== */
.cma-section2 {
	position: relative;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 50px 0;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

/* Dot + heading wrapper */
.cma-s2-title {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 12px;
}

/* Dot */
.cma-s2-dot {
	position: relative;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #555662;
	flex-shrink: 0;
	margin-right: 7px;
}

/* Heading */
.cma-s2-heading {
	position: relative;
	max-width: 100%;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: clamp(20px, 3vw, 24px);
	font-weight: 500;
	letter-spacing: -1px;
	line-height: 1.4;
	color: #333333;
	text-align: left;
	margin: 0;
}

/* Gray box: canvas top:335→45, left:31→1, 1038×46 */
.cma-s2-gray-box {
	position: relative;
	top: auto;
	left: auto;
	width: 100%;
	height: auto;
	padding: 5px 20px;
	box-sizing: border-box;
	background-color: #F6F6F6;
	border: 1px solid #D9D9D9;
}

/* Info text: canvas top:345→55, left:50→20, 1000×36 */
.cma-s2-info-text {
	position: relative;
	top: auto;
	left: auto;
	width: 100%;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.4;
	color: #333333;
	text-align: left;
	margin: 0;
}

/* Screenshot: canvas top:432→142, left:164→134, 770×507 */
.cma-s2-screenshot {
	position: relative;
	top: auto;
	left: auto;
	width: 770px;
	height: 507px;
	display: block;
	margin: 20px auto;
}

/* ==============================================
   Section 3 — Feature Grid (10 items)
   canvas ref: top 940~1516, height 576px
============================================== */
.cma-section3 {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 60px 30px;
	box-sizing: border-box;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 40px;
}

.cma-feat-item {
	display: flex;
	align-items: center;
	gap: 20px;
}

.cma-thumb-wrap {
	position: relative;
	width: 70px;
	height: 70px;
	flex-shrink: 0;
	background: #F6F6F6;
	background: linear-gradient(135deg, #eeeeee 0%, #f9f9f9 100%);
	border: 1px solid #D9D9D9;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
}

/* Feature numbers: CSS centered */
.cma-num {
	position: relative;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 28px;
	font-weight: 900;
	letter-spacing: -1px;
	line-height: 1;
	color: #555662;
	text-align: center;
	margin: 0;
}

/* Feature texts: flex item with balanced spacing */
.cma-feat-text {
	position: relative;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: -0.5px;
	line-height: 1.5;
	color: #333333;
	text-align: left;
	margin: 0;
	word-break: keep-all;
}

.cma-feat-text b {
	font-size: 17px;
	color: #000;
	display: block;
	margin-bottom: 4px;
}

/* ==============================================
   Sections 4~12 — Detail Sections (shared base)
============================================== */
.cma-det-section {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 50px 0;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

/* Shared: dot + heading wrapper */
.cma-det-title {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 12px;
}

/* Shared: dot */
.cma-det-dot {
	position: relative;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #555662;
	flex-shrink: 0;
	margin-right: 7px;
}

/* Shared: heading */
.cma-det-heading {
	position: relative;
	max-width: 100%;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: clamp(20px, 3vw, 24px);
	font-weight: 500;
	letter-spacing: -1px;
	line-height: 1.4;
	color: #333333;
	text-align: left;
	margin: 0;
}

/* Shared: gray box base */
.cma-det-gray-box {
	position: relative;
	top: auto;
	left: auto;
	width: 100%;
	height: auto;
	padding: 8px 20px;
	box-sizing: border-box;
	background-color: #F6F6F6;
	border: 1px solid #D9D9D9;
}

/* Shared: info text base */
.cma-det-info {
	position: relative;
	left: auto;
	width: 100%;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.4;
	color: #333333;
	text-align: left;
	margin: 0;
}

/* Shared: screenshot base */
.cma-det-screenshot {
	position: relative;
	top: auto;
	left: auto;
	display: block;
	margin: 16px auto;
}

/* ==============================================
   Sections 4~12 — Per-section screenshot sizes
============================================== */
.cma-section4 .cma-det-screenshot {
	width: 770px;
	height: 607px;
}

.cma-section5 .cma-det-screenshot {
	width: 770px;
	height: 620px;
}

.cma-section6 .cma-det-screenshot {
	width: 775px;
	height: 553px;
}

.cma-section7 .cma-det-screenshot {
	width: 770px;
	height: 970px;
}

.cma-section8 .cma-det-screenshot {
	width: 770px;
	height: 540px;
}

.cma-section9 .cma-det-screenshot {
	width: 770px;
	height: 676px;
}

.cma-section10 .cma-det-screenshot {
	width: 770px;
	height: 583px;
}

.cma-section11 .cma-det-screenshot {
	width: 770px;
	height: 960px;
}

.cma-section12 .cma-det-screenshot {
	width: 770px;
	height: 514px;
}

/* ==========================================
   Responsive — 800px
   ========================================== */
@media (max-width: 800px) {
	.cma-hero-row {
		display: block;
		background-image: none;
		padding: 20px 20px 30px;
	}

	.cma-hero-logo-group {
		display: none;
	}

	.cma-hero-text-group {
		width: 100%;
	}

	.cma-big-title {
		font-size: 24px;
		word-break: keep-all;
	}

	.cma-big-title-cms {
		font-size: 32px;
	}

	.cma-sub-label,
	.cma-subtitle {
		font-size: 16px;
		word-break: keep-all;
		margin-top: 10px;
	}

	.cma-s2-heading,
	.cma-det-heading {
		font-size: 20px;
		height: auto;
		word-break: keep-all;
	}

	.cma-s2-info-text,
	.cma-det-info {
		font-size: 14px;
		word-break: keep-all;
	}

	.cma-section3 {
		display: grid;
		grid-template-columns: 1fr;
		gap: 15px;
		padding: 30px 20px;
	}

	.cma-feat-item {
		gap: 15px;
	}

	.cma-thumb-wrap {
		width: 60px;
		height: 60px;
	}

	.cma-num {
		font-size: 24px;
	}

	.cma-s2-screenshot,
	.cma-det-screenshot {
		display: none;
	}

	.cma-section2,
	.cma-det-section {
		padding: 30px 0;
	}

	.cma-s2-gray-box,
	.cma-det-gray-box {
		padding: 15px;
	}

	.cma-s2-title,
	.cma-det-title {
		margin-bottom: 10px;
	}
}