/*==============================*/
/*=====----- TEMPLATE -----=====*/
/*==============================*/

.social-callout {
	position: relative;
	max-width: 1160px;
	margin: 0 auto 120px;
	color: var(--white);
	opacity: 1;
	transition: opacity var(--transition-appendix);
}

.social-callout > .inner {
	position: relative;
	min-height: 718px;
}

.social-callout > .inner .bg-image,
.social-callout > .inner .bg-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.social-callout > .inner .bg-image:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--black);
	opacity: 0.6;
	pointer-events: none;
}

.social-callout > .inner .content-outer {
	display: flex;
	flex-direction: column;
	background: var(--gray-600);
}

.social-callout > .inner .content {
	position: relative;
	z-index: 1;
	max-width: 375px;
	margin: 0 auto;
}

.social-callout .title,
.social-callout .description {
	line-height: 1.2;
	text-shadow: 0 0 var(--space-2) rgba(0, 0, 0, 0.35);
	color: var(--white);
}

.social-callout > .inner .content .title {
	font-family: var(--font-contrast-condensed);
	font-weight: var(--font-weight-extrabold);
	font-size: var(--text-3xl);
	padding: 30px 42px 15px;
}

.social-callout > .inner .content .description {
	font-family: var(--font-body);
	font-weight: var(--font-weight-medium);
	font-size: var(--text-base);
	padding: 0 42px 36px;
}

.social-callout > .inner .content .button-cont {
	padding: 0 42px;
	margin-bottom: -20px;
}

.social-callout .video-outer {
	aspect-ratio: 9/16;
	width: 290px;
	max-width: 100%;
	margin: 0 auto;
	transform: translateY(60px);
}

.social-callout .follow-button i {
	display: none;
}

/*============================*/
/*=====----- SLIDES -----=====*/
/*============================*/

.social-callout .slide,
.social-callout .video-cont,
.social-callout .plyr {
	position: relative;
	z-index: 1;
}

.social-callout .slide {
	border-radius: 13px;
	overflow: hidden;
}

.social-callout .video-cont::before {
	position: absolute;
	inset: 0 0 auto 0;
	z-index: 2;
	display: block;
	height: 92px;
	background: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,1) 33%, rgba(0,0,0,0));
	content: '';
	pointer-events: none;
	opacity: 1;
	transition: opacity var(--transition-appendix);
}

.social-callout .slide.no-profile-graphic .video-cont::before {
	display: none;
}

.social-callout .plyr {
	--plyr-color-main: var(--sw-button-primary-bg);
	--plyr-video-control-background-hover: var(--sw-button-primary-bg-hover);
}

.social-callout .profile-link,
.social-callout .profile-graphic.no-link {
	position: absolute;
	inset: 11px auto auto 9px;
	z-index: 3;
	display: block;
	padding: 0;
	background: none !important;
	opacity: 1;
	transition: opacity var(--transition-appendix);
}

.social-callout .inner .video-cont .overlay-profile-link {
	position: absolute;
	top: 10px;
	left: var(--space-5);
	z-index: 9;
	display: flex;
	align-items: center;
	gap: 10px;
}

.social-callout .profile-graphic {
	width: 60px;
	flex-shrink: 0;
	pointer-events: none;
}

.social-callout .profile-name {
	font-family: var(--font-soft);
	font-weight: var(--font-weight-bold);
	font-size: var(--text-xl);
	text-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}

.social-callout .plyr {
	width: 100%;
	aspect-ratio: 9 / 16;
}

.social-callout .content-section {
	position: absolute;
	inset: auto 0 0 0;
	z-index: 2;
	padding: 20px 25px 60px;
	text-shadow: 0 4px 16px var(--black);
	pointer-events: none;
	opacity: 1;
	transition: opacity var(--transition-appendix);
}

.social-callout .slide-title {
	font-weight: var(--font-weight-heavy);
	font-size: 20px;
	line-height: 1.3;
	color: inherit;
}

.social-callout .plyr__progress__container {
	display: none;
	padding-right: 10px;
}

.social-callout .plyr__controls {
	justify-content: flex-start;
}

.social-callout .plyr__volume {
	min-width: 40px;
	width: auto;
}

.social-callout .plyr__controls .plyr__controls__item:first-child {
	margin-right: 0;
}

.social-callout .plyr__control--overlaid {
	align-items: center;
	justify-content: center;
	width: 70px;
	height: auto;
	aspect-ratio: 1;
	font-size: 16px;
	color: var(--off-white);
	background: rgba(36, 31, 33, 0.65);
	border: 2px solid var(--off-white);
	border-radius: var(--rounded-circle);
}

.social-callout .plyr--full-ui.plyr--video .plyr__control--overlaid {
	display: flex;
}

/*----- video playing -----*/

.social-callout .slide.playing .video-cont::before,
.social-callout .slide.playing .content-section,
.social-callout .slide.playing .profile-link,
.social-callout .slide.playing .profile-graphic.no-link {
	opacity: 0;
	pointer-events: none;
}

/*===================================*/
/*=====----- MEDIA QUERIES -----=====*/
/*===================================*/

@media (hover: hover) {
	.social-callout .plyr--video .plyr__control:hover {
		background: none;
	}

	.social-callout .plyr--video .plyr__control--overlaid:hover {
		color: var(--off-white);
		background: rgba(36, 31, 33, 0.65);
	}
}

@media (min-width: 40em) {
	.social-callout {
		margin-top: 75px;
	}

	.social-callout > .inner .content-outer {
		display: flex;
		flex-direction: row-reverse;
	}

	.social-callout .video-outer {
		margin-left: 40px;
		min-width: 300px;
	}

	.social-callout > .inner {
		min-height: unset;
	}

	.social-callout > .inner .content {
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 104px 43px 113.5px;
		flex: 1 1 696px;
		min-height: 420px;
		max-width: unset;
	}

	.social-callout > .inner .content .title {
		padding: 0 0 10px;
		font-size: var(--text-4xl);
	}

	.social-callout > .inner .content .description {
		padding: 0 0 22px;
		font-size: var(--text-lg);
	}

	.social-callout > .inner .content .button-cont {
		padding: 0;
		margin-bottom: 0;
	}
}

@media (min-width: 64em) {
	.social-callout .profile-link,
	.social-callout .profile-graphic.no-link {
		inset: 11px auto auto 11px;
	}

	.social-callout .content-section {
		padding: 23px 29px 60px;
	}

	.social-callout .slide-title {
		font-size: 22px;
	}

	.social-callout .video-outer {
		transform: none;
		margin-top: -78px;
		margin-bottom: -78px;
		margin-left: 80px;
		min-width: 324px;
		min-height: 575px;
	}

	.social-callout > .inner .content {
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 52px 83px 57px;
		flex: 1 1 696px;
		min-height: 420px;
	}

	.social-callout {
		margin-bottom: 176px;
	}
}

@media (min-width: 75em) {
	.social-callout .plyr__progress__container {
		display: block;
	}
}