.fub-wrap {
	--fub-maxw: 1100px;
	--fub-gap: 34px;
	--fub-icon: 22px;
	--fub-video-ratio: 16 / 9;

	width: 100%;
	padding: 56px 16px;
	background: #ffffff;
	color: #0f172a;
}

.fub-inner {
	max-width: var(--fub-maxw);
	margin: 0 auto;
	display: grid;
	gap: var(--fub-gap);
	align-items: center;
}

.fub-layout-split .fub-inner {
	grid-template-columns: 1.15fr 1fr;
}

.fub-layout-centered .fub-inner {
	grid-template-columns: 1fr;
	text-align: center;
}

.fub-media-link {
	display: block;
	text-decoration: none;
}

.fub-media {
	width: 100%;
}

.fub-video {
	aspect-ratio: var(--fub-video-ratio);
	border-radius: 16px;
	overflow: hidden;
	background: #0b1220;
	box-shadow: 0 18px 50px rgba(2, 6, 23, 0.12);
	transform: translateZ(0);
}

.fub-video-el {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.fub-content {
	display: flex;
	flex-direction: column;
	gap: 12px;
	justify-content: center;
}

.fub-title {
	margin: 0;
	font-size: clamp(28px, 3.2vw, 40px);
	font-weight: 800;
	letter-spacing: -0.02em;
}

.fub-text {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	color: #475569;
	max-width: 56ch;
}

.fub-layout-centered .fub-text {
	margin-left: auto;
	margin-right: auto;
}

.fub-social {
	margin-top: 8px;
	display: inline-flex;
	gap: 16px;
	align-items: center;
	flex-wrap: wrap;
}

.fub-layout-centered .fub-social {
	justify-content: center;
}

.fub-ico {
	width: calc(var(--fub-icon) + 18px);
	height: calc(var(--fub-icon) + 18px);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	text-decoration: none;
	transition:
		transform 0.12s ease,
		box-shadow 0.12s ease,
		background 0.12s ease;
	color: #334155;
	background: rgba(15, 23, 42, 0.04);
}

.fub-ico svg {
	width: var(--fub-icon);
	height: var(--fub-icon);
	display: block;
}

.fub-ico:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(2, 6, 23, 0.1);
}

/* Brand coloring (enabled when data-brand="1") */
.fub-wrap[data-brand='1'] .fub-facebook {
	color: #1877f2;
}
.fub-wrap[data-brand='1'] .fub-twitter {
	color: #111827;
} /* X tends to be black */
.fub-wrap[data-brand='1'] .fub-instagram {
	color: #e1306c;
}
.fub-wrap[data-brand='1'] .fub-linkedin {
	color: #0a66c2;
}
.fub-wrap[data-brand='1'] .fub-youtube {
	color: #ff0000;
}
.fub-wrap[data-brand='1'] .fub-tiktok {
	color: #111827;
}
.fub-wrap[data-brand='1'] .fub-whatsapp {
	color: #25d366;
}
.fub-wrap[data-brand='1'] .fub-telegram {
	color: #229ed9;
}
.fub-wrap[data-brand='1'] .fub-email {
	color: #0f172a;
}
.fub-wrap[data-brand='1'] .fub-website {
	color: #0f172a;
}

/* Responsive */
@media (max-width: 860px) {
	.fub-layout-split .fub-inner {
		grid-template-columns: 1fr;
	}
	.fub-media {
		order: 0;
	}
	.fub-content {
		order: 1;
		text-align: center;
		align-items: center;
	}
	.fub-text {
		max-width: 60ch;
	}
}
