.breadcrumbs, .breadcrumbs a {
	color: #6e6e6e;
}

.bottomLink {
	
	width: 100%;
	text-align: right;
	
}




.content {
	
	display: flex;
	border-bottom: 1px solid #ccc;
	margin-bottom: 20px;
	padding-bottom: 20px;
	
	
}

.content img {
	
	background-color: #EEEEEE;
	padding: 8px;
	border: 1px solid #DDDDDD;

	
}



.content .contentL {
	
	margin-right: 20px;
	min-width: 160px;

}

.contentL img {
	
	max-width: 140px;

}

.content .contentR {
	flex: 1;
}

.content a.contentTitle {
	
	font-size: 18pt;
	font-weight: 600;
	text-decoration: none;
	margin-bottom: 15px;
	
}

.content a.contentTitle:hover {
	
	text-decoration: underline;
	
}

.shortDesc {
	margin-bottom: 10px;
}

.contentLink {
	margin-top: 10px;
}

.contentDate {
	
	margin-top: 15px;
	color: #5A7BAD;
	font-size: 11pt;
	padding: 5px;
	border: 1px solid #DDE3EE;
	background-color: #F5F7FA;
}

/* Blog Layout with Sidebar */
.blog-layout {
	display: flex;
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 0;
}

.blog-sidebar {
	flex: 0 0 280px;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	border-radius: 12px;
	padding: 25px;
	height: fit-content;
	position: sticky;
	top: 20px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	border: 1px solid #e9ecef;
}

.blog-sidebar h3 {
	color: #2c3e50;
	font-size: 1.4em;
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 3px solid #3498db;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 10px;
}

.blog-sidebar ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.blog-sidebar li {
	margin-bottom: 8px;
}

.blog-sidebar a {
	display: block;
	padding: 12px 15px;
	color: #34495e;
	text-decoration: none;
	border-radius: 6px;
	transition: all 0.3s ease;
	border-left: 4px solid transparent;
	font-weight: 500;
}

.blog-sidebar a:hover {
	background: #3498db;
	color: white;
	border-left-color: #2980b9;
	transform: translateX(5px);
}

.blog-sidebar a.current {
	background: #e8f4fd;
	color: #2980b9;
	border-left-color: #3498db;
	font-weight: 600;
}

.blog-content {
	flex: 1;
	background: white;
	border-radius: 12px;
	padding: 40px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	line-height: 1.7;
	border: 1px solid #e9ecef;
	font-weight: normal !important;
}

.blog-content h1 {
	color: #2c3e50;
	font-size: 2.2em;
	margin-bottom: 15px;
	line-height: 1.3;
}

.blog-content .breadcrumbs {
	color: #7f8c8d;
	margin-bottom: 25px;
	font-size: 0.95em;
}

.blog-content .breadcrumbs a {
	color: #3498db;
	text-decoration: none;
}

.blog-content .breadcrumbs a:hover {
	text-decoration: underline;
}

.blog-content .bottomLink {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #ecf0f1;
}

.blog-content .bottomLink a {
	color: #3498db;
	text-decoration: none;
	font-weight: 500;
}

.blog-content .bottomLink a:hover {
	text-decoration: underline;
}

@media only screen and (max-width: 768px) {
	.blog-layout {
		flex-direction: column;
		gap: 20px;
		padding: 0 15px;
	}
	
	.blog-sidebar {
		flex: none;
		position: static;
		order: 2;
	}
	
	.blog-content {
		order: 1;
		padding: 20px;
	}
	
	.blog-content h1 {
		font-size: 1.8em;
	}
}

@media only screen and (max-width: 500px) {
	
	.mainInner img {
		
		display: block !important;
		margin: 20px auto !important;
		clear: both !important;
		float: none !important;
	
	}
	
	.blog-layout {
		padding: 0 10px;
	}
	
}

@media only screen and (max-width: 400px) {
	
	.content {
		flex-direction: column;
		margin-bottom: 15px;
	}
	
	.content .contentL, .content .contentR {
	
		width: 100%;		
	
	}
	
	.blog-sidebar {
		padding: 15px;
	}
	
	.blog-content {
		padding: 15px;
	}
	
}

/* Mobile dropdown font size */
@media only screen and (max-width: 768px) {
	.dropdown-content a {
		font-size: 16px !important;
		padding: 16px 20px !important;
	}
}








