.iaew-iframe-embed-shell {
	display: flex;
	width: 100%;
}

.iaew-iframe-embed {
	--iaew-iframe-aspect-ratio: 16 / 9;
	--iaew-iframe-height: 520px;
	width: 100%;
	max-width: 100%;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 24px;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
	overflow: hidden;
}

.iaew-iframe-embed__browser-bar {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 16px;
	background:
		linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(241, 245, 249, 0.96));
	border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.iaew-iframe-embed__browser-actions {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.iaew-iframe-embed__dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	display: inline-block;
}

.iaew-iframe-embed__dot--close {
	background: #ff5f57;
}

.iaew-iframe-embed__dot--minimize {
	background: #febc2e;
}

.iaew-iframe-embed__dot--maximize {
	background: #28c840;
}

.iaew-iframe-embed__browser-address {
	min-width: 0;
	flex: 1;
	padding: 9px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.9);
	color: #475569;
	font-size: 13px;
	line-height: 1.4;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.iaew-iframe-embed__viewport {
	position: relative;
	width: 100%;
	background: #fff;
}

.iaew-iframe-embed--aspect-ratio .iaew-iframe-embed__viewport {
	aspect-ratio: var(--iaew-iframe-aspect-ratio);
}

.iaew-iframe-embed--fixed-height .iaew-iframe-embed__viewport {
	height: var(--iaew-iframe-height);
}

.iaew-iframe-embed__iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 100%;
	border: 0;
	background: #fff;
}

@media (max-width: 767px) {
	.iaew-iframe-embed {
		border-radius: 18px;
	}

	.iaew-iframe-embed__browser-bar {
		padding: 10px 12px;
		gap: 10px;
	}

	.iaew-iframe-embed__browser-actions {
		gap: 6px;
	}

	.iaew-iframe-embed__dot {
		width: 10px;
		height: 10px;
	}

	.iaew-iframe-embed__browser-address {
		padding: 8px 12px;
		font-size: 12px;
	}
}
