/*=========================================
AI Wealth Tech India
Grey Market Premium
=========================================*/

.awti-gmp-card{
	background:#fff;
	border:1px solid #e8eef7;
	border-radius:22px;
	padding:28px;
	margin:30px 0;
	box-shadow:0 10px 30px rgba(15,23,42,.08);
}

.awti-gmp-card h2{
	margin:0 0 24px;
	font-size:28px;
	font-weight:700;
	color:#111827;
}

.awti-gmp-grid{
	display:grid;
	grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
	gap:18px;
}

.awti-gmp-box{
	position:relative;
	overflow:hidden;
	background:#fff;
	border:1px solid #e5e7eb;
	border-radius:18px;
	padding:20px 22px;
	transition:.3s ease;
	box-shadow:0 4px 15px rgba(15,23,42,.04);
}

.awti-gmp-box::before{
	content:"";
	position:absolute;
	left:0;
	top:16px;
	width:4px;
	height:calc(100% - 32px);
	border-radius:30px;
	background:linear-gradient(180deg,#22c55e,#2563eb);
}

.awti-gmp-box:hover{
	transform:translateY(-4px);
	border-color:#bfdbfe;
	box-shadow:0 15px 35px rgba(37,99,235,.14);
}

.awti-gmp-label{
	display:block;
	margin-bottom:8px;
	font-size:14px;
	font-weight:600;
	color:#64748b;
}

.awti-gmp-value{
	font-size:32px;
	font-weight:700;
	line-height:1.35;
	color:#111827;
	word-break:break-word;
}

/* Value Colors */

.awti-positive{
	color:#16a34a;
}

.awti-negative{
	color:#dc2626;
}

.awti-neutral{
	color:#2563eb;
}

.awti-na{
	color:#9ca3af;
	font-style:italic;
	font-weight:600;
}

/* Progress */

.awti-progress{
	width:100%;
	height:10px;
	margin-top:16px;
	border-radius:999px;
	background:#e5e7eb;
	overflow:hidden;
}

.awti-progress span{
	display:block;
	height:100%;
	border-radius:999px;
	background:linear-gradient(90deg,#22c55e,#2563eb);
}

/* Last Updated */

.awti-gmp-updated{
	grid-column:1/-1;
	position:relative;
	background:#fff;
	border:1px solid #e5e7eb;
	border-radius:18px;
	padding:20px 22px;
	box-shadow:0 4px 15px rgba(15,23,42,.04);
}

.awti-gmp-updated::before{
	content:"";
	position:absolute;
	left:0;
	top:16px;
	width:4px;
	height:calc(100% - 32px);
	border-radius:30px;
	background:linear-gradient(180deg,#22c55e,#2563eb);
}

.awti-gmp-updated span{
	display:block;
	font-size:14px;
	font-weight:600;
	color:#64748b;
}

.awti-gmp-updated strong{
	display:block;
	margin-top:8px;
	font-size:22px;
	font-weight:700;
	color:#111827;
}

/* Mobile */

@media (max-width:768px){

	.awti-gmp-card{
		padding:20px;
		border-radius:18px;
	}

	.awti-gmp-card h2{
		font-size:24px;
		margin-bottom:20px;
	}

	.awti-gmp-grid{
		grid-template-columns:1fr;
		gap:15px;
	}

	.awti-gmp-box{
		padding:18px;
	}

	.awti-gmp-value{
		font-size:24px;
	}

	.awti-gmp-updated{
		padding:18px;
	}

	.awti-gmp-updated strong{
		font-size:20px;
	}

}