.ctaimagelinks{
	display: grid;
	grid-template-columns: repeat( 2, 1fr );
	gap: 24px;

	@media (max-width: 767px){
		grid-template-columns: 1fr;
	}

	@media (max-width: 575px){
		gap: 0;
		margin: 0 var(--snap);
	}

	a{
		display: block;
		text-decoration: none;
		background: var(--wp--preset--color--gray-50);
		color: var(--wp--preset--color--primary-950) !important;

		figure{
			overflow: hidden;

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

		.inner{
			padding: 32px;

			@media (max-width: 991px){
				padding: 24px;
			}

			@media (max-width: 575px){
				padding: 20px 16px;
			}
		}

		.button{
			margin: 24px 0 0;
			display: flex;
			justify-content: center;
			align-items: center;
			width: 48px;
			aspect-ratio: 1;
			background: #fff url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="none" viewBox="0 0 14 14"><path stroke="%23011d3c" stroke-width="1.5" d="M0 6.53033h12.5m0 0-6-6m6 6-6 5.99997"/></svg>') center no-repeat;
			border: 1px solid var(--wp--preset--color--gray-200);

			@media (max-width: 575px){
				margin: 20px 0 0;
				width: 32px;
				background-size: 11px 11px;
			}
		}
	}
}