.link-list-v2 {
	padding: 10px 0 0;
	border-bottom: 1px solid black;
	border-top: 1px solid black;
}
.link-list-v2 .title {
	text-align: center;
	font-family: 'Swear Display';
	font-size: 40px;
	margin: 27px 0 34px;
}
.link-list-v2 ul {
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.link-list-v2 ul li {
	width: 33%;
}
.link-list-v2 ul li .button {
	background: black;
	text-align: center;
	color: white;
	text-decoration: none;
	text-transform: uppercase;
	padding: 23px;
	font-size: 13px;
	letter-spacing: 0.01rem;
}
.link-list-v2 ul li .button span {
	display: block;
	background-image: url(../../assets/icons/utility/arrow-right.svg);
	background-repeat: no-repeat;
	background-position: center right;
	width: fit-content;
	margin: 0 auto;
	padding: 0 25px;
}
.link-list-v2 ul li .button:hover {
	background: #c5bfad;
	border:1px solid #c5bfad;
	color:black;
}
.link-list-v2 ul li .button:hover span {
	background-image: url(../../assets/icons/utility/black-arrow-right.svg);
	background-repeat: no-repeat;
	background-position: center right;
}
@media all and (max-width:830px) {
	.link-list-v2 ul li {
		width: 100%;
		margin: 10px 0 0;
	}
	.link-list-v2 .title {
		font-size: 35px;
		margin: 27px 0 24px;
	}
}