.pricing-licenses {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
}

.pricing-license {
	padding: clamp(1.5rem, 4vw, 2.5rem);
	border: 1px solid #7899ce;
	border-radius: 1.6rem;
	background: #ffffff;
}

.pricing-license h2 {
	margin: 0 0 1rem;
	color: var(--home-blue);
	font-size: clamp(1.4rem, 2.5vw, 1.8rem);
	line-height: 1.2;
}

.pricing-license p {
	color: var(--home-muted);
	font-size: 1.05rem;
}

.pricing-license p:last-child {
	margin-bottom: 0;
}

@media (max-width: 720px) {
	.pricing-licenses {
		grid-template-columns: minmax(0, 1fr);
	}
}
