/* ========================== Image + text row ============================ */

.bb-imgtext {
	--bb-media-w: 46%;

	display: flex;
	align-items: center;
	gap: 52px;
}

.bb-imgtext--right {
	flex-direction: row-reverse;
}

/* ------------------------------------------------------------------ media */

.bb-imgtext__media-wrap {
	position: relative;
	flex: 0 0 var(--bb-media-w);
	max-width: var(--bb-media-w);
	min-width: 0;
}

.bb-imgtext__accent {
	position: absolute;
	z-index: 0;
	width: 62%;
	height: 62%;
	border-radius: var(--bb-radius);
	background: var(--bb-saffron);
	opacity: .16;
}

.bb-imgtext--left .bb-imgtext__accent {
	left: -18px;
	bottom: -18px;
}

.bb-imgtext--right .bb-imgtext__accent {
	right: -18px;
	bottom: -18px;
}

.bb-imgtext__media {
	position: relative;
	z-index: 1;
	aspect-ratio: 1.15;
	border-radius: var(--bb-radius-lg);
	overflow: hidden;
	box-shadow: var(--bb-shadow);
}

.bb-imgtext__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bb-imgtext__media-second {
	position: absolute;
	z-index: 2;
	width: 42%;
	aspect-ratio: 1.2;
	border-radius: var(--bb-radius);
	overflow: hidden;
	border: 5px solid #fff;
	box-shadow: var(--bb-shadow);
}

.bb-imgtext--left .bb-imgtext__media-second {
	right: -22px;
	bottom: -28px;
}

.bb-imgtext--right .bb-imgtext__media-second {
	left: -22px;
	bottom: -28px;
}

.bb-imgtext__media-second img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bb-imgtext__play {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: rgba(255, 255, 255, .92);
	color: var(--bb-navy);
	box-shadow: 0 8px 26px rgba(0, 0, 0, .28);
	transition: transform .25s var(--bb-ease), background-color .25s var(--bb-ease);
}

.bb-imgtext__play .bb-icon {
	width: 19px;
	height: 19px;
	margin-left: 3px;
}

.bb-imgtext__play:hover {
	transform: translate(-50%, -50%) scale(1.08);
	background: var(--bb-saffron);
	color: #fff;
}

/* ---------------------------------------------------------------- content */

.bb-imgtext__content {
	flex: 1 1 auto;
	min-width: 0;
}

.bb-imgtext__content .bb-sec-head {
	margin-bottom: 16px;
}

.bb-imgtext__body {
	color: var(--bb-body);
	font-size: 15.5px;
	line-height: 1.9;
}

.bb-imgtext__body p:last-child {
	margin-bottom: 0;
}

.bb-imgtext__bullets {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px 26px;
	margin-top: 22px;
}

.bb-imgtext__bullet {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	min-width: 0;
}

.bb-imgtext__bullet-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	margin-top: 2px;
	border-radius: 50%;
	background: rgba(232, 149, 43, .16);
	color: var(--bb-saffron-ink);
	font-size: 12px;
	flex: none;
}

.bb-imgtext__bullet-icon .bb-icon,
.bb-imgtext__bullet-icon svg {
	width: 1em;
	height: 1em;
}

.bb-imgtext__bullet span:last-child {
	color: var(--bb-heading);
	font-size: 14.5px;
	font-weight: 500;
	line-height: 1.6;
}

.bb-imgtext__actions {
	margin-top: 28px;
}

/* ------------------------------------------------------------ breakpoints */

@media (max-width: 991px) {
	.bb-imgtext {
		gap: 32px;
	}
}

@media (max-width: 767px) {
	.bb-imgtext,
	.bb-imgtext--right {
		flex-direction: column;
		align-items: stretch;
		gap: 46px;
	}

	.bb-imgtext__media-wrap {
		flex: none;
		max-width: 100%;
	}

	.bb-imgtext__media {
		aspect-ratio: 1.4;
	}

	.bb-imgtext__media-second {
		width: 38%;
		right: 12px;
		left: auto;
		bottom: -24px;
	}

	.bb-imgtext__bullets {
		grid-template-columns: 1fr !important;
	}
}
