.hero,
.hero-carousel {
    min-height: 520px;
}

.hero-carousel {
    position: relative;
    overflow: hidden;
    background: #111;
}

.hero-slides {
    position: relative;
    min-height: inherit;
}

.hero-slide {
    position: absolute;
    inset: 0;
    min-height: inherit;
    display: grid;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .7s ease, visibility .7s ease;
}

.hero-slide.is-active {
    position: relative;
    z-index: 2;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
}

.hero-slide .hero-shade {
    position: absolute;
    inset: 0;
}

.hero-inner {
    padding: 48px 0 82px;
}

.hero-slide .hero-inner {
    position: relative;
    z-index: 2;
}

.hero-copy {
    min-width: 0;
}

.hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.9rem, 5.4vw, 5rem);
    overflow-wrap: normal;
    word-break: normal;
}

.hero-copy p {
    margin-top: 18px;
}

.hero-actions {
    margin-top: 24px;
}

.hero-slide .hero-copy {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .5s ease .18s, transform .5s ease .18s;
}

.hero-slide.is-active .hero-copy {
    opacity: 1;
    transform: translateY(0);
}

.hero-carousel-control {
    position: absolute;
    z-index: 8;
    top: 50%;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.48);
    border-radius: 50%;
    color: #fff;
    background: rgba(11,13,14,.34);
    backdrop-filter: blur(7px);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.hero-carousel-control:hover,
.hero-carousel-control:focus-visible {
    border-color: #fff;
    background: rgba(242,90,10,.92);
    outline: none;
    transform: translateY(-50%) scale(1.05);
}

.hero-carousel-control svg {
    width: 22px;
    height: 22px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-carousel-prev { left: 22px; }
.hero-carousel-next { right: 22px; }

.hero-carousel-dots {
    position: absolute;
    z-index: 9;
    left: 50%;
    bottom: 70px;
    display: flex;
    align-items: center;
    gap: 9px;
    transform: translateX(-50%);
}

.hero-carousel-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.86);
    border-radius: 50%;
    background: rgba(255,255,255,.22);
    cursor: pointer;
    transition: width .18s ease, border-radius .18s ease, background .18s ease;
}

.hero-carousel-dot.is-active {
    width: 28px;
    border-radius: 999px;
    background: var(--orange);
    border-color: var(--orange);
}

.support-strip > a {
    display: block;
    color: inherit;
    border-right: 1px solid var(--line);
}

.support-strip > a:last-child {
    border-right: 0;
}

.support-strip > a article {
    height: 100%;
    border-right: 0;
    transition: background .18s ease;
}

.support-strip > a:hover article {
    background: #fff8f3;
}

.homepage-event-hosts {
    padding-top: 42px;
    background: linear-gradient(180deg, #fff 0%, #fffaf6 100%);
}

.event-host-heading {
    margin-bottom: 30px;
}

.homepage-event-hosts .event-host-card {
    display: grid;
    grid-template-columns: minmax(360px, .39fr) minmax(0, .61fr);
    align-items: stretch;
    overflow: hidden;
    border: 1.5px solid rgba(242, 90, 10, .8);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 20px 55px rgba(24, 28, 32, .10);
}

.homepage-event-hosts .event-host-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(30px, 3.3vw, 46px);
    background: linear-gradient(145deg, #fff 0%, #fff8f3 100%);
}

.homepage-event-hosts .event-host-copy h3 {
    width: 100%;
    max-width: 100%;
    margin: 12px 0 16px;
    color: var(--orange-deep);
    font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
    font-size: clamp(1.75rem, 2.15vw, 2.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.025em;
    text-transform: uppercase;
    overflow-wrap: normal;
    word-break: normal;
}

.homepage-event-hosts .event-host-copy p {
    max-width: 390px;
    margin-bottom: 25px;
    color: var(--ink-soft);
}

.homepage-event-hosts .event-host-copy .button {
    margin-top: 2px;
}

.homepage-event-hosts .event-host-image {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: #f6f3ef;
    border-left: 1px solid #eee6de;
}

.homepage-event-hosts .event-host-image img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #e5ddd5;
    border-radius: 13px;
    box-shadow: 0 10px 28px rgba(24, 28, 32, .08);
}

@media (max-width: 1100px) and (min-width: 901px) {
    .homepage-event-hosts .event-host-card {
        grid-template-columns: minmax(325px, .4fr) minmax(0, .6fr);
    }

    .homepage-event-hosts .event-host-copy {
        padding: 30px;
    }

    .homepage-event-hosts .event-host-copy h3 {
        font-size: clamp(1.7rem, 2.5vw, 2rem);
    }
}

@media (max-width: 900px) {
    .hero,
    .hero-carousel,
    .hero-slide {
        min-height: 560px;
    }

    .hero-media {
        object-position: 60% center;
    }

    .hero-inner {
        padding: 46px 0 118px;
    }

    .hero-copy {
        width: min(600px, calc(100% - 64px));
        max-width: 100%;
    }

    .hero-copy h1 {
        font-size: clamp(2.55rem, 8.5vw, 4.25rem);
    }

    .hero-carousel-control {
        top: auto;
        bottom: 64px;
        width: 40px;
        height: 40px;
        font-size: 1.7rem;
        transform: none;
    }

    .hero-carousel-control:hover,
    .hero-carousel-control:focus-visible {
        transform: scale(1.04);
    }

    .hero-carousel-prev { left: 16px; }
    .hero-carousel-next { right: 16px; }
    .hero-carousel-dots { bottom: 78px; }

    .support-strip > a:nth-child(2) {
        border-right: 0;
    }

    .support-strip > a:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .homepage-event-hosts .event-host-card {
        grid-template-columns: 1fr;
    }

    .homepage-event-hosts .event-host-copy h3 {
        font-size: clamp(1.9rem, 5.5vw, 2.6rem);
    }

    .homepage-event-hosts .event-host-image {
        border-left: 0;
        border-top: 1px solid #eee6de;
    }
}

@media (max-width: 620px) {
    .hero,
    .hero-carousel,
    .hero-slide {
        min-height: 575px;
    }

    .hero-media {
        object-position: 66% center;
    }

    .hero-inner {
        padding: 38px 0 126px;
    }

    .hero-copy {
        width: 100%;
        max-width: 100%;
    }

    .hero-copy h1 {
        font-size: clamp(2.35rem, 10.8vw, 3.55rem);
        line-height: 1.03;
        letter-spacing: -.025em;
    }

    .hero-copy p {
        margin-top: 15px;
        max-width: 100%;
        font-size: clamp(.94rem, 3.9vw, 1.02rem);
        line-height: 1.55;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 10px;
        margin-top: 18px;
    }

    .hero-actions .button {
        width: 100%;
        min-width: 0;
    }

    .hero-carousel-control {
        bottom: 60px;
        width: 36px;
        height: 36px;
    }

    .hero-carousel-prev { left: 14px; }
    .hero-carousel-next { right: 14px; }
    .hero-carousel-dots { bottom: 73px; }

    .support-strip > a {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .support-strip > a:last-child {
        border-bottom: 0;
    }

    .homepage-event-hosts {
        padding-top: 28px;
    }

    .homepage-event-hosts .event-host-card {
        border-radius: 15px;
    }

    .homepage-event-hosts .event-host-copy {
        padding: 28px 22px;
    }

    .homepage-event-hosts .event-host-copy h3 {
        font-size: clamp(1.8rem, 8vw, 2.35rem);
    }

    .homepage-event-hosts .event-host-copy p {
        margin-bottom: 20px;
    }

    .homepage-event-hosts .event-host-copy .button {
        width: 100%;
    }

    .homepage-event-hosts .event-host-image {
        padding: 9px;
    }

    .homepage-event-hosts .event-host-image img {
        border-radius: 9px;
    }
}

@media (max-width: 420px) {
    .hero-copy h1 {
        font-size: clamp(2.15rem, 10.5vw, 2.85rem);
    }

    .hero-copy p {
        font-size: .94rem;
    }

    .hero-inner {
        padding-bottom: 120px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .hero-slide .hero-copy,
    .hero-carousel-control,
    .hero-carousel-dot {
        transition: none;
    }
}

.video-poster {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: #111;
    cursor: pointer;
}

.video-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.18));
}

.video-play {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    width: 72px;
    height: 52px;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%);
    border-radius: 14px;
    color: #fff;
    background: rgba(242,90,10,.94);
    box-shadow: 0 10px 30px rgba(0,0,0,.28);
    font-size: 1.45rem;
}

.video-poster:hover .video-play,
.video-poster:focus-visible .video-play {
    transform: translate(-50%, -50%) scale(1.06);
}
