@charset "UTF-8";

/* ==========================================
   003 / bible-reading.css
   성경읽기,쓰기 페이지
   ========================================== */

.sb-container {
	margin: 0 auto;
	padding: 0 30px;
	box-sizing: border-box;
}

/* ============================
   Section 1 — Hero
   canvas: 0~265, height 265px
   ============================ */
.sb-section1 {
	position: relative;
	width: 100%;
	height: 265px;
	margin: 0 auto;
	padding: 0 30px;
	box-sizing: border-box;
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 30px;
	background-image: url('../../images/features/bible-reading/boxBG_24530.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center bottom;
}



/* Logo: decorative, flex item */
.sb-logo-img {
	position: relative;
	width: 312px;
	height: 160px;
	flex-shrink: 0;
}

/* Text column: flex column, flex item */
.sb-hero-text {
	position: relative;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	overflow: hidden;
}

.sb-big-title {
	position: relative;
	font-size: clamp(32px, 5vw, 50px);
	font-weight: 600;
	letter-spacing: -1px;
	line-height: 1.2;
	color: #005728;
	margin: 0;
	white-space: nowrap;
}

.sb-sub-heading {
	position: relative;
	width: 706px;
	max-width: 100%;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: -1.5px;
	line-height: 1.6;
	color: #333333;
	margin: 0;
}

.sb-sub-text {
	position: relative;
	width: 676px;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: -1px;
	line-height: 1.4;
	color: #333333;
	margin: 0;
}

/* ============================
   Section 2 — 특징
   canvas: 265~530, height 265px
   ============================ */
.sb-section2 {
	position: relative;
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	padding-top: 13px;
}

/* Dot + heading: flex row */
.sb-feat-title {
	display: flex;
	align-items: center;
	margin-bottom: 7px;
}

.sb-feat-dot {
	position: relative;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #555662;
	flex-shrink: 0;
	margin-right: 7px;
}

.sb-feat-heading {
	position: relative;
	font-size: clamp(20px, 3vw, 24px);
	font-weight: 500;
	letter-spacing: -1px;
	line-height: 1.4;
	color: #333333;
	margin: 0;
}

/* Gray box: contains list with CSS checkmarks */
.sb-feat-gray-box {
	position: relative;
	margin-left: 1px;
	width: 100%;
	max-width: 1038px;
	min-height: 197px;
	height: auto;
	background-color: #F6F6F6;
	border: 1px solid #D9D9D9;
	box-sizing: border-box;
	padding: 18px 20px 18px 22px;
	max-width: 100%;
}

.sb-feat-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sb-feat-item {
	display: flex;
	align-items: flex-start;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.4;
	color: #333333;
}

.sb-feat-item::before {
	content: "✓";
	color: #278855;
	font-size: 16px;
	font-weight: 700;
	flex-shrink: 0;
	margin-right: 8px;
	line-height: 1.4;
}

/* ============================
   Section 3 — 주요기능
   canvas: 530~1185, height 655px
   ============================ */
.sb-section3 {
	position: relative;
	width: 100%;
	height: 655px;
	margin: 0 auto;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	padding-top: 27px;
}

/* Dot + heading: flex row */
.sb-func-title {
	display: flex;
	align-items: center;
	margin-bottom: 86px;
}

.sb-func-dot {
	position: relative;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #555662;
	flex-shrink: 0;
	margin-right: 7px;
}

.sb-func-heading {
	position: relative;
	font-size: clamp(20px, 3vw, 24px);
	font-weight: 500;
	letter-spacing: -1px;
	line-height: 1.4;
	color: #333333;
	margin: 0;
}

/* Screenshot: decorative, stays absolute */
.sb-screenshot {
	position: absolute;
	top: 105px;
	left: 50%;
	transform: translateX(-50%);
	width: 680px;
	height: 508px;
}

/* Card grid: grid, 2 cards per row */
.sb-card-grid {
	display: grid;
	grid-template-columns: 279px 279px;
	justify-content: space-between;
	row-gap: 38px;
}

.sb-card {
	position: relative;
	width: 279px;
	background-color: #FFFFFF;
	border: 3px solid #278855;
	border-radius: 10px;
	box-sizing: border-box;
	overflow: hidden;
}

.sb-card-header {
	width: 100%;
	height: 52px;
	background-color: #278855;
	display: flex;
	align-items: center;
	padding-left: 17px;
	box-sizing: border-box;
}

.sb-card-title {
	font-size: 22px;
	font-weight: 600;
	letter-spacing: -1px;
	color: #FFFFFF;
	margin: 0;
}

.sb-card-body {
	padding: 15px 17px 10px;
}

.sb-card-text {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: -1px;
	line-height: 1.4;
	color: #333333;
	margin: 0;
}

/* ============================
   Section 4 — Button
   canvas: 1185~1300, height 115px
   ============================ */
.sb-section4 {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding-top: 11px;
	height: 115px;
}

.sb-cta-btn {
	position: relative;
	width: 353px;
	height: 60px;
	background-color: #2E90A8;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.sb-cta-btn p {
	font-size: 20px;
	font-weight: 600;
	color: #FFFFFF;
	margin: 0;
}

/* ==========================================
   Responsive — 800px
   ========================================== */
@media (max-width: 800px) {
	.sb-section1 {
		height: auto;
		padding-bottom: 20px;
		background-image: none;
	}

	.sb-hero-bg,
	.sb-logo-img {
		display: none;
	}

	.sb-hero-text {
		position: relative;
		top: auto;
		left: auto;
		width: 100%;
		padding-top: 20px;
	}

	.sb-big-title {
		font-size: 32px;
		white-space: normal;
		line-height: normal;
	}

	.sb-sub-heading {
		font-size: 16px;
		width: 100%;
		word-break: keep-all;
	}

	.sb-sub-text {
		font-size: 14px;
		width: 100%;
		word-break: keep-all;
	}

	.sb-feat-heading,
	.sb-func-heading {
		font-size: 20px;
	}

	.sb-feat-item {
		font-size: 14px;
	}

	.sb-card-title {
		font-size: 18px;
	}

	.sb-card-text {
		font-size: 14px;
	}

	.sb-cta-btn p {
		font-size: 18px;
	}

	.sb-section2 {
		height: auto;
		padding-bottom: 20px;
	}

	.sb-feat-gray-box {
		width: 100%;
		height: auto;
		padding-bottom: 20px;
	}

	.sb-section3 {
		height: auto;
		padding-bottom: 40px;
	}

	.sb-func-title {
		margin-bottom: 20px;
	}

	.sb-screenshot {
		display: none;
	}

	.sb-card-grid {
		grid-template-columns: 1fr;
		width: 100%;
	}

	.sb-card {
		width: 100%;
	}

	.sb-section4 {
		height: auto;
		padding-bottom: 20px;
	}

	.sb-cta-btn {
		width: 100%;
	}
}