/* ================================== About =============================== */

.bb-about {
	--bb-media-w: 42%;

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

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

.bb-about--top {
	flex-direction: column;
	align-items: stretch;
}

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

.bb-about--top .bb-about__media-wrap {
	flex: none;
	max-width: 100%;
}

.bb-about__media {
	position: relative;
	aspect-ratio: .86;
	border-radius: var(--bb-radius-lg);
	overflow: hidden;
	box-shadow: var(--bb-shadow);
}

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

.bb-about__play {
	position: absolute;
	left: 50%;
	top: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	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-about__play::after {
	content: "";
	position: absolute;
	inset: -10px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, .45);
	animation: bb-play-ring 2.4s var(--bb-ease) infinite;
}

.bb-about__play .bb-icon {
	width: 20px;
	height: 20px;
	margin-left: 3px;
}

.bb-about__play:hover {
	transform: translate(-50%, -50%) scale(1.07);
	background: #fff;
}

@keyframes bb-play-ring {
	0%   { transform: scale(.9); opacity: .8; }
	70%  { transform: scale(1.25); opacity: 0; }
	100% { transform: scale(1.25); opacity: 0; }
}

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

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

.bb-about__content .bb-sec-head {
	margin-bottom: 18px;
}

.bb-about__content .bb-sec-head__title {
	font-size: clamp(24px, 2.6vw, 31px);
}

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

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

.bb-about__actions {
	margin-top: 26px;
}

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

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

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

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

	.bb-about__media {
		aspect-ratio: 1.25;
	}

	.bb-about__play {
		width: 54px;
		height: 54px;
	}
}
