/*
	README

	Modify this file as much or as little as needed.

	This file is shared across all CCL widgets in the Slider family. This enables the ability to
	a family of widgets in a single update without touching the structure of the widget and without needing
	to duplicate efforts across several widget-specific CSS files.
*/

.ccl-widget.core-hero-image {
	max-width: calc(100% - 30px);
	left: 30px;
}

.core-hero-image .slide .slide-title {
	font-family: var(--pitch);
	font-size: 30px;
	text-transform: uppercase;
	margin-bottom: 0;
	line-height: 1.1;
	max-width: 100%;
}

.ccl-widget.core-hero-image .title-desc-container {
	max-width: 100%;
}

.ccl-widget.core-hero-image .title-desc-container .line-btn {
	margin-bottom: -22px;
}

.ccl-widget.core-hero-image .title-desc-container .line-btn a,
.ccl-widget.core-hero-image .title-desc-container .subtitle-no-link {
	color: var(--white);
	font-size: 18px;
	text-transform: uppercase;
	font-family: var(--pitch);
}

.ccl-widget.core-hero-image .title-desc-container .line-btn:before, 
.ccl-widget.core-hero-image .title-desc-container .line-btn:after,
.ccl-widget.core-hero-image .title-desc-container .line-btn .arrow {
	background-color: #f5ad9f;
	height: 4px;
}

.ccl-widget.core-hero-image .content-section {
	padding: 0 0 10px 23px;
	max-width: 277px;
}

.core-hero-image .img-cont:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 40%);
	pointer-events: none;
}

.core-hero-image.hero-imagehide-content .img-cont:after {
	background: transparent;
}

.core-hero-image .slide p {
	font-size: var(--text-base);
	font-weight: normal;
}

@media(hover:hover) {
	.ccl-widget.core-hero-image .slide .slide-title:hover,
	.ccl-widget.core-hero-image .slide .slide-title a:hover {
		text-decoration: none;
	}
}

@media(min-width: 64em) {
	.ccl-widget.core-hero-image {
		max-width: calc(100% - 60px);
		left: 60px;
	}

	.core-hero-image .slide .slide-title {
		font-size: 60px;
	}

	.ccl-widget.core-hero-image .content-section {
		padding: 0 0 45px 60px;
		max-width: 700px;
	}

	.ccl-widget.core-hero-image .title-desc-container .line-btn a,
	.ccl-widget.core-hero-image .title-desc-container .subtitle-no-link {
		font-size: 30px;
	}

	.ccl-widget.core-hero-image .title-desc-container .line-btn,
	.ccl-widget.core-hero-image .title-desc-container .subtitle-no-link {
		margin-bottom: -25px;
	}

	.core-hero-image .img-cont:after {
		background:  radial-gradient(at 0% 95%, rgba(0,0,0,0.4), transparent);
	}
}

/* Hero Image w/ Caption */

.ccl-widget.hero-image-with-caption {
	max-width: 100%;
	left: unset;
}

.ccl-widget.hero-image-with-caption .content-section {
	padding: 0;
	gap: 10px;
	pointer-events: none;
}

.ccl-widget.hero-image-with-caption .content-section a {
	pointer-events: all;	
}

.ccl-widget.hero-image-with-caption .content-section .desktop-description:before {
	content: '';
	width: 31px;
	height: 4px;
	background-color: var(--peach);
	position: absolute;
	bottom: 0;
	left: 0;
	pointer-events: none;
}

.ccl-widget.hero-image-with-caption .content-section .desktop-description,
.ccl-widget.hero-image-with-caption .content-section .desktop-description:before {
	display: none;
}

.ccl-widget.hero-image-with-caption .mobile-description-container {
	background-color: var(--gray);
	border-top: 11px solid var(--peach);
	padding: 21px 30px;
}

.ccl-widget.hero-image-with-caption .mobile-description-container a {
	color: var(--peach);
	text-decoration: underline;
	font-family: var(--helvetica);
	font-size: 16px;
	font-weight: normal;
}

.ccl-widget.hero-image-with-caption .content-section .title-cont,
.ccl-widget.hero-image-with-caption .content-section .subtitle-cont {
	padding: 11px 19px;
}

.ccl-widget.hero-image-with-caption .content-section .title-cont {
	background-color: var(--peach);
}

.ccl-widget.hero-image-with-caption .content-section .subtitle-cont {
	background-color: var(--teal);
	margin-bottom: 31px;
}

.ccl-widget.hero-image-with-caption .content-section .slide-title,
.ccl-widget.hero-image-with-caption .content-section .subtitle {
	font-family: var(--pitch);
	font-size: 18px;
	text-transform: uppercase;
	color: var(--gray-dark);
	line-height: var(--leading-none);
}

.ccl-widget.hero-image-with-caption .img-cont .credit-cont {
	position: absolute;
	bottom: 4px;
	right: 11px;
	z-index: 3;
	text-align: right;
}

.ccl-widget.hero-image-with-caption .img-cont .credit-cont .credit {
	font-family: var(--helvetica);
	color: white;
	font-size: 12px;
}

.ccl-widget.hero-image-with-caption .img-cont .credit-cont i {
	color: white;
	font-size: 12px;
}

.ccl-widget.hero-image-with-caption .slide .img-cont .shared-play-button {
	top: 20%;
	left: unset;
	right: 0;
}

.ccl-widget.hero-image-with-caption .slide .sponsored {
	color: var(--white);
	z-index: 1;
	font-size: 14px;
	font-family: var(--pitch);
	text-transform: uppercase;
}

@media(hover:hover) {
	.ccl-widget.hero-image-with-caption .content-section .slide-title:hover,
	.ccl-widget.hero-image-with-caption .content-section .slide-title a:hover {
		color: var(--gray-dark);
	}
}

@media(min-width: 40em) {

	.ccl-widget.hero-image-with-caption {
		max-width: calc(100% - 30px);
		left: 30px;
	}

	.ccl-widget.hero-image-with-caption .slide .img-cont.has-credit:before {
		content: '';
		width: 100%;
		height: 60%;
		position: absolute;
		bottom: 0;
		right: 0;
		background-image: url('/includes/public/assets/shared/angle-lg.svg');
		background-size: cover;
		background-repeat: no-repeat;
		pointer-events: none;
		z-index: 2;
	}

	.ccl-widget.hero-image-with-caption .content-section .desktop-description,
	.ccl-widget.hero-image-with-caption .content-section .desktop-description:before {
		display: block;
	}

	.ccl-widget.hero-image-with-caption .content-section .desktop-description:before {
		bottom: -16px;
	}

	.ccl-widget.hero-image-with-caption .content-section .desktop-description a {
		color: var(--peach);
		text-decoration: underline;
	}

	.ccl-widget.hero-image-with-caption .mobile-description-container {
		display: none;
	}

	.ccl-widget.hero-image-with-caption .content-section {
		flex-direction: column;
		align-items: flex-start;
	}

	.ccl-widget.hero-image-with-caption .content-section {
		bottom: 27px;
		max-width: 515px;
	}

	.ccl-widget.hero-image-with-caption .content-section .desktop-description {
		position: relative;
		left: 59px;
	}

	.ccl-widget.hero-image-with-caption .content-section .title-cont,
	.ccl-widget.hero-image-with-caption .content-section .subtitle-cont {
		padding: 12px 19px;
	}

	.ccl-widget.hero-image-with-caption .content-section .title-cont {
		margin-bottom: 0;
	}

	.ccl-widget.hero-image-with-caption .content-section .subtitle-cont {
		margin-bottom: 2px;
	}

	.ccl-widget.hero-image-with-caption .img-cont .credit-cont {
		bottom: 25px;
		right: 21px;
	}

	.ccl-widget.hero-image-with-caption .slide .img-cont.is-dtn .credit-cont {
		bottom: 8px;
		right: 8px;
	}

	.ccl-widget.hero-image-with-caption .content-section .desktop-description,
	.ccl-widget.hero-image-with-caption .content-section .desktop-description a {
		line-height: var(--leading-snug);
		font-weight: normal;
	}

	.ccl-widget.hero-image-with-caption .slide .sponsored {
    	font-size: 18px;
    }
}

@media(min-width: 64em) {
	.ccl-widget.hero-image-with-caption {
		max-width: calc(100% - 60px);
		left: 60px;
	}

	.ccl-widget.hero-image-with-caption .content-section {
		bottom: 76px;
	}

	.ccl-widget.hero-image-with-caption .content-section .slide-title,
	.ccl-widget.hero-image-with-caption .content-section .subtitle {
		font-size: 20px;
	}

	.ccl-widget.hero-image-with-caption .content-section .desktop-description,
	.ccl-widget.hero-image-with-caption .content-section .desktop-description a {
		font-size: 18px;
	}

	.ccl-widget.hero-image-with-caption .img-cont .credit-cont .credit,
	.ccl-widget.hero-image-with-caption .img-cont .credit-cont i {
		font-size: 14px;
	}

	.ccl-widget.hero-image-with-caption .content-section .subtitle-cont {
		margin-bottom: 15px;
	}

	.ccl-widget.hero-image-with-caption .slide .sponsored {
		margin-bottom: -4px;
		font-size: 24px;
	}


	.ccl-widget.hero-image-with-caption .slide .img-cont.is-dtn .credit-cont {
		bottom: 25px;
		right: 21px;
	}
}

@media(min-width: 80em) {
	.ccl-widget.hero-image-with-caption .slide .img-cont:before {
		height: 50%;
	}

	.ccl-widget.hero-image-with-caption .slide .img-cont.is-dtn .credit-cont {
		margin-right: 36px;
	}
}

/*=====================================*/
/*=====----- BLOG HERO IMAGE -----=====*/
/*=====================================*/

.hero-image.blog {
	left: 0;
	max-width: none;
}

.hero-image.blog .img-cont::after {
	background: linear-gradient(to top, rgba(0,0,0,.5), rgba(0,0,0,0));
}

.hero-image.blog .content-section {
	max-width: 600px;
	padding: 22px 30px;
}

.hero-image.blog .title-desc-container .subtitle-no-link {
	display: flex;
	align-items: center;
	margin-bottom: 4px;
}

.hero-image.blog .title-desc-container .subtitle-no-link::before {
	display: block;
	width: 31px;
	height: 4px;
	margin-right: 16px;
	background-color: var(--peach-alt-1);
	content: '';
}

.sports .hero-image.blog .title-desc-container .subtitle-no-link::before {
	background-color: var(--teal-pale);
}

@media (min-width: 64em) {
	body:not(.sports) .hero-image.blog {
		width: calc(100% - 60px);
		margin-left: auto;
	}

	.hero-image.blog .content-section {
		padding: 38px 58px;
	}
}