.pu-drop {
	border: 2px dashed #adb5bd;
	border-radius: 12px;
	padding: 2rem 1rem;
	text-align: center;
	cursor: pointer;
	background: #f8f9fa;
	transition: border-color .15s ease, background .15s ease;
}

.pu-drop:hover,
.pu-drop:focus,
.pu-drop.pu-dragover {
	border-color: #082897;
	background: #eef1fb;
	outline: none;
}

.pu-drop-icon {
	font-size: 2rem;
	line-height: 1;
	color: #082897;
	margin-bottom: .35rem;
}

.pu-drop-link {
	color: #082897;
	text-decoration: underline;
}

.pu-previews {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
	gap: .5rem;
	margin-top: .75rem;
}

.pu-thumb {
	position: relative;
	aspect-ratio: 1 / 1;
	border-radius: 8px;
	overflow: hidden;
	background: #e9ecef;
}

.pu-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pu-thumb-remove {
	position: absolute;
	top: 3px;
	right: 3px;
	width: 22px;
	height: 22px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(0, 0, 0, .6);
	color: #fff;
	font-size: 15px;
	line-height: 22px;
	cursor: pointer;
}

.pu-thumb.pu-done::after {
	content: "\2713";
	position: absolute;
	bottom: 3px;
	right: 4px;
	padding: 0 5px;
	border-radius: 4px;
	background: #198754;
	color: #fff;
	font-size: 12px;
}

.pu-thumb.pu-error {
	outline: 2px solid #dc3545;
	outline-offset: -2px;
}

/*
	Privacy fine print: present for anyone who looks, quiet for everyone else.
	Size only -- Bootstrap has no utility this small (.fs-* stops at 1rem, .small is
	0.875em). Color comes from .text-body-secondary in the markup so it stays on the
	theme token instead of a hardcoded grey.
*/
.pu-fineprint {
	font-size: 9px;
	line-height: 1.6;
}

/* Honeypot: kept out of sight and out of the tab order. */
.pu-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
