#content{
	display:grid;
	grid-template-columns:1fr 1fr 1fr;
	gap:20px;
}

.content-item{
	padding:30px;
	border-radius:40px;
	background:#fff;
	min-height:325px;
	box-sizing:border-box;
}

.content-caption{
	color:#275371;
	font-size:24px;
	font-weight:500;
	margin-bottom:15px;
}

.content-caption a{
	color:#275371;
}

.content-list{
	font-size:16px;
	font-weight:500;
	color:#696969;
}

.content-list ul{
	list-style:none;
	padding:0px;
	margin:0px;
}

.content-list ul li{
	position:relative;
}

.content-list ul li:not(:last-of-type){
	margin-bottom:10px;
}

.content-list ul li a{
	color:var(--text);
}


.content-link{
	padding:30px;
	border-radius:40px;
	background-image:url(images/art-2.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size:cover;
	display:flex;
	align-items:flex-end;
	justify-content:flex-end;
}

.content-link.link-2{
	background-image:url(images/art-1.png);
}

.content-link.link-3{
	background-image:url(images/art-3.png);
}


@media (max-width: 1024px) {
	#content{
		grid-template-columns:1fr 1fr;
	}
}

@media (max-width: 768px) {
	#content{
		grid-template-columns:1fr;
	}
}