.tmb-bubbles {
	position: relative;
	width: 100%;
	max-width: var(--tmb-max-width, 1200px);
	margin-right: auto;
	margin-left: auto;
	height: var(--tmb-height, 500px);
	min-height: 320px;
	overflow: hidden;
	isolation: isolate;
}

.tmb-bubble {
	position: absolute;
	left: 0;
	top: 0;
	width: var(--tmb-size, 90px);
	height: var(--tmb-size, 90px);
	transform: translate3d(var(--tmb-x, 0), var(--tmb-y, 0), 0);
	will-change: transform, width, height;
	transition: transform 420ms ease, width 320ms ease, height 320ms ease, opacity 240ms ease;
	opacity: 0;
}

.tmb-bubbles.is-ready .tmb-bubble {
	opacity: 1;
}

.tmb-bubble__inner {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
	border: 2px solid #ffffff;
	border-radius: 50%;
	box-sizing: border-box;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.08);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);
	transform: translateZ(0);
}

.tmb-bubble__image {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover !important;
	object-position: center top !important;
	border-radius: 50%;
}

.tmb-bubbles__notice {
	background: #fff8e5;
	border-left: 4px solid #dba617;
	box-sizing: border-box;
	color: #1d2327;
	margin: 1rem 0;
	padding: 0.875rem 1rem;
}

@media (max-width: 767px) {
	.tmb-bubbles {
		min-height: 420px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tmb-bubble {
		transition: none;
	}
}
