.ng-results {
	width: 100%;
	margin: 1.5rem 0;
	font-family: inherit;
}

.ng-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.ng-grid-single {
	grid-template-columns: minmax(0, 620px);
	justify-content: center;
}

.ng-card {
	overflow: hidden;
	border: 1px solid #dfe3e8;
	border-radius: 0;
	background: #fff;
	box-shadow: 0 5px 18px rgba(17, 24, 39, .08);
	color: #1f2937;
}

.ng-card-header {
	padding: 18px 20px !important;
	border-top: 5px solid #0072bc;
	border-bottom: 1px solid #e5e7eb;
	background: #f8fafc;
	text-align: center;
}

.ng-card-header h3 {
	margin: 0 0 4px !important;
	font-size: 23px;
	font-weight: 800;
	line-height: 1.25;
}

.ng-card-header p {
	margin: 0 !important;
	color: #64748b;
	font-size: 14px;
}

.ng-section {
	padding: 17px 18px;
	border-bottom: 1px solid #edf0f3;
	text-align: center;
}

.ng-section:last-child {
	border-bottom: 0;
}

.ng-section h4 {
	margin: 0 0 12px;
	color: #475569;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.ng-number-columns,
.ng-numbers {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 18px;
}

.ng-numbers {
	gap: 38px;
}

.ng-number-columns > div {
	display: flex;
	min-width: 74px;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.ng-compact-section {
	padding: 22px 20px;
}

.ng-compact-values {
	display: grid;
	grid-template-columns: repeat(4, 74px);
	gap: 11px;
	align-items: start;
	justify-content: center;
}

.ng-compact-values > div {
	display: flex;
	min-width: 74px;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.ng-number-label {
	color: #475569;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: .08em;
	line-height: 1;
	text-transform: uppercase;
}

.ng-number-columns strong,
.ng-numbers strong,
.ng-compact-values strong {
	display: inline-flex;
	width: 54px;
	min-width: 54px;
	max-width: 54px;
	height: 54px;
	min-height: 54px;
	max-height: 54px;
	box-sizing: border-box;
	flex: 0 0 54px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #f3f6f9;
	color: #111827;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
}

.ng-number-columns > div:nth-child(2) strong,
.ng-compact-values > div:nth-child(2) strong {
	background: #0072bc;
	color: #fff;
}

.ng-updated {
	margin-top: 10px;
	color: #64748b;
	font-size: 12px;
	text-align: right;
}

.ng-error,
.ng-unavailable {
	margin: 1rem 0;
	padding: 14px 16px;
	border-left: 4px solid #0072bc;
	border-radius: 0;
	background: #f1f7fc;
	color: #123b58;
}

@media (max-width: 720px) {
	.ng-grid {
		grid-template-columns: 1fr;
	}

	.ng-card-header h3 {
		font-size: 21px;
	}

	.ng-compact-values {
		grid-template-columns: repeat(4, minmax(54px, 1fr));
		gap: 2px;
	}

	.ng-compact-values .ng-number-label {
		font-size: 12px;
		letter-spacing: .03em;
	}
}
