.uv-custom-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.uv-custom-card-item {
	width: calc(33.333% - 10px);
	background: #FFF;
	box-shadow: 1px 2px 7px 0px rgba(0, 0, 0, 0.11);
}

.uv-custom-card-image {
	width: 100%;
	aspect-ratio: 3 / 2;
	overflow: hidden;
}

.uv-custom-card-content {
	padding: 12px 32px 36px;
	text-align: center;
}

.uv-custom-card-content h3 {
	font-size: 22px;
	font-weight: 600;
	line-height: 26px;
	text-transform: uppercase;
}

.uv-custom-card-content p {
	font-size: 15px;
	line-height: 24px;
}

.uv-custom-card-buttons {
	text-align: center;
	margin-bottom: 36px;
}

.uv-custom-card-buttons .uv-btn {
	display: block;
	max-width: fit-content;
	margin: 0 auto 10px;
}

.uv-custom-card-buttons .uv-btn:last-of-type {
	margin-bottom: 0;
}

@media screen and (max-width: 480px) {
	.uv-custom-card-item {
		width: 100%;
	}
	.uv-custom-card-buttons {
		padding: 0 32px;
	}
	.uv-custom-card-buttons .uv-btn {
		max-width: 100%;
	}
}