/* --- Listado de Adjuntos Simple --- */
.adjuntosList {
	list-style: none;
	margin: 0;
	padding: 0;
	max-width: 520px;
}
.adjuntoListItem {
	display: flex;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid #e5e7eb;
	font-size: 1.08rem;
}
.adjuntoListItem:last-child {
	border-bottom: none;
}
.adjuntoListIcon {
	color: #f49630;
	font-size: 1.5rem;
	margin-right: 16px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
}
.adjuntoListLink {
	color: #222;
	text-decoration: none;
	font-weight: 400;
	transition: color 0.2s;
	word-break: break-all;
}
.adjuntoListLink:hover {
	color: #1746a2;
	text-decoration: underline;
}
.imaxAttachmentAdjuntos h3{margin-bottom: 20px;}
.divAdjuntos {margin-bottom: 20px;}
.divAdjuntos > .divInteriorAdjuntos{background: white; padding: 11px;  padding-bottom: 0px;box-shadow: 2px 2px 8px 0 rgba(0,0,0,.2);}

/* --- Modern Adjuntos Cards --- */
.adjuntosGrid {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: flex-start;
}
.adjuntoCard {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0,0,0,0.08);
	border: 1px solid #e5e7eb;
	width: 100%;
	max-width: 340px;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	transition: box-shadow 0.2s, transform 0.2s;
}
.adjuntoCard:hover {
	box-shadow: 0 6px 24px rgba(0,0,0,0.16);
	transform: translateY(-4px) scale(1.02);
}
.adjuntoCard-body {
	display: flex;
	align-items: flex-start;
	padding: 20px 20px 10px 20px;
}
.adjuntoCard-icon {
	font-size: 2.5rem;
	color: #2563eb;
	margin-right: 16px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
}
.adjuntoCard-content {
	flex: 1;
}
.adjuntoCard-title a {
	font-size: 1.1rem;
	font-weight: 600;
	color: #222;
	text-decoration: none;
	transition: color 0.2s;
}
.adjuntoCard-title a:hover {
	color: #2563eb;
}
.adjuntoCard-desc {
	color: #666;
	font-size: 0.97rem;
	margin-top: 4px;
}
.adjuntoCard-footer {
	padding: 0 20px 18px 20px;
	margin-top: auto;
}
.adjuntoCard-btn {
	background: #2563eb;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-weight: 500;
	font-size: 1rem;
	padding: 10px 0;
	width: 100%;
	transition: background 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.adjuntoCard-btn:hover {
	background: #1746a2;
	color: #fff;
}
.adjuntoCard-size {
	font-size: 0.95em;
	color: #cbd5e1;
	margin-left: 6px;
}

@media (max-width: 900px) {
	.adjuntosGrid {
		gap: 16px;
	}
	.adjuntoCard {
		max-width: 100%;
		min-width: 220px;
	}
}

@media (max-width: 600px) {
	.adjuntosGrid {
		flex-direction: column;
		gap: 12px;
	}
	.adjuntoCard {
		max-width: 100%;
		min-width: 0;
	}
	.adjuntoCard-body, .adjuntoCard-footer {
		padding-left: 12px;
		padding-right: 12px;
	}
}

@media(min-width:576px) { .divAdjuntos {margin-bottom: 0px;} }
@media(min-width:768px) {  }
@media(min-width:992px) {  }
@media(min-width:1200px) {  }