.it-download-files {
	display: grid;
	gap: 19px;
}

.it-download-files__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 84px;
	padding: 24px;
	border-radius: 16px;
	background: #fff;
	flex-wrap: wrap;
}

.it-download-files__title {
	min-width: 0;
	color: var(--Color-Black-100, #1D1A1A);
	font-family: "Noto Sans TC";
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 36px;
	letter-spacing: 1.44px;
	max-width: calc(100% - 116px);
}

.it-download-files__button {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 28px;
	padding: 8px 16px;
	border-radius: 16px;
	background: #f2e1e3;
	color: var(--Color-Black-100, #1D1A1A);

	/* Button */
	font-family: "Noto Sans TC";
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 20px;
	/* 125% */
	letter-spacing: 0.64px;
}

.it-download-files__button:hover {
	color: #B61E1B;
}

.it-download-files__button img {
	width: 16px;
	height: 16px;
}

.it-download-files__button.is-disabled {
	cursor: not-allowed;
	opacity: 0.45;
}