/*
========================================
LIST
========================================
*/

.projects-list {
	display: grid;
	gap: 20px;
}

/*
========================================
ITEM
========================================
*/

.projects-list-item {
	border: 2px solid #000;
	border-radius: 20px;

	overflow: hidden;
}

/*
========================================
LINK
========================================
*/

.projects-list-item__link {
    display: flex;

    align-items: stretch;
    justify-content: space-between;

    width: 100%;
    min-height: 110px;

    color: inherit;
    text-decoration: none;
}

/*
========================================
CONTENT
========================================
*/

.projects-list-item__content {
	display: flex;
	align-items: center;

	flex: 1;
	min-width: 0;

	padding: 20px 24px;
}

/*
========================================
TITLE
========================================
*/

.projects-list-item__title {
	margin: 0;

	font-size: 20px;
	font-weight: 500;
	line-height: 1.15;
}

/*
========================================
ACTION
========================================
*/

.projects-list-item__action {
	display: flex;
	align-items: center;
	justify-content: center;

	flex: 0 0 90px;

	background: #000;
	color: #fff;

	transition: .25s;
}

/*
========================================
ARROW
========================================
*/

.projects-list-item__arrow svg {
	width: 20px;
	height: 20px;

	transition: transform .25s;
}

.projects-list-item:hover .projects-list-item__arrow svg {
	transform: translateX(10px);
}