/*
 * Iframe slot — wrapper for embedded booking widgets with a "browser frame"
 * head and a placeholder fallback. Used on /konferencie/ and similar.
 */

.teledom-design .iframe-slot {
	background: var(--paper);
	border: 1px solid var(--line-light);
	border-radius: var(--r-lg);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	position: relative;
}

.teledom-design .iframe-slot .placeholder {
	padding: 80px 40px;
	text-align: center;
	background: repeating-linear-gradient(45deg, var(--paper) 0 12px, var(--paper-2) 12px 24px);
	min-height: 400px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 18px;
}

.teledom-design .iframe-slot .placeholder .tag {
	display: inline-block;
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold-deep);
	background: var(--paper);
	padding: 8px 16px;
	border-radius: 99px;
	border: 1px solid var(--line-light);
}

.teledom-design .iframe-slot .placeholder h3 {
	font-family: var(--display);
	font-size: 28px;
	color: var(--ink);
	margin: 0;
	font-weight: 500;
	max-width: 30ch;
}

.teledom-design .iframe-slot .placeholder p {
	margin: 0;
	font-size: 14px;
	color: var(--muted-light);
	max-width: 44ch;
	font-family: var(--mono);
	letter-spacing: 0.04em;
}

.teledom-design .iframe-slot iframe {
	width: 100%;
	height: 2000px;
	border: 0;
	display: block;
	background: var(--paper);
}

.teledom-design .iframe-frame-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 28px;
	background: var(--ink);
	color: var(--paper);
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.teledom-design .iframe-frame-head .dots {
	display: flex;
	gap: 6px;
}

.teledom-design .iframe-frame-head .dots i {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	display: block;
}

.teledom-design .iframe-frame-head .url {
	color: var(--gold-bright);
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.04em;
	text-transform: lowercase;
}
