.hdch-hero {
    --hdch-hero-red: #ca2e3e;
    aspect-ratio: 1920 / 480;
    background: #222;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    position: relative;
    width: 100vw;
}

.hdch-hero__slides,
.hdch-hero__slide,
.hdch-hero__image {
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
}

.hdch-hero__slide {
    opacity: 0;
    transition: opacity 900ms ease-in-out, visibility 0s linear 900ms;
    visibility: hidden;
}

.hdch-hero__slide.is-active {
    opacity: 1;
    transition-delay: 0s;
    visibility: visible;
    z-index: 1;
}

.hdch-hero__image {
    height: 100% !important;
    max-width: none;
    object-fit: cover;
}

.hdch-hero__copy {
    color: #fff;
    font-family: Arvo, Georgia, serif;
    font-weight: 700;
    line-height: 1;
    position: absolute;
    text-transform: uppercase;
    z-index: 2;
}

.hdch-hero__copy--left {
    left: 13.33%;
    top: 34.94%;
}

.hdch-hero__copy--right {
    left: 31.1%;
    text-align: center;
    top: 31.69%;
    width: 42.5%;
}

.hdch-hero__copy--left-low {
    left: 13.33%;
    top: 41.45%;
}

.hdch-hero__heading {
    font-size: clamp(28px, 3.646vw, 70px);
    white-space: nowrap;
}

.hdch-hero__highlight {
    color: var(--hdch-hero-red);
    font-size: clamp(36px, 4.688vw, 90px);
    margin-top: 0.08em;
    white-space: nowrap;
}

.is-active .hdch-hero__heading,
.is-active .hdch-hero__highlight {
    animation: hdch-hero-copy-in 950ms cubic-bezier(.77, 0, .18, 1) both;
}

.is-active .hdch-hero__highlight {
    animation-delay: 180ms;
}

.hdch-hero__arrow {
    background: rgba(0, 0, 0, 0.5);
    border: 0;
    cursor: pointer;
    height: 40px;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    z-index: 3;
}

.hdch-hero__arrow::before {
    border: solid #fff;
    border-width: 0 1px 1px 0;
    content: '';
    display: block;
    height: 8px;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 8px;
}

.hdch-hero__arrow--previous {
    left: 20px;
}

.hdch-hero__arrow--previous::before {
    transform: translate(-35%, -50%) rotate(135deg);
}

.hdch-hero__arrow--next {
    right: 20px;
}

.hdch-hero__arrow--next::before {
    transform: translate(-65%, -50%) rotate(-45deg);
}

.hdch-hero__arrow:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

@keyframes hdch-hero-copy-in {
    from {
        opacity: 0;
        transform: translateX(-0.35em);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 778px) {
    .hdch-hero__copy {
        display: none;
    }

    .hdch-hero__arrow--previous {
        left: 20px;
    }

    .hdch-hero__arrow--next {
        right: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hdch-hero__slide {
        transition: none;
    }

    .is-active .hdch-hero__heading,
    .is-active .hdch-hero__highlight {
        animation: none;
    }
}
