.hk-hero {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    isolation: isolate;
    background: transparent;
    color: #ffffff;
}



.hk-hero__media,
.hk-hero__overlay,
.hk-hero__content-wrap {
    width: 100%;
    position: absolute;
    inset: 0;
}

.hk-hero__media-asset,
.hk-hero__cover {
    position: absolute;
    inset: 0;
}

.hk-hero__media-asset--mobile {
    display: none;
}

.hk-hero__cover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hk-hero__html-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    aspect-ratio: var(--hk-hero-media-ratio, 16 / 9);
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.hk-hero__content-wrap {
    z-index: 2;
    display: flex;
    align-items: flex-end;
    padding: clamp(1.5rem, 4vw, 4rem);
}


.hk-hero--align-left,
.hk-hero--align-left .hk-hero__actions {
    justify-content: flex-start;
}

.hk-hero--align-center,
.hk-hero--align-center .hk-hero__actions {
    justify-content: center;
}

.hk-hero--align-right,
.hk-hero--align-right .hk-hero__actions {
    justify-content: flex-end;
}

.hk-hero--align-left .hk-hero__content {
    text-align: left;
}

.hk-hero--align-center .hk-hero__content {
    text-align: center;
}

.hk-hero--align-right .hk-hero__content {
    text-align: right;
}

.hk-hero__content {
    width: min(100%, 50rem);
}

@media (min-width: 768px) {
    .hk-hero__overlay {
        background: linear-gradient(to top, var(--hk-overlay-bottom, rgba(0, 0, 0, 0.68)) 25%, var(--hk-overlay-top, rgba(0, 0, 0, 0.08)) 100%);
    }
}
@media (max-width: 767px) {
    .hk-hero__overlay {
        background: linear-gradient(to top, var(--hk-overlay-bottom, rgba(0, 0, 0, 0.68)) 45%, var(--hk-overlay-top, rgba(0, 0, 0, 0.08)) 100%);
    }
}
/* 

.hk-hero--align-left .hk-hero__content-wrap,
.hk-hero--align-left .hk-hero__actions {
    justify-content: flex-start;
}

.hk-hero--align-center .hk-hero__content-wrap,
.hk-hero--align-center .hk-hero__actions {
    justify-content: center;
}

.hk-hero--align-right .hk-hero__content-wrap,
.hk-hero--align-right .hk-hero__actions {
    justify-content: flex-end;
}

.hk-hero__content {
    width: min(100%, 50rem);
}

.hk-hero--align-left .hk-hero__content {
    text-align: left;
}

.hk-hero--align-center .hk-hero__content {
    text-align: center;
}

.hk-hero--align-right .hk-hero__content {
    text-align: right;
}

.hk-hero__title {
    margin: 0 0 1rem;
    color: inherit;
    font-size: clamp(2rem, 4vw, 4.5rem);
    line-height: 0.95;
}

.hk-hero__text {
    font-size: clamp(1rem, 1.35vw, 1.2rem);
    line-height: 1.6;
}

.hk-hero__text > *:first-child {
    margin-top: 0;
}

.hk-hero__text > *:last-child {
    margin-bottom: 0;
} */

.hk-hero__title {
    margin: 0 0 1rem;
    color: inherit;
    font-size: clamp(2rem, 4vw, 4.5rem);
    line-height: 0.95;
}

.hk-hero__actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.75rem;
}

.hk-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: clamp(12rem, 18vw, 18rem);
    min-height: 3.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--accent);
    border-radius: 100px;
    text-decoration: none;
    font-weight: 400;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.hk-hero__button:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

.hk-hero__button--primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
}

.hk-hero__button--secondary {
    background: rgba(255, 255, 255, 0.08);
    border-color: color-mix(in srgb, var(--accent) 75%, white 25%);
    color: white;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
}

.hk-hero__button--primary:hover {
    background: color-mix(in srgb, var(--accent) 88%, black 12%);
    color: #ffffff;
}

.hk-hero__button--secondary:hover {
    background: color-mix(in srgb, var(--accent) 88%, black 12%);
    color: #ffffff;
}

.hk-hero__media-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hk-hero--desktop-ratio-hero-16-9 { padding-bottom: 56.25%; }
    .hk-hero--desktop-ratio-16-9 { aspect-ratio: 16 / 9; }
    .hk-hero--desktop-ratio-3-1 { aspect-ratio: 3 / 1; }
    .hk-hero--desktop-ratio-2-1 { aspect-ratio: 2 / 1; }
}

@media (max-width: 767px) {
    .hk-hero--mobile-ratio-1-1 {
        aspect-ratio: 1;
    }

    .hk-hero--mobile-ratio-16-9 {
        aspect-ratio: 16/9;
    }

    .hk-hero--mobile-ratio-2-1 {
        aspect-ratio: 2/1;
    }

    .hk-hero--mobile-ratio-3-1 {
        aspect-ratio: 3/1;
    }

    .hk-hero__media-asset--desktop {
        display: none;
    }

    .hk-hero__media-asset--mobile {
        display: block;
    }

    .hk-hero__content {
        width: 100%;
    }

    .hk-hero__button {
        width: 100%;
        min-width: 0;
    }
}