.sg-hero {
    align-items: center;
    box-sizing: border-box;
    color: #fff;
    display: flex;
    isolation: isolate;
    justify-content: center;
    min-height: var(--sg-hero-min-height, clamp(350px, calc(337.6761px + 3.2864vw), 385px));
    overflow: hidden;
    padding: 32px 24px;
    position: relative;
    text-align: center;
}

.sg-hero__image,
.sg-hero__video,
.sg-hero__overlay {
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
}

.sg-hero__image {
    object-fit: cover;
    transition: opacity .35s ease;
    z-index: 0;
}

.sg-hero__video {
    border: 0;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
    z-index: 0;
}

.sg-hero__video--youtube {
    height: max(100%, 56.25vw);
    left: 50%;
    max-width: none;
    top: 50%;
    transform: translate(-50%, -50%);
    width: max(100%, 177.7778vh);
}

.sg-hero--video-ready .sg-hero__video--ready {
    opacity: 1;
}

.sg-hero--video-ready .sg-hero__image {
    opacity: 0;
}

.sg-hero__overlay {
    background: #000;
    opacity: .55;
    z-index: 1;
}

.sg-hero__content {
    max-width: 960px;
    position: relative;
    z-index: 2;
}

.sg-hero__eyebrow,
.sg-hero__breadcrumb {
    color: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 14px;
    text-transform: uppercase;
}

.sg-hero__breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sg-hero__breadcrumb a,
.sg-hero__breadcrumb a:visited {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease;
}

.sg-hero__breadcrumb a:hover,
.sg-hero__breadcrumb a:focus-visible {
    color: #d50032;
}

.sg-hero__title {
    color: inherit;
    font-size: clamp(32px, calc(20.7324px + 3.0047vw), 64px);
    font-weight: 700;
    line-height: 1.12;
    margin: 0;
    text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
    .sg-hero__image,
    .sg-hero__video {
        transition: none;
    }
}
