.otv-public-upload-wrap {
	max-width: 920px;
	margin: 24px auto;
	padding: 0 14px;
}

.otv-public-upload-form {
	background: #ffffff;
	border: 1px solid #dcdcde;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
	padding: 24px;
}

.otv-public-upload-form h2 {
	margin: 0 0 8px;
	font-size: clamp(24px, 4vw, 34px);
	line-height: 1.15;
}

.otv-public-intro {
	margin: 0 0 20px;
	color: #646970;
}

.otv-public-card-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.otv-public-file-box {
	display: flex;
	flex-direction: column;
	gap: 10px;
	border: 1px dashed #b8c4d2;
	background: #f6f7f7;
	border-radius: 14px;
	padding: 16px;
}

.otv-public-label {
	font-weight: 700;
	font-size: 18px;
}

.otv-public-help {
	font-size: 14px;
	color: #646970;
}

.otv-public-file-box input[type="file"] {
	width: 100%;
}

.otv-public-preview {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 210px;
	background: #ffffff;
	border: 1px solid #dcdcde;
	border-radius: 12px;
	overflow: hidden;
	color: #646970;
}

.otv-public-preview img {
	display: block;
	max-width: 100%;
	max-height: 320px;
}

.otv-public-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
	min-height: 48px;
	padding: 0 24px;
	border: 0;
	border-radius: 999px;
	background: #2271b1;
	color: #ffffff;
	font-weight: 700;
	cursor: pointer;
}

.otv-public-submit[disabled] {
	opacity: 0.65;
	cursor: wait;
}

.otv-public-status {
	margin-top: 18px;	
	border: 1px solid #dcdcde;
	border-radius: 12px;
	padding: 12px;
	background: #ffffff;
}

.otv-public-progress {
	height: 12px;
	border-radius: 999px;
	background: #e5e7eb;
	overflow: hidden;
}

.otv-public-progress span {
	display: block;
	height: 100%;
	background: #2271b1;
	transition: width 0.25s ease;
}

.otv-public-status p {
	margin: 8px 0 0;
	color: #646970;
}

.otv-public-message {
	margin-top: 16px;
	padding: 12px 14px;
	border-radius: 12px;
	border: 1px solid #c3c4c7;
	background: #f6f7f7;
}

.otv-public-success {
	border-color: #00a32a;
	background: #edfaef;
}

.otv-public-error {
	border-color: #d63638;
	background: #fcf0f1;
}

.otv-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

@media (max-width: 720px) {
	.otv-public-upload-form {
		padding: 18px;
	}

	.otv-public-card-grid {
		grid-template-columns: 1fr;
	}

	.otv-public-preview {
		min-height: 180px;
	}

	.otv-public-submit {
		width: 100%;
	}
}
