.download-page-header {
	margin: 10px 0 20px 0;
}

.download-page-title-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
}

.download-page-title {
	font-size: 22px;
	font-weight: 500;
	margin: 0;
}

.download-page-count {
	font-size: 13px;
	color: #6b7280;
	white-space: nowrap;
}

.download-page-subtitle {
	font-size: 14px;
	color: #4b5563;
	line-height: 1.6;
	margin: 4px 0 0 0;
}

.download-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

.download-row {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 16px 20px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.download-row-main {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.download-thumb {
	width: 44px;
	height: 44px;
	flex: none;
	border-radius: 10px;
	border: 1px solid #e5e7eb;
	background-color: #fff;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.download-info {
	flex: 1;
	min-width: 0;
}

.download-name {
	font-size: 15px;
	font-weight: 500;
	color: #1f2937;
}

.download-free-badge {
	margin-left: 8px;
	font-size: 12px;
	font-weight: normal;
	background: #eaf3de;
	color: #3b6d11;
	border-radius: 8px;
	padding: 3px 8px;
	vertical-align: 2px;
}

.download-desc {
	font-size: 13px;
	color: #4b5563;
	line-height: 1.5;
	margin-top: 2px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.download-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px solid #e5e7eb;
}

.download-button {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	text-decoration: none;
	color: #1f2937;
	background: #fff;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	padding: 7px 12px;
	cursor: pointer;
}

.download-button:hover {
	border-color: var(--theme-primary-color, #0080c0);
	color: var(--theme-primary-color, #0080c0);
}

.download-button-inline {
	flex: none;
	align-self: center;
}

.download-empty {
	font-size: 14px;
	color: #6b7280;
	text-align: center;
	margin: 3rem auto;
}

@media ( max-width : 600px) {
	.download-row {
		padding: 14px 16px;
	}
	.download-row-main {
		gap: 12px;
	}
	.download-button-inline {
		align-self: flex-start;
	}
}
