
:root {
	--primary-color: #2563eb; /* Royal Blue */
	--secondary-color: #1e40af; /* Darker Blue */
	--text-color: #334155;
	--light-bg: #f8fafc;
}

body {
	font-family: 'Inter', sans-serif;
	color: var(--text-color);
	background-color: #ffffff;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}


.site-header {
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
	background: #ffffff;
	position: sticky;
	top: 0;
	z-index: 1000;
}

.navbar-brand.site-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.logo-img {
	max-height: 40px;
}

.logo-text {
	font-size: 1.5rem;
	color: var(--primary-color);
	letter-spacing: -0.5px;
}

.navbar-nav .nav-link {
	font-weight: 500;
	color: #475569;
	padding: 10px 15px !important;
	transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link.active {
	color: var(--primary-color);
}

/* --- Main Content Area --- */
.main-content {
	flex: 1; /* Pushes footer to bottom */
	padding: 60px 0;
}

/* --- Custom CMS Content Styling --- */
.main-content h1 {
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 20px;
}

.main-content p {
	line-height: 1.7;
	font-size: 1.1rem;
	color: #475569;
}

/* --- Footer --- */
.site-footer {
	background: linear-gradient(to right, #0f172a, #1e293b);
	color: #f1f5f9;
	padding: 60px 0 30px 0;
	margin-top: auto;
}

.footer-heading {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 20px;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Styling the output of <site bottom_menu/> */
.footer-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-links a {
	color: #94a3b8;
	text-decoration: none;
	transition: color 0.2s ease, transform 0.2s ease;
	display: inline-block;
}

.footer-links a:hover {
	color: #38bdf8;
	transform: translateX(5px);
}

.footer-bottom {
	border-top: 1px solid #334155;
	margin-top: 40px;
	padding-top: 20px;
	text-align: center;
	color: #64748b;
	font-size: 0.9rem;
}

.news-article-wrapper img, 
    .news-article-wrapper iframe, 
    .news-article-wrapper video {
        max-width: 100% !important;
        height: auto !important;
        border-radius: 8px;
        box-sizing: border-box;
    }

    /* Add some spacing specifically for images inside the text, but not the cover image */
    .article-rich-text img {
        margin: 25px 0;
        box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); /* Adds a subtle premium shadow to content images */
    }
    
    .article-rich-text h2, 
    .article-rich-text h3, 
    .article-rich-text h4 {
        color: var(--text-color, #0f172a);
        margin-top: 1.5em;
        margin-bottom: 0.5em;
        font-weight: 700;
    }

    .article-rich-text a {
        color: var(--primary-color, #2563eb);
        text-decoration: underline;
    }
	
	
	 .news-widget-list { padding: 0; margin: 0; list-style: none; }
        .news-widget-item { display: flex; gap: 15px; padding: 15px 0; border-bottom: 1px solid #e2e8f0; align-items: center; }
        .news-widget-item:last-child { border-bottom: none; padding-bottom: 0; }
        
        .news-widget-thumb { flex-shrink: 0; width: 75px; height: 75px; border-radius: var(--ui-radius, 6px); overflow: hidden; background: var(--light-bg, #f8fafc); display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
        .news-widget-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
        .news-widget-item:hover .news-widget-thumb img { transform: scale(1.1); }
        
        .news-widget-title { color: var(--text-color, #334155); font-weight: 600; font-size: 0.95rem; text-decoration: none; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color 0.2s ease; margin-top: 4px; }
        .news-widget-item:hover .news-widget-title { color: var(--primary-color, #2563eb); }
        
        .news-widget-date { font-size: 0.75rem; color: #64748b; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
   
