.reinpe-downloads-wrapper {
	margin-top: 20px;
	margin-bottom: 20px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.reinpe-downloads-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.reinpe-download-item {
	display: flex;
	align-items: center;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 16px 20px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none !important;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}
.reinpe-download-item:hover {
	border-color: var(--reinpe-brand-color, #0065FE);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
	transform: translateY(-2px);
}
.reinpe-download-icon-container {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 10px;
	margin-right: 16px;
	flex-shrink: 0;
	transition: transform 0.3s ease;
}
.reinpe-download-item:hover .reinpe-download-icon-container {
	transform: scale(1.08);
}

/* Colores de iconos específicos por tipo de archivo */
.reinpe-download-item.reinpe-file-pdf .reinpe-download-icon-container {
	background: rgba(239, 68, 68, 0.08);
	color: #ef4444;
}
.reinpe-download-item.reinpe-file-image .reinpe-download-icon-container {
	background: rgba(16, 185, 129, 0.08);
	color: #10b981;
}
.reinpe-download-item.reinpe-file-archive .reinpe-download-icon-container {
	background: rgba(245, 158, 11, 0.08);
	color: #f59e0b;
}
.reinpe-download-item.reinpe-file-doc .reinpe-download-icon-container {
	background: rgba(59, 130, 246, 0.08);
	color: #3b82f6;
}
.reinpe-download-item.reinpe-file-other .reinpe-download-icon-container {
	background: rgba(107, 114, 128, 0.08);
	color: #6b7280;
}

.reinpe-download-svg-icon {
	width: 24px;
	height: 24px;
	stroke-width: 2;
}

.reinpe-download-details {
	flex: 1;
	min-width: 0;
}
.reinpe-download-title {
	margin: 0 0 4px 0 !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	color: #1e293b !important;
	line-height: 1.4 !important;
}
.reinpe-download-meta {
	font-size: 13px;
	color: #64748b;
	font-weight: 500;
}
.reinpe-download-action {
	margin-left: 20px;
	flex-shrink: 0;
}
.reinpe-download-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #f1f5f9;
	color: #334155;
	padding: 8px 18px;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.2s ease;
}
.reinpe-download-item:hover .reinpe-download-button {
	background: var(--reinpe-brand-color, #0065FE);
	color: #ffffff;
}
.reinpe-download-arrow-icon {
	width: 16px;
	height: 16px;
	stroke-width: 2.5;
	transition: transform 0.2s ease;
}
.reinpe-download-item:hover .reinpe-download-arrow-icon {
	transform: translateY(2px);
}

@media (max-width: 576px) {
	.reinpe-download-item {
		padding: 12px 16px;
	}
	.reinpe-download-icon-container {
		width: 40px;
		height: 40px;
		margin-right: 12px;
	}
	.reinpe-download-svg-icon {
		width: 20px;
		height: 20px;
	}
	.reinpe-download-title {
		font-size: 14px !important;
	}
	.reinpe-download-button span {
		display: none;
	}
	.reinpe-download-button {
		padding: 8px;
		border-radius: 50%;
	}
	.reinpe-download-arrow-icon {
		width: 18px;
		height: 18px;
	}
}
