/* ── 인솔자 신청 페이지 ── */
.dw-instructor-wrap {
	max-width: 620px;
	margin: 40px auto 80px;
	padding: 0 16px;
}

.dw-instructor-card {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 16px;
	padding: 40px 40px 48px;
}

.dw-inst-header {
	margin-bottom: 28px;
}

.dw-inst-header h1 {
	font-size: 22px;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 8px;
}

.dw-inst-desc {
	font-size: 14px;
	color: #666;
	line-height: 1.7;
}

.dw-inst-notice {
	text-align: center;
	padding: 48px 24px;
}

.dw-inst-notice h2 {
	font-size: 18px;
	font-weight: 600;
	margin: 12px 0 8px;
}

.dw-inst-notice p {
	font-size: 14px;
	color: #666;
	line-height: 1.7;
	margin-bottom: 20px;
}

.dw-inst-icon {
	font-size: 40px;
	margin-bottom: 8px;
}

.dw-inst-notice--ok .dw-inst-icon,
.dw-inst-notice--ok h2 {
	color: #2d5016;
}

.dw-inst-notice--pending .dw-inst-icon {
	color: #888;
}

.dw-inst-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: #fff8e1;
	color: #b8860b;
	font-size: 13px;
	font-weight: 600;
	padding: 6px 16px;
	border-radius: 20px;
	margin-bottom: 12px;
}

.dw-inst-rejected {
	background: #fff3cd;
	border: 1px solid #ffcd4a;
	border-radius: 8px;
	padding: 12px 16px;
	font-size: 13px;
	color: #856404;
	margin-bottom: 20px;
	line-height: 1.6;
}

.dw-inst-error {
	background: #fff0f0;
	border: 1px solid #f5c6cb;
	border-radius: 8px;
	padding: 12px 16px;
	font-size: 13px;
	color: #721c24;
	margin-bottom: 20px;
}

.dw-form-field {
	margin-bottom: 24px;
}

.dw-form-label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
}

.dw-req {
	color: #e53935;
	margin-left: 2px;
}

.dw-form-hint {
	font-weight: 400;
	font-size: 12px;
	color: #999;
	margin-left: 6px;
}

.dw-form-input {
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 10px 14px;
	font-size: 14px;
	font-family: inherit;
	color: #1a1a1a;
	background: #fafaf8;
	transition: border-color 0.15s;
	box-sizing: border-box;
}

.dw-form-input:focus {
	outline: none;
	border-color: #2d5016;
	background: #fff;
}

.dw-form-textarea {
	resize: vertical;
	min-height: 80px;
}

.dw-char-count {
	text-align: right;
	font-size: 11px;
	color: #bbb;
	margin-top: 4px;
}

.dw-inst-style-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 4px;
}

.dw-inst-style-item {
	display: flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	font-size: 13px;
	padding: 7px 14px;
	border: 1px solid #ddd;
	border-radius: 20px;
	background: #fafaf8;
	transition: border-color 0.15s, background 0.15s;
	user-select: none;
}

.dw-inst-style-item:hover {
	border-color: #2d5016;
}

.dw-inst-style-item input[type="checkbox"] {
	display: none;
}

.dw-inst-style-item:has(input:checked) {
	border-color: #2d5016;
	background: #eaf3de;
	color: #2d5016;
	font-weight: 600;
}

.dw-inst-submit-wrap {
	margin-top: 32px;
	text-align: center;
}

.dw-inst-submit {
	padding: 12px 36px;
	font-size: 15px;
	border-radius: 24px;
}

@media (max-width: 600px) {
	.dw-instructor-card {
		padding: 28px 20px 36px;
	}

	.dw-inst-style-grid {
		gap: 6px;
	}
}
