.ytk-ic-dropzone {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 36px 20px;
	text-align: center;
	border: 2px dashed var(--ytk-border);
	border-radius: var(--ytk-radius);
	background: var(--ytk-surface);
	cursor: pointer;
	transition: border-color 0.15s ease, background-color 0.15s ease;
}

.ytk-ic-dropzone.is-dragover {
	border-color: var(--ytk-accent, #0e9594);
	background: var(--ytk-surface-hover);
}

.ytk-ic-dropzone:focus-visible {
	outline: none;
	box-shadow: var(--ytk-focus-ring);
}

.ytk-ic-dropzone p {
	margin: 2px 0;
}

.ytk-ic-preview-wrap {
	position: relative;
	display: inline-block;
	max-width: 100%;
	background: repeating-conic-gradient(var(--ytk-surface) 0% 25%, var(--ytk-bg) 0% 50%) 50% / 16px 16px;
	border-radius: var(--ytk-radius-sm);
	overflow: hidden;
	line-height: 0;
}

.ytk-ic-preview-wrap img {
	display: block;
	max-width: 100%;
	max-height: 360px;
}

.ytk-ic-banner-guides {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.ytk-ic-guide {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 1.5px dashed;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.ytk-ic-guide span {
	position: absolute;
	top: 2px;
	font-size: 10px;
	font-weight: 700;
	padding: 1px 5px;
	border-radius: 3px;
	white-space: nowrap;
	color: #ffffff;
}

.ytk-ic-guide--desktop {
	width: 100%;
	height: 100%;
	border-color: rgba(255, 255, 255, 0.85);
}

.ytk-ic-guide--desktop span {
	background: rgba(20, 22, 26, 0.75);
}

.ytk-ic-guide--tablet {
	width: 75.49%;
	height: 36.72%;
	border-color: #f2c14e;
}

.ytk-ic-guide--tablet span {
	top: auto;
	bottom: 2px;
	background: #a8660a;
}

.ytk-ic-guide--safe {
	width: 60.3%;
	height: 29.34%;
	border-color: #3fcb7b;
}

.ytk-ic-guide--safe span {
	background: #0a8a3f;
}

.ytk-ic-meta {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 10px;
	margin: 0;
	padding: 12px 14px;
	background: var(--ytk-surface);
	border: 1px solid var(--ytk-border);
	border-radius: var(--ytk-radius-sm);
}

.ytk-ic-meta dt {
	font-size: 0.75em;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--ytk-text-muted);
	margin: 0;
}

.ytk-ic-meta dd {
	margin: 2px 0 0;
	font-weight: 600;
	font-size: 0.95em;
}
