.gtp-pool-grid {
	display: grid;
	grid-template-columns: repeat(var(--gtp-columns, 4), minmax(0, 1fr));
	gap: 20px;
	margin: 24px 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

@media (max-width: 980px) {
	.gtp-pool-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.gtp-pool-grid {
		grid-template-columns: 1fr;
	}
}

.grl-header {
    margin-bottom: 20px;
	margin-top: 20px;
	font-family: sans-serif;
}
.gtp-card {
	position: relative;
	background: #ffffff;
	border-radius: 18px;
	padding: 22px;
	box-shadow: 0 2px 10px rgba(20, 30, 60, 0.06);
	border: 1px solid rgba(20, 30, 60, 0.04);
	display: flex;
	flex-direction: column;
	min-height: 200px;
}

.gtp-card__badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: #eef1fb;
	color: #2f3a8f;
	font-size: 12px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 999px;
	letter-spacing: 0.02em;
}

.gtp-card__title {
	font-size: 17px;
	font-weight: 700;
	color: #16213e;
	margin: 0 36px 4px 0;
	line-height: 1.3;
}

.gtp-card__subtitle {
	font-size: 13px;
	color: #8990a3;
	margin-bottom: 18px;
}

.gtp-card__amount-row {
	display: flex;
	align-items: baseline;
	gap: 4px;
	margin-bottom: 4px;
}

.gtp-card__currency {
	font-size: 20px;
	font-weight: 700;
	color: #16213e;
}

.gtp-card__amount {
	font-size: 30px;
	font-weight: 800;
	color: #16213e;
	letter-spacing: -0.01em;
}

.gtp-card__footer-label {
	font-size: 13px;
	color: #8990a3;
	margin-bottom: 18px;
}

.gtp-card__button {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #0e1b3d;
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	border: none;
	border-radius: 12px;
	padding: 13px 18px;
	cursor: pointer;
	transition: background 0.15s ease;
}

.gtp-card__button:hover {
	background: #1a2a55;
	color: #ffffff;
}

.gtp-card__button:disabled {
	opacity: 0.6;
	cursor: default;
}

/* Skeleton loading state */
.gtp-card--skeleton {
	gap: 12px;
}

.gtp-skel {
	background: linear-gradient(90deg, #eef0f5 25%, #f7f8fa 37%, #eef0f5 63%);
	background-size: 400% 100%;
	animation: gtp-shimmer 1.4s ease infinite;
	border-radius: 8px;
}

.gtp-skel--badge {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 36px;
	height: 22px;
	border-radius: 999px;
}

.gtp-skel--title {
	width: 70%;
	height: 18px;
	margin-bottom: 6px;
}

.gtp-skel--sub {
	width: 50%;
	height: 13px;
	margin-bottom: 24px;
}

.gtp-skel--amount {
	width: 60%;
	height: 30px;
	margin-bottom: 8px;
}

.gtp-skel--footer {
	width: 45%;
	height: 13px;
	margin-bottom: 24px;
}

.gtp-skel--button {
	width: 100%;
	height: 44px;
	border-radius: 12px;
	margin-top: auto;
}

@keyframes gtp-shimmer {
	0% { background-position: 100% 0; }
	100% { background-position: -100% 0; }
}

.gtp-card__error {
	grid-column: 1 / -1;
	background: #fff5f5;
	border: 1px solid #fed7d7;
	color: #9b2c2c;
	border-radius: 12px;
	padding: 16px;
	font-size: 14px;
}
