.page-hero {
    width: stretch;
    max-width: 100%;
    height: 200px;
    position: relative;
    border-radius: 24px;
	overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    font-size: 24px;
    box-sizing: border-box;
    margin: 0 20px;
	margin-bottom: 24px;
}
.page-hero-overlay {    
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.1);
    background-color: rgba(0,0,0,0.2);
    background: linear-gradient(90deg, #00000036 00%, transparent 80%);
    background: linear-gradient(90deg, #0000002b 20%, transparent 100%);
}
@media (min-width: 650px) {
  	.page-hero {
		height: 280px;
		padding: 32px;
		margin-bottom: 32px;
  	}
    .page-hero .background-image { width: 110%; }
    /*.page-hero-img-1 { top: 0px }
    .page-hero-img-2 { top: 0px }
    .page-hero-img-3 { top: 0px }
    .page-hero-img-4 { top: 0px }
    .page-hero-img-5 { top: 0px }
    .page-hero-img-6 { top: 0px }*/
}
@media (min-width: 1100px) {
  	.page-hero {
		height: 320px;
		padding: 64px;
		margin-bottom: 64px;
  	}
    .page-hero .background-image { top: -150px; width: 110%; }
    .page-hero .background-image {
        height: unset;
    }
    /*.page-hero-img-1 { top: 0px }
    .page-hero-img-2 { top: 0px }
    .page-hero-img-3 { top: 0px }
    .page-hero-img-4 { top: 0px }
    .page-hero-img-5 { top: 0px }
    .page-hero-img-6 { top: 0px }*/
}
.page-hero .content {
  	width: 100%;
  	display: flex;
  	flex-direction: column;
  	align-items: flex-start;
  	padding: 24px;
  	box-sizing: border-box;
  	gap: 8px;
  	max-width: 100%;
  	color: var(--Colors-Semantics-Text-On_Brand);
}
.page-hero .title {
  	align-self: stretch;
  	position: relative;
  	line-height: 28px;
	text-transform: uppercase;
}
.page-hero .subtitle {
  	align-self: stretch;
  	position: relative;
  	opacity: 0.9;
}
@media (min-width: 1200px) {
    .page-hero {
        margin-right: 0;
        margin-left: 0;
	}
}