@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@700&display=swap');

.project-list {
	list-style: none;
	margin: 0;
	padding: 0;
}


.project-list__link {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 146px;
	padding: 12px 0;
	text-decoration: none;
	transition: opacity .15s;
}

.project-list__link:hover {
	opacity: .75;
}

.project-list__title {
	font-family: 'Open Sans', Arial, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 32px;
	line-height: 109%;
	letter-spacing: -0.05em;
	color: #4154A3;
	flex: none;
}

.project-list__plus {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

@media (max-width: 600px) {
	.project-list__title { font-size: 18px; }
	.project-list__link  { gap: 24px; }
}
