/* VCarder wallet buttons */
.wallet-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin: 16px 0;
}

.wallet-buttons a {
	display: inline-block;
	line-height: 0; /* kill baseline gap under the badge image */
}

.wallet-badge {
	height: 48px; /* Apple Google badges share this nominal height */
	width: auto;
	border-radius: 8px; /* matches both official badge corner radii */
	transition: transform .08s ease;
}

.wallet-badge:hover {
	transform: translateY(-1px);
}

.wallet-badge:active {
	transform: translateY(0);
}

@media ( max-width : 380px) {
	.wallet-badge {
		height: 42px;
	}
}