.ctaitem{
	text-decoration: none;

	.image{
		max-width: 384px;
		aspect-ratio: 384/300;
		overflow: hidden;

		img{
			transition: transform .3s ease;
		}
	}
	&:hover .image img{
		transform: scale(1.1);
	}

	.title{
		margin: 32px 0 12px;
		font-size: 24px;
		font-weight: 700;
		line-height: 1.1;
		text-transform: uppercase;
	}
	.text{
		margin: 0 0 40px;
		hyphens: auto;
	}
}