/* Larger header icons (50% bigger) */
.icon-btn {
	font-size: 36px !important;
	width: 54px !important;
	height: 54px !important;
	position: relative;
	text-decoration: none;
}

/* Notification badge - positioned closer to icon */
.notification-badge {
	position: absolute;
	top: 4px;
	right: 4px;
	background: #ff0000;
	color: white;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	font-size: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}

/* Logo JESH - bigger to match search bar height */
.logo {
	font-size: 32px !important;
	font-weight: 900 !important;
	line-height: 1 !important;
}

/* Nav buttons - reduced by 50% */
/*.nav-btn {
	font-size: 12px !important;
	padding: 8px 16px !important;
	letter-spacing: 0.05em !important;
}*/

.main-nav {
	padding: 12px 0;
}

/* Blog post preview */
.blog-preview {
	margin-top: 60px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.blog-preview-image {
	width: 100%;
	height: 400px;
	overflow: hidden;
	margin-bottom: 24px;
	border: 1px solid #fed9b1;
}

.blog-preview-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-preview-content {
	color: #fed9b1;
	line-height: 1.6;
}

.blog-preview-content h3 {
	font-size: 24px;
	font-weight: 800;
	margin-bottom: 16px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.blog-preview-content p {
	margin-bottom: 12px;
}

.read-more-btn {
	display: inline-block;
	margin-top: 16px;
	padding: 12px 32px;
	background: transparent;
	border: 1px solid #fed9b1;
	color: #fed9b1;
	text-decoration: none;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: all 0.3s ease;
}

.read-more-btn:hover {
	background: #fed9b1;
	color: #0a0e13;
}