﻿/*<meta />*/

/* =========================================
   COLOR VARIABLES (edit these to change theme)
   ========================================= */

:root
{
	--wn-bg: #e6e7e8;
	/* Section background (What's New container) */
	--wn-surface: #ffffff;
	/* Card background */
	--wn-border: #e6e7e8;
	/* Card border color */
	--wn-text: #14215c;
	/* Main text color */
	--wn-muted: #ffffff;
	/* Secondary/muted text (summaries, features) */
	--wn-accent: #fc773e;
	/* Accent color (links read more) */
	--wn-accent-dark: #d6e0eb;
	/* Accent hover/darker shade */
}

/* =========================================
   LAYOUT & STYLES
   ========================================= */

.home-block
{
	margin: 5px;
}

.whats-new
{
	background: var(--wn-bg);
	/* Section background */
	margin: 0 auto;
	border-radius: 12px;
	padding: 10px;
	max-width: 1000px;
	font-family: 'Noto Sans', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
	font-size: 14px;
	color: var(--wn-text);
	/* Main text color */
}

.whats-new .wn-inner
{
	max-width: none;
	margin: 0 auto;
}

.whats-new h2
{
	font-size: 36px;
	line-height: 1.25;
	margin: 0 0 16px;
	font-weight: normal;
	color: #14215c;
	/* Heading color (can make variable if needed) */
	padding-left: 50px;
	padding-top: 18px;
}

.whats-new .card-title
{
	font-size: 18px;
	line-height: 1.3;
	margin: 0 0 8px;
	font-weight: 700;
	color: var(--wn-text);
	/* Inherit text color or customize if needed */
}

.whats-new .card-summary
{
	color: var(--wn-text);
	/* Summary text color */
	font-weight: 400;
	/* Default weight (change as needed) */
	font-size: 13px;
	/* Optional: adjust size */
	margin-bottom: 8px;
	/* Spacing below summary */
}

.whats-new .cards
{
	list-style: none;
	margin: 0 40px;
	padding: 0;
}

.whats-new .cards::after
{
	content: "";
	display: table;
	clear: both;
}

.whats-new .card
{
	box-sizing: border-box;
	float: left;
	display: block;
	width: calc(100% - 24px);
	margin: 12px;
	background: var(--wn-surface);
	/* Card background */
	border: 1px solid var(--wn-border);
	/* Card border */
	border-radius: 10px;
	padding: 28px 30px;
	min-height: 160px;
}

/* Hover effect on card background only */

.whats-new .card:hover
{
	background: var(--wn-accent-dark);
	/* Change background color on hover */
	transform: scale(1.03);
	/* Slight zoom effect */
	transition: all 0.3s ease-in-out;
	/* Smooth animation */
	cursor: pointer;
	/* Optional: show pointer */
}

.whats-new .card--third
{
	min-height: 250px;
	min-width: 200px;
}

.whats-new .card--tall
{
	min-height: 300px;
	min-width: 200px;
}

.whats-new .readmore
{
	color: var(--wn-accent);
	/* Link color */
	text-decoration: none;
	font-weight: 600;
}

.whats-new .readmore::after
{
	content: "\2192";
	margin-left: .4em;
}

.whats-new .readmore:hover,
.whats-new .readmore:focus
{
	color: #14215c;
	text-decoration: underline;
}

.whats-new .heading
{
	color: #ffffff;
	text-decoration: underline;
	font-weight: 700;
}

.whats-new .heading::after
{
	content: "\2192";
	margin-left: .4em;
}

.whats-new .heading:hover,
.whats-new .heading:focus
{
	color: var(--wn-accent-dark);
	/* Link hover color */
	text-decoration: underline;
}

.whats-new .features
{
	margin: 8px 0 0 1.1em;
	padding: 0;
}

.whats-new .features li
{
	margin: .25rem 0;
	color: var(--wn-text);
	/* Muted text for feature list */
}

.whats-new .cta-wrap
{
	text-align: center;
	padding: .5rem 0 .25rem;
}

.whats-new .cta
{
	display: inline-block;
	background: #a9bf04;
	/* Button background */
	color: #fff;
	/* Button text color */
	text-decoration: none;
	padding: .6rem 1.1rem;
	border-radius: 9999px;
	border: 1px solid transparent;
	font-weight: 700;
}

.whats-new .cta:hover,
.whats-new .cta:focus
{
	background: #7b7c81;
	/* Button hover background */
}

.whats-new a:focus-visible
{
	outline: 3px solid #1d4ed8;
	/* Focus outline color */
	outline-offset: 2px;
}

/* Responsive breakpoints */

@media (min-width: 600px)
{
	.whats-new .card
	{
		width: calc(50% - 24px);
	}
}

@media (min-width: 900px)
{
	.whats-new .card
	{
		width: calc(33.333% - 24px);
	}
}

@media (min-width: 1200px)
{
	.whats-new .card
	{
		width: calc(25% - 24px);
	}

	.whats-new .card--third
	{
		width: calc(33.333% - 24px);
	}

	.whats-new .card--wide
	{
		width: calc(50% - 24px);
	}
}

/* Print styles */

@media print
{
	.home-block
	{
		margin: 0;
	}

	.whats-new
	{
		background: #fff;
		/* Print background */
		padding: 0;
	}

	.whats-new .card
	{
		float: none;
		width: 100%;
		border-color: #000;
		/* Print border color */
		page-break-inside: avoid;
	}

	.whats-new .readmore::after
	{
		content: "";
	}

	.whats-new .cta-wrap
	{
		text-align: left;
	}

	.whats-new .cta
	{
		color: #000;
		/* Print button text */
		background: none;
		border: 1px solid #000;
		/* Print button border */
	}
}

/* ================================
   Card Link Text
   ================================ */

.card-link
{
	color: var(--wn-accent);
	/* Link color */
	font-weight: 600;
	/* Bold link text */
	text-decoration: none;
	/* Remove underline */
}

.card-link:hover,
.card-link:focus
{
	color: var(--wn-accent-dark);
	/* Hover/focus color */
	text-decoration: underline;
	/* Add underline on hover */
}

/*latestmanasi*/

.resources
{
	font-family: Arial, sans-serif;
	text-align: left;
	padding-left: 0;
	padding-right: 0;
	margin: 20px 80px;
	margin-left: 80px;
}

.center-heading
{
	font-size: 1.8em;
	margin-bottom: 10px;
	text-align: left;
}

.section-divider
{
	border: 0;
	width: 100%;
	height: 1px;
	margin: 5px auto 9px;
	background-color: #0078d4;
}

.card-container
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(4, 1fr));
	gap: 5px;
	margin-bottom: 20px;
	text-align: left;
}

.three-columns
{
	grid-template-columns: repeat(4, 1fr);
	/* four guides in one row */
}

.card
{
	margin: 0;
	/* Remove extra margin */
	padding: 8px;
	background-color: transparent;
	border: none;
	/* No border */
	box-shadow: none;
	/* No shadow */
}

.card h3
{
	margin-top: 0;
	font-size: 1.2em;
}

.card a
{
	text-decoration: none;
	color: #0078d4;
	font-weight: bold;
}

/* Remove hover effects completely */

.card a:hover
{
	text-decoration: none;
	color: #0078d4;
}

.card p
{
	font-size: 0.95em;
	color: #555;
	margin-top: 8px;
}

/* Body Container for left annd right padding*/

.body-container
{
	padding: 0 !important;
	margin: 0 !important;
}