/*
	README

	Modify this file as much or as little as needed.

	This file is shared across all ASM widgets in the Hero 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.
*/

.asm-hero-image {
	--title-text-mobile: var(--asm-ftw-bold) var(--asm-fts-4xl)/var(--asm-ftl-dense) var(--asm-font-family);
	--title-text-desktop: var(--asm-ftw-bold) var(--asm-fts-mega)/var(--asm-ftl-dense) var(--asm-font-family);
	--description-text-mobile: var(--asm-ftw-semi-bold) var(--asm-fts-body)/var(--asm-ftl-dense) var(--asm-font-family);
	--description-text-desktop: var(--asm-ftw-semi-bold) var(--asm-fts-lg)/var(--asm-ftl-dense) var(--asm-font-family);
}

.asm-hero-image .img-cont:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(360deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.00) 50.40%);
	pointer-events: none;
}

.asm-hero-image .slide .slide-title {
	font: var(--title-text-mobile);
	text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
}

@media (min-width: 64em) {
	.asm-hero-image .slide .slide-title {
		font: var(--title-text-desktop);
	}
}

.asm-hero-image .slide p {
	font: var(--description-text-mobile);
	color: var(--asm-sw-white);
}

@media (min-width: 64em) {
	.asm-hero-image .slide p {
		font: var(--description-text-desktop);
	}
}
