.simple-hero{
	margin: 0 auto;
	padding: calc(var(--header-height) + var(--row-gap)) 0 var(--row-gap);
	overflow: hidden;
	position: relative;
    width: 100%;
    max-width: 100%;
    min-height: min(41.66vw, 80rem);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.simple-hero .simple-hero-media{
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.simple-hero :is(.simple-hero-image, .simple-hero-video-player, .simple-hero-video-player :is(iframe, video)){
    width: 100%;
    height: 100%;
}

.simple-hero-image img,
.simple-hero-video-player img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.simple-hero-video-player :is(iframe, video){
    display: block;
    border: none;
}

.simple-hero .simple-hero-video-player :is(iframe, video){
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    aspect-ratio: 16/9;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.simple-hero[data-color-scheme|="light"] :is(.simple-hero-image img, .simple-hero-video-player :is(iframe, video)){
    opacity: 0.2;
}

.simple-hero:is([data-color-scheme|="medium"], [data-color-scheme|="dark"]) :is(.simple-hero-image img, .simple-hero-video-player :is(iframe, video)){
    opacity: 0.5;
}

.simple-hero-wrapper{
    margin: 0 auto;
    position: relative;
    padding: var(--row-gap) var(--page-padding);
    width: var(--full-width);
}

.simple-hero-inner>*:last-child{
    margin-bottom: 0;
}

.simple-hero-breadcrumbs{
    padding: 0;
    margin: 0 0 var(--item-row-gap);
    display: flex;
    flex-wrap: wrap;
    column-gap: var(--item-column-gap);
    row-gap: var(--item-row-gap);
}

.simple-hero-breadcrumbs li{
    display: flex;
    list-style: none;
    column-gap: var(--item-column-gap);
    align-items: center;
}

.simple-hero-breadcrumbs li:not(:first-child):before{
    content: '';
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    margin: 0 0.8rem;
    border-top: 0.2rem solid;
    border-right: 0.2rem solid;
    transform: rotateZ(45deg);
}

.simple-hero-breadcrumbs li a{
    text-decoration: none;
    color: var(--text-color);
}

.simple-hero-breadcrumbs li:last-child{
    font-weight: 700;
}

.simple-hero-title{
    margin: 0 0 var(--item-row-gap);
    max-width: 70rem;
}

.simple-hero-content{
    margin-bottom: var(--item-row-gap);
    max-width: 65rem;
}

.simple-hero-buttons{
    display: flex;
    flex-wrap: wrap;
    column-gap: var(--item-column-gap);
    row-gap: var(--item-row-gap);
    align-items: center;
}