/*
--------------------------------------
Items
--------------------------------------
*/

.page-list {
	display: flex;
	justify-content: center;
	gap: 20px;
	font-family: var(--e-global-typography-secondary-font-family);
}

/*
--------------------------------------
Item
--------------------------------------
*/

.page-list__item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: var(--e-global-color-5c055a3);
	border-radius: 7px;
	width: calc(280px + (300 - 280) * ((100vw - 320px) / (1920 - 320)));
	height: 130px;
}

/*Title*/

.page-list__title {
	font-family: var(--e-global-typography-primary-font-family);
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 10px;
}

/*Link*/

.page-list__link.btn-secondary {
	font-weight: 600;
	padding: 8px 36px;
}