#greeting > div > .title {
	width: 100%;
	margin: 10px 0;
	padding: 0 0 0 0;
	font-size: 20px;
	font-family: 'Nanum Brush Script'; /* 35px */
	font-family: "Nanum Myeongjo";	/* 24px */
	line-height: 1.5;
	color: #1e4a6b;
	font-weight: bold;
	text-align: left;
}

#greeting > div > .bible {
	width: 100%;
	margin: 15px 0 30px;
	font-size: 15px;
	text-indent: 0px;
	line-height: 2;
	color: #072033;
	font-weight: 600;
}

#greeting > div > div > .greeting_img {
	float: right;
	margin: 18px 0px 5px 12px;
	width: 45%;
	border-radius: 5px;
	max-width: 260px;
	background: #f5f5f5;
	border: 1px solid #e8eaf6;
	filter: drop-shadow(3px 9px 4px black);
}	

#greeting > div > .contents {
	margin: 0 3px 0 0px;
	font-size: 14.5px;
	line-height: 2.1;
	color: #072033;
	font-family: Arial, sans-serif;
}

#greeting > div > .pastor_sign {
	float: right;
	font-size: 30px;
	font-family: 'Nanum Brush Script';
	letter-spacing: 6px;
	margin: 20px 10px 10px 0;
}

#greeting > div > .str5 {
	float: left;
	font-size: 13px;
	margin: 20px 50px 50px 3px;
	line-height: 20px;
}

/* 새로운 탭 메뉴(2025.10.22) */
.tabs {
	display: flex;
	flex-wrap: wrap; /* 줄바꿈 허용 */
	font-family: sans-serif;    
	gap: 3px; /* 버튼 사이 간격 제거 (원래 탭 느낌 유지) */
}

.tab {
	margin-top: 5px;
	padding: 14px 0 9px;
	cursor: pointer;
	background: none;
	font-size: 16px;
	color: #555;
	text-align: center;
	border: none;
	border-bottom: 3px solid transparent;
	transition: all 0.3s ease;
	flex: 0 0 auto; /* 고정 너비 + 줄바꿈 허용 */
	white-space: nowrap;
	border-bottom: 2px solid #ddd;
	min-width: 80px;
}

.tab:hover {
	color: #0078D4;
	border-bottom: 3px solid #0078D4;
	background-color: #f9f9f9;
}

.tab.active {
	color: #0078D4;
	border-bottom: 3px solid #0078D4;
	font-weight: bold;
	background-color: #f9f9f9;
}

/* 모바일 최적화: 탭이 너무 길 경우 줄바꿈 유도 */
@media screen and (max-width: 600px) {
	.tab {
		min-width: 80px;
	}
}