.ghm-hero-carousel {
    --ghm-hero-panel-max-width: clamp(330px, 29vw, 430px);
    --ghm-hero-side-safe: clamp(22px, 5vw, 80px);
    --ghm-hero-bottom-safe: 28px;
    --ghm-hero-nav-edge: clamp(14px, 2.4vw, 42px);
    --ghm-hero-panel-bg: rgba(255, 255, 255, 0.5);
    --ghm-hero-panel-border: rgba(17, 24, 39, 0.12);
    --ghm-hero-panel-shadow: 0 26px 70px rgba(15, 23, 42, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.58);
    --ghm-hero-panel-accent: #6fcf38;
    --ghm-hero-font-display: "Inter", "SF Pro Display", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --ghm-hero-font-body: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --ghm-hero-title-color: #0f172a;
    --ghm-hero-eyebrow-color: rgba(15, 23, 42, 0.68);
    --ghm-hero-description-color: rgba(15, 23, 42, 0.78);
    --ghm-hero-card-skeleton-base: rgba(15, 23, 42, 0.12);
    --ghm-hero-card-skeleton-strong: rgba(15, 23, 42, 0.17);
    --ghm-hero-card-skeleton-sheen: rgba(255, 255, 255, 0.58);
    --ghm-hero-dot-bg: transparent;
    --ghm-hero-dot-border: transparent;
    --ghm-hero-dot-shadow: none;
    --ghm-hero-progress-track: rgba(255, 255, 255, 0.44);
    --ghm-hero-progress-track-border: rgba(255, 255, 255, 0.62);
    --ghm-hero-progress-active: #111827;
    --ghm-hero-progress-active-shadow: 0 6px 18px rgba(17, 24, 39, 0.28);
    --ghm-hero-art-float-duration: 5600ms;
    --ghm-hero-art-float-delay: 920ms;
    --ghm-hero-art-float-mid-y: -7px;
    --ghm-hero-art-float-peak-y: -16px;
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    background: #f3f4f6;
    isolation: isolate;
}

@supports (width: 100dvw) {
    .ghm-hero-carousel {
        width: 100dvw;
        max-width: 100dvw;
        margin-left: calc(50% - 50dvw);
        margin-right: calc(50% - 50dvw);
    }
}

.ghm-hero-carousel,
.ghm-hero-carousel * {
    box-sizing: border-box;
}

.ghm-hero-carousel__viewport {
    position: relative;
    height: var(--ghome-hero-height-desktop, var(--ghm-hero-height-desktop, 620px));
    min-height: var(--ghome-hero-height-desktop, var(--ghm-hero-height-desktop, 620px));
    overflow: hidden;
    outline: none;
    touch-action: pan-y;
    contain: layout paint;
}

.ghm-hero-carousel__viewport:focus-visible {
    box-shadow: inset 0 0 0 3px rgba(26, 115, 232, 0.68);
}

.ghm-hero-carousel__track {
    display: flex;
    height: var(--ghome-hero-height-desktop, var(--ghm-hero-height-desktop, 620px));
    min-height: var(--ghome-hero-height-desktop, var(--ghm-hero-height-desktop, 620px));
    transform: translate3d(0, 0, 0);
    transition: transform 560ms cubic-bezier(0.22, 0.72, 0.24, 1);
    will-change: transform;
}

.ghm-hero-carousel.is-swipe-dragging .ghm-hero-carousel__track {
    transition: none;
}

.ghm-hero-carousel__slide {
    position: relative;
    flex: 0 0 100%;
    min-width: 100%;
    height: var(--ghome-hero-height-desktop, var(--ghm-hero-height-desktop, 620px));
    min-height: var(--ghome-hero-height-desktop, var(--ghm-hero-height-desktop, 620px));
    overflow: hidden;
    background-color: #f4f4f4;
    background-image: var(--ghm-hero-desktop-bg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    contain: layout paint;
}

.ghm-hero-carousel__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.ghm-hero-carousel__slide-link {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.ghm-hero-carousel__slide-link:focus-visible {
    outline: 3px solid rgba(17, 24, 39, 0.68);
    outline-offset: -6px;
}

.ghm-hero-carousel.is-swipe-dragging .ghm-hero-carousel__slide-link {
    cursor: grabbing;
}

.ghm-hero-carousel__slide--text-light .ghm-hero-carousel__overlay {
    background: rgba(0, 0, 0, 0.06);
}

.ghm-hero-carousel__slide--text-dark .ghm-hero-carousel__overlay {
    background: rgba(255, 255, 255, 0.06);
}

.ghm-hero-carousel__art {
    --ghm-hero-art-anchor-x: 0%;
    --ghm-hero-art-anchor-y: 0%;
    --ghm-hero-art-enter-x: 34px;
    --ghm-hero-art-enter-y: 18px;
    position: absolute;
    top: 0;
    right: max(var(--ghm-hero-side-safe), calc((100vw - var(--ghome-hero-content-max-width, var(--ghm-hero-content-max-width, 1400px))) / 2 + 24px));
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(49vw, 710px);
    pointer-events: none;
    opacity: 0;
    transform: translate3d(var(--ghm-hero-art-enter-x), var(--ghm-hero-art-enter-y), 0) translate(var(--ghm-hero-art-anchor-x), var(--ghm-hero-art-anchor-y)) scale(0.96);
}

.ghm-hero-carousel__slide--align-right .ghm-hero-carousel__art {
    right: auto;
    left: max(var(--ghm-hero-side-safe), calc((100vw - var(--ghome-hero-content-max-width, var(--ghm-hero-content-max-width, 1400px))) / 2 + 24px));
    --ghm-hero-art-enter-x: -34px;
}

.ghm-hero-carousel__slide--art-desktop-left .ghm-hero-carousel__art {
    right: auto;
    left: max(var(--ghm-hero-side-safe), calc((100vw - var(--ghome-hero-content-max-width, var(--ghm-hero-content-max-width, 1400px))) / 2 + 24px));
    --ghm-hero-art-anchor-x: 0%;
    --ghm-hero-art-enter-x: -34px;
}

.ghm-hero-carousel__slide--art-desktop-right .ghm-hero-carousel__art {
    right: max(var(--ghm-hero-side-safe), calc((100vw - var(--ghome-hero-content-max-width, var(--ghm-hero-content-max-width, 1400px))) / 2 + 24px));
    left: auto;
    --ghm-hero-art-anchor-x: 0%;
    --ghm-hero-art-enter-x: 34px;
}

.ghm-hero-carousel__slide--art-desktop-center .ghm-hero-carousel__art {
    right: auto;
    left: 50%;
    width: min(52vw, 760px);
    --ghm-hero-art-anchor-x: -50%;
    --ghm-hero-art-enter-x: 0px;
}

.ghm-hero-carousel__slide.is-active .ghm-hero-carousel__art {
    animation: ghmHeroArtIn 760ms cubic-bezier(0.18, 0.84, 0.26, 1) 120ms both;
}

.ghm-hero-carousel__slide--align-right.is-active .ghm-hero-carousel__art {
    animation-name: ghmHeroArtIn;
}

.ghm-hero-carousel__art picture,
.ghm-hero-carousel__art img {
    display: block;
    max-width: 100%;
    max-height: 86%;
}

.ghm-hero-carousel__art img {
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.24));
}

.ghm-hero-carousel__slide.is-active .ghm-hero-carousel__art img {
    animation: ghmHeroArtFloat var(--ghm-hero-art-float-duration, 5600ms) ease-in-out var(--ghm-hero-art-float-delay, 920ms) infinite;
}

.ghm-hero-carousel__content-wrap {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: var(--ghome-hero-content-max-width, var(--ghm-hero-content-max-width, 1400px));
    height: var(--ghome-hero-height-desktop, var(--ghm-hero-height-desktop, 620px));
    min-height: var(--ghome-hero-height-desktop, var(--ghm-hero-height-desktop, 620px));
    margin: 0 auto;
    padding: clamp(72px, 8vw, 104px) var(--ghm-hero-side-safe) calc(var(--ghm-hero-bottom-safe) + 58px);
    pointer-events: none;
}

.ghm-hero-carousel__content {
    position: relative;
    width: min(100%, var(--ghm-hero-panel-max-width));
    max-width: var(--ghm-hero-panel-max-width);
    padding: clamp(22px, 2.25vw, 30px) clamp(24px, 2.75vw, 36px);
    pointer-events: auto;
    border: 1px solid var(--ghm-hero-panel-border);
    border-radius: 30px;
    background: var(--ghm-hero-panel-bg);
    color: #111827;
    font-family: var(--ghm-hero-font-body);
    text-rendering: geometricPrecision;
    box-shadow: var(--ghm-hero-panel-shadow);
    overflow: hidden;
    overflow-wrap: break-word;
    opacity: 0;
    transform: translate3d(-26px, 28px, 0) scale(0.965);
}

.ghm-hero-carousel__content::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: clamp(20px, 2vw, 28px);
    bottom: clamp(20px, 2vw, 28px);
    left: 0;
    width: 4px;
    border-radius: 0 999px 999px 0;
    background: var(--ghm-hero-panel-accent);
    opacity: 0;
    transform: scaleY(0.28);
    transform-origin: center;
}

.ghm-hero-carousel__content::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: -18%;
    bottom: -18%;
    left: -32%;
    width: 78px;
    background: rgba(255, 255, 255, 0.34);
    opacity: 0;
    transform: translate3d(-120%, 0, 0) rotate(12deg);
    pointer-events: none;
}

.ghm-hero-carousel__content-skeleton {
    position: absolute;
    top: clamp(24px, 2.3vw, 34px);
    right: clamp(24px, 2.75vw, 36px);
    left: clamp(24px, 2.75vw, 36px);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(0, 12px, 0) scale(0.985);
}

.ghm-hero-carousel__skeleton-line,
.ghm-hero-carousel__skeleton-action {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 999px;
    background: var(--ghm-hero-card-skeleton-base);
}

.ghm-hero-carousel__skeleton-line::after,
.ghm-hero-carousel__skeleton-action::after {
    content: "";
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -28%;
    width: 26%;
    border-radius: inherit;
    background: var(--ghm-hero-card-skeleton-sheen);
    opacity: 0;
    transform: translate3d(0, 0, 0);
}

.ghm-hero-carousel__skeleton-line--eyebrow {
    width: min(46%, 168px);
    height: 9px;
}

.ghm-hero-carousel__skeleton-line--title {
    width: min(84%, 320px);
    height: 25px;
    background: var(--ghm-hero-card-skeleton-strong);
}

.ghm-hero-carousel__skeleton-line--title-short {
    width: min(66%, 250px);
    height: 25px;
    background: var(--ghm-hero-card-skeleton-strong);
}

.ghm-hero-carousel__skeleton-line--body {
    width: min(76%, 300px);
    height: 11px;
    margin-top: 8px;
}

.ghm-hero-carousel__skeleton-line--body-short {
    width: min(58%, 228px);
    height: 11px;
}

.ghm-hero-carousel__skeleton-actions {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.ghm-hero-carousel__skeleton-action {
    width: 104px;
    height: 42px;
}

.ghm-hero-carousel__skeleton-action--secondary {
    width: 92px;
    background: rgba(15, 23, 42, 0.09);
}

.ghm-hero-carousel__slide.is-active .ghm-hero-carousel__content-skeleton {
    animation: ghmHeroCardSkeleton 920ms cubic-bezier(0.2, 0.72, 0.2, 1) 140ms both;
}

.ghm-hero-carousel__slide.is-active .ghm-hero-carousel__skeleton-line::after,
.ghm-hero-carousel__slide.is-active .ghm-hero-carousel__skeleton-action::after {
    animation: ghmHeroSkeletonSheen 820ms cubic-bezier(0.22, 0.72, 0.24, 1) 210ms both;
}

.ghm-hero-carousel__slide--align-center .ghm-hero-carousel__content-skeleton {
    align-items: center;
}

.ghm-hero-carousel__slide--align-center .ghm-hero-carousel__skeleton-actions {
    justify-content: center;
}

.ghm-hero-carousel__slide--align-right .ghm-hero-carousel__content-skeleton {
    align-items: flex-end;
}

.ghm-hero-carousel__slide--align-right .ghm-hero-carousel__skeleton-actions {
    justify-content: flex-end;
}

.ghm-hero-carousel__subtitle,
.ghm-hero-carousel__title,
.ghm-hero-carousel__description,
.ghm-hero-carousel__buttons {
    position: relative;
    z-index: 3;
}

@supports ((backdrop-filter: blur(8px)) or (-webkit-backdrop-filter: blur(8px))) {
    .ghm-hero-carousel__content,
    .ghm-hero-carousel__arrow,
    .ghm-hero-carousel__dots {
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
    }
}

.ghm-hero-carousel__slide.is-active .ghm-hero-carousel__content {
    animation: ghmHeroPanelIn 760ms cubic-bezier(0.18, 0.84, 0.22, 1) 80ms both;
}

.ghm-hero-carousel__slide.is-active .ghm-hero-carousel__content::before {
    animation: ghmHeroPanelAccentIn 620ms cubic-bezier(0.18, 0.84, 0.22, 1) 250ms both;
}

.ghm-hero-carousel__slide.is-active .ghm-hero-carousel__content::after {
    animation: ghmHeroPanelSweep 940ms cubic-bezier(0.2, 0.72, 0.2, 1) 360ms both;
}

.ghm-hero-carousel__slide.is-active .ghm-hero-carousel__subtitle,
.ghm-hero-carousel__slide.is-active .ghm-hero-carousel__title,
.ghm-hero-carousel__slide.is-active .ghm-hero-carousel__description,
.ghm-hero-carousel__slide.is-active .ghm-hero-carousel__buttons {
    animation: ghmHeroTextRise 560ms cubic-bezier(0.18, 0.84, 0.22, 1) both;
}

.ghm-hero-carousel__slide.is-active .ghm-hero-carousel__subtitle {
    animation-delay: 610ms;
}

.ghm-hero-carousel__slide.is-active .ghm-hero-carousel__title {
    animation-delay: 710ms;
}

.ghm-hero-carousel__slide.is-active .ghm-hero-carousel__description {
    animation-delay: 820ms;
}

.ghm-hero-carousel__slide.is-active .ghm-hero-carousel__buttons {
    animation-delay: 930ms;
}

.ghm-hero-carousel__slide--text-light .ghm-hero-carousel__content {
    --ghm-hero-title-color: #ffffff;
    --ghm-hero-eyebrow-color: rgba(255, 255, 255, 0.76);
    --ghm-hero-description-color: rgba(255, 255, 255, 0.84);
    --ghm-hero-card-skeleton-base: rgba(255, 255, 255, 0.2);
    --ghm-hero-card-skeleton-strong: rgba(255, 255, 255, 0.28);
    --ghm-hero-card-skeleton-sheen: rgba(255, 255, 255, 0.52);
    color: #ffffff;
    background: rgba(15, 23, 42, 0.32);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
}

.ghm-hero-carousel__slide--text-light .ghm-hero-carousel__skeleton-action--secondary {
    background: rgba(255, 255, 255, 0.16);
}

.ghm-hero-carousel__slide--text-dark .ghm-hero-carousel__content {
    color: #111827;
}

.ghm-hero-carousel__slide--align-left .ghm-hero-carousel__content-wrap {
    justify-content: flex-start;
    text-align: left;
}

.ghm-hero-carousel__slide--align-center .ghm-hero-carousel__content-wrap {
    justify-content: center;
    text-align: center;
}

.ghm-hero-carousel__slide--align-right .ghm-hero-carousel__content-wrap {
    justify-content: flex-end;
    text-align: right;
}

.ghm-hero-carousel__slide--align-right .ghm-hero-carousel__content {
    transform: translate3d(26px, 28px, 0) scale(0.965);
}

.ghm-hero-carousel__slide--align-right.is-active .ghm-hero-carousel__content {
    animation-name: ghmHeroPanelInRight;
}

.ghm-hero-carousel__subtitle {
    margin: 0 0 clamp(9px, 1vw, 13px);
    color: var(--ghm-hero-eyebrow-color);
    font-family: var(--ghm-hero-font-body);
    font-size: clamp(10px, 0.78vw, 12px);
    font-weight: 850;
    line-height: 1.32;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.ghm-hero-carousel__title {
    max-width: 11.4ch;
    margin: 0;
    color: var(--ghm-hero-title-color);
    font-family: var(--ghm-hero-font-display);
    font-size: clamp(39px, 3.42vw, 52px);
    font-weight: 850;
    line-height: 1.02;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.ghm-hero-carousel__slide--align-center .ghm-hero-carousel__title {
    margin-left: auto;
    margin-right: auto;
}

.ghm-hero-carousel__slide--align-right .ghm-hero-carousel__title {
    margin-left: auto;
}

.ghm-hero-carousel__description {
    max-width: 34rem;
    margin: clamp(14px, 1.45vw, 18px) 0 0;
    color: var(--ghm-hero-description-color);
    font-family: var(--ghm-hero-font-body);
    font-size: clamp(14px, 1.03vw, 16px);
    font-weight: 550;
    line-height: 1.58;
}

.ghm-hero-carousel__slide--align-center .ghm-hero-carousel__description {
    margin-left: auto;
    margin-right: auto;
}

.ghm-hero-carousel__slide--align-right .ghm-hero-carousel__description {
    margin-left: auto;
}

.ghm-hero-carousel__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: clamp(20px, 1.9vw, 28px);
}

.ghm-hero-carousel__slide--align-center .ghm-hero-carousel__buttons {
    justify-content: center;
}

.ghm-hero-carousel__slide--align-right .ghm-hero-carousel__buttons {
    justify-content: flex-end;
}

.ghm-hero-carousel__button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    max-width: 100%;
    padding: 13px 22px;
    border: 1px solid #111827;
    border-radius: 999px;
    font-family: var(--ghm-hero-font-body);
    font-size: 14px;
    font-weight: 850;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    white-space: normal;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.ghm-hero-carousel__button--primary {
    color: #ffffff;
    background: #111827;
    border-color: #111827;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.16);
}

.ghm-hero-carousel__button--primary::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 180ms ease;
}

.ghm-hero-carousel__button--primary:hover,
.ghm-hero-carousel__button--primary:focus-visible {
    color: #ffffff;
    background: #000000;
    border-color: #000000;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.ghm-hero-carousel__button--primary:hover::after,
.ghm-hero-carousel__button--primary:focus-visible::after {
    transform: rotate(45deg) translate(2px, -2px);
}

.ghm-hero-carousel__button--secondary {
    color: #111827;
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(17, 24, 39, 0.68);
}

.ghm-hero-carousel__button--secondary:hover,
.ghm-hero-carousel__button--secondary:focus-visible {
    color: #ffffff;
    background: #111827;
    border-color: #111827;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.14);
}

.ghm-hero-carousel__slide--text-light .ghm-hero-carousel__button--primary {
    color: #111827;
    background: #ffffff;
    border-color: #ffffff;
}

.ghm-hero-carousel__slide--text-light .ghm-hero-carousel__button--primary:hover,
.ghm-hero-carousel__slide--text-light .ghm-hero-carousel__button--primary:focus-visible {
    color: #ffffff;
    background: #111827;
    border-color: #ffffff;
}

.ghm-hero-carousel__slide--text-light .ghm-hero-carousel__button--secondary {
    color: #ffffff;
    background: rgba(15, 23, 42, 0.18);
    border-color: rgba(255, 255, 255, 0.86);
}

.ghm-hero-carousel__slide--text-light .ghm-hero-carousel__button--secondary:hover,
.ghm-hero-carousel__slide--text-light .ghm-hero-carousel__button--secondary:focus-visible {
    color: #111827;
    background: #ffffff;
    border-color: #ffffff;
}

.ghm-hero-carousel__arrow {
    position: absolute;
    top: 50%;
    z-index: 8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 999px;
    color: #111827;
    background: rgba(255, 255, 255, 0.78);
    cursor: pointer;
    transform: translateY(-50%);
    -webkit-tap-highlight-color: transparent;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.ghm-hero-carousel__arrow span {
    display: block;
    margin-top: -3px;
    font-size: 34px;
    font-weight: 300;
    line-height: 1;
}

.ghm-hero-carousel__arrow:hover,
.ghm-hero-carousel__arrow:focus-visible {
    color: #ffffff;
    background: #111827;
    border-color: #111827;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.ghm-hero-carousel__arrow--prev {
    left: var(--ghm-hero-nav-edge);
}

.ghm-hero-carousel__arrow--next {
    right: var(--ghm-hero-nav-edge);
}

.ghm-hero-carousel__dots {
    position: absolute;
    left: 50%;
    bottom: calc(var(--ghm-hero-bottom-safe) + 12px);
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 0.8vw, 14px);
    width: clamp(184px, 18vw, 320px);
    min-height: 28px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    filter: drop-shadow(0 8px 14px rgba(15, 23, 42, 0.18));
    opacity: 0;
    transform: translate3d(-50%, 12px, 0) scale(0.96);
    animation: ghmHeroDotsDockIn 660ms cubic-bezier(0.18, 0.84, 0.22, 1) 520ms both;
}

.ghm-hero-carousel__dot {
    position: relative;
    display: inline-flex;
    flex: 1 1 0;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 24px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    overflow: visible;
    transition: transform 180ms ease, opacity 180ms ease;
}


.ghm-hero-carousel__dot::before,
.ghm-hero-carousel__dot::after {
    content: none;
}

.ghm-hero-carousel__dot-track {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    display: block;
    height: 5px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--ghm-hero-progress-track);
    box-shadow: inset 0 0 0 1px var(--ghm-hero-progress-track-border), 0 3px 10px rgba(15, 23, 42, 0.12);
    opacity: 0.9;
    transform: translateY(-50%);
    transition: height 180ms ease, opacity 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.ghm-hero-carousel__dot-fill {
    display: block;
    width: 0%;
    height: 100%;
    border-radius: inherit;
    background: var(--ghm-hero-progress-active);
    box-shadow: var(--ghm-hero-progress-active-shadow);
    opacity: 0;
    transform: none;
    transform-origin: left center;
    will-change: width;
}

.ghm-hero-carousel__dot:hover,
.ghm-hero-carousel__dot:focus-visible {
    transform: translateY(-2px);
}

.ghm-hero-carousel__dot:hover .ghm-hero-carousel__dot-track,
.ghm-hero-carousel__dot:focus-visible .ghm-hero-carousel__dot-track {
    height: 7px;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78), 0 6px 14px rgba(15, 23, 42, 0.16);
    opacity: 1;
}

.ghm-hero-carousel__dot.is-active .ghm-hero-carousel__dot-track,
.ghm-hero-carousel__dot[aria-current="true"] .ghm-hero-carousel__dot-track {
    height: 7px;
    background: rgba(255, 255, 255, 0.54);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.76), 0 6px 16px rgba(15, 23, 42, 0.18);
    opacity: 1;
}

.ghm-hero-carousel__dot.is-active .ghm-hero-carousel__dot-fill,
.ghm-hero-carousel__dot[aria-current="true"] .ghm-hero-carousel__dot-fill {
    opacity: 1;
}

.ghm-hero-carousel.is-autoplay-running .ghm-hero-carousel__dot.is-active .ghm-hero-carousel__dot-fill,
.ghm-hero-carousel.is-autoplay-running .ghm-hero-carousel__dot[aria-current="true"] .ghm-hero-carousel__dot-fill {
    animation: none;
    will-change: width;
}

.ghm-hero-carousel.is-autoplay-paused .ghm-hero-carousel__dot.is-active .ghm-hero-carousel__dot-fill,
.ghm-hero-carousel.is-autoplay-paused .ghm-hero-carousel__dot[aria-current="true"] .ghm-hero-carousel__dot-fill {
    animation: none;
}

@keyframes ghmHeroCardSkeleton {
    0% {
        opacity: 0;
        transform: translate3d(0, 12px, 0) scale(0.985);
    }
    16% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
    64% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate3d(0, -4px, 0) scale(1);
    }
}

@keyframes ghmHeroSkeletonSheen {
    0% {
        opacity: 0;
        transform: translate3d(0, 0, 0);
    }
    18% {
        opacity: 0.72;
    }
    78% {
        opacity: 0.72;
    }
    100% {
        opacity: 0;
        transform: translate3d(520%, 0, 0);
    }
}

@keyframes ghmHeroPanelIn {
    0% {
        opacity: 0;
        transform: translate3d(-26px, 28px, 0) scale(0.965);
    }
    68% {
        opacity: 1;
        transform: translate3d(2px, -2px, 0) scale(1.012);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes ghmHeroPanelInRight {
    0% {
        opacity: 0;
        transform: translate3d(26px, 28px, 0) scale(0.965);
    }
    68% {
        opacity: 1;
        transform: translate3d(-2px, -2px, 0) scale(1.012);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes ghmHeroPanelAccentIn {
    from {
        opacity: 0;
        transform: scaleY(0.28);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

@keyframes ghmHeroPanelSweep {
    0% {
        opacity: 0;
        transform: translate3d(-120%, 0, 0) rotate(12deg);
    }
    22% {
        opacity: 0.44;
    }
    100% {
        opacity: 0;
        transform: translate3d(760%, 0, 0) rotate(12deg);
    }
}

@keyframes ghmHeroTextRise {
    from {
        opacity: 0;
        transform: translate3d(0, 18px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes ghmHeroDotsDockIn {
    0% {
        opacity: 0;
        transform: translate3d(-50%, 12px, 0) scale(0.96);
    }
    72% {
        opacity: 1;
        transform: translate3d(-50%, -2px, 0) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translate3d(-50%, 0, 0) scale(1);
    }
}

@keyframes ghmHeroDotProgress {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes ghmHeroArtIn {
    from {
        opacity: 0;
        transform: translate3d(var(--ghm-hero-art-enter-x, 34px), var(--ghm-hero-art-enter-y, 18px), 0) translate(var(--ghm-hero-art-anchor-x, 0%), var(--ghm-hero-art-anchor-y, 0%)) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) translate(var(--ghm-hero-art-anchor-x, 0%), var(--ghm-hero-art-anchor-y, 0%)) scale(1);
    }
}

@keyframes ghmHeroArtInLeft {
    from {
        opacity: 0;
        transform: translate3d(-34px, 18px, 0) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes ghmHeroArtInMobile {
    from {
        opacity: 0;
        transform: translate3d(-50%, 18px, 0) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translate3d(-50%, 0, 0) scale(1);
    }
}

@keyframes ghmHeroArtFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    22%, 78% {
        transform: translate3d(0, var(--ghm-hero-art-float-mid-y, -7px), 0);
    }
    50% {
        transform: translate3d(0, var(--ghm-hero-art-float-peak-y, -16px), 0);
    }
}

@media (max-width: 1200px) {
    .ghm-hero-carousel {
        --ghm-hero-panel-max-width: clamp(330px, 36vw, 420px);
        --ghm-hero-side-safe: clamp(22px, 4vw, 56px);
    }

    .ghm-hero-carousel__art {
        width: min(48vw, 560px);
    }
}

@media (max-width: 1024px) {
    .ghm-hero-carousel {
        --ghm-hero-panel-max-width: clamp(320px, 44vw, 410px);
        --ghm-hero-bottom-safe: 26px;
        --ghm-hero-nav-edge: 14px;
    }

    .ghm-hero-carousel__viewport,
    .ghm-hero-carousel__track,
    .ghm-hero-carousel__slide,
    .ghm-hero-carousel__content-wrap {
        height: var(--ghome-hero-height-tablet, var(--ghm-hero-height-tablet, 520px));
        min-height: var(--ghome-hero-height-tablet, var(--ghm-hero-height-tablet, 520px));
    }

    .ghm-hero-carousel__content-wrap {
        padding-top: 62px;
        padding-bottom: calc(var(--ghm-hero-bottom-safe) + 54px);
    }

    .ghm-hero-carousel__title {
        font-size: clamp(38px, 5vw, 52px);
    }

    .ghm-hero-carousel__arrow {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 767px) {
    .ghm-hero-carousel {
        --ghm-hero-panel-max-width: 100%;
        --ghm-hero-side-safe: clamp(16px, 4.8vw, 22px);
        --ghm-hero-bottom-safe: 16px;
        --ghm-hero-nav-edge: clamp(14px, 4.5vw, 20px);
        --ghm-hero-mobile-control-size: 42px;
        --ghm-hero-mobile-art-edge: clamp(10px, 3.8vw, 18px);
        --ghm-hero-mobile-art-bottom: calc(var(--ghm-hero-bottom-safe) + var(--ghm-hero-mobile-control-size) + 76px);
        --ghm-hero-art-float-duration: 5400ms;
        --ghm-hero-art-float-mid-y: -5px;
        --ghm-hero-art-float-peak-y: -12px;
    }

    .ghm-hero-carousel__viewport,
    .ghm-hero-carousel__track,
    .ghm-hero-carousel__slide,
    .ghm-hero-carousel__content-wrap {
        height: var(--ghome-hero-height-mobile, var(--ghm-hero-height-mobile, 460px));
        min-height: var(--ghome-hero-height-mobile, var(--ghm-hero-height-mobile, 460px));
    }

    .ghm-hero-carousel__slide {
        background-image: var(--ghm-hero-mobile-bg);
        background-position: center top;
        background-size: contain;
    }

    .ghm-hero-carousel__slide--text-light .ghm-hero-carousel__overlay {
        background: rgba(0, 0, 0, 0.04);
    }

    .ghm-hero-carousel__slide--text-dark .ghm-hero-carousel__overlay {
        background: rgba(255, 255, 255, 0.04);
    }

    .ghm-hero-carousel__slide--has-art.ghm-hero-carousel__slide--text-light .ghm-hero-carousel__overlay {
        background: rgba(0, 0, 0, 0.1);
    }

    .ghm-hero-carousel__slide--has-art.ghm-hero-carousel__slide--text-dark .ghm-hero-carousel__overlay {
        background: rgba(255, 255, 255, 0.16);
    }

    .ghm-hero-carousel__art,
    .ghm-hero-carousel__slide--align-right .ghm-hero-carousel__art {
        top: var(--ghm-hero-mobile-art-edge);
        right: auto;
        bottom: auto;
        left: 50%;
        z-index: 3;
        width: min(58vw, 238px);
        height: clamp(92px, calc(var(--ghome-hero-height-mobile, var(--ghm-hero-height-mobile, 460px)) * 0.31), 156px);
        --ghm-hero-art-anchor-x: -50%;
        --ghm-hero-art-anchor-y: 0%;
        --ghm-hero-art-enter-x: 0px;
        --ghm-hero-art-enter-y: 18px;
        transform: translate3d(var(--ghm-hero-art-enter-x), var(--ghm-hero-art-enter-y), 0) translate(var(--ghm-hero-art-anchor-x), var(--ghm-hero-art-anchor-y)) scale(0.96);
    }

    .ghm-hero-carousel__slide--art-mobile-top-left .ghm-hero-carousel__art {
        top: var(--ghm-hero-mobile-art-edge);
        right: auto;
        bottom: auto;
        left: var(--ghm-hero-side-safe);
        --ghm-hero-art-anchor-x: 0%;
        --ghm-hero-art-anchor-y: 0%;
    }

    .ghm-hero-carousel__slide--art-mobile-top-center .ghm-hero-carousel__art {
        top: var(--ghm-hero-mobile-art-edge);
        right: auto;
        bottom: auto;
        left: 50%;
        --ghm-hero-art-anchor-x: -50%;
        --ghm-hero-art-anchor-y: 0%;
    }

    .ghm-hero-carousel__slide--art-mobile-top-right .ghm-hero-carousel__art {
        top: var(--ghm-hero-mobile-art-edge);
        right: var(--ghm-hero-side-safe);
        bottom: auto;
        left: auto;
        --ghm-hero-art-anchor-x: 0%;
        --ghm-hero-art-anchor-y: 0%;
    }

    .ghm-hero-carousel__slide--art-mobile-center-left .ghm-hero-carousel__art {
        top: 46%;
        right: auto;
        bottom: auto;
        left: var(--ghm-hero-side-safe);
        --ghm-hero-art-anchor-x: 0%;
        --ghm-hero-art-anchor-y: -50%;
    }

    .ghm-hero-carousel__slide--art-mobile-center .ghm-hero-carousel__art {
        top: 46%;
        right: auto;
        bottom: auto;
        left: 50%;
        --ghm-hero-art-anchor-x: -50%;
        --ghm-hero-art-anchor-y: -50%;
    }

    .ghm-hero-carousel__slide--art-mobile-center-right .ghm-hero-carousel__art {
        top: 46%;
        right: var(--ghm-hero-side-safe);
        bottom: auto;
        left: auto;
        --ghm-hero-art-anchor-x: 0%;
        --ghm-hero-art-anchor-y: -50%;
    }

    .ghm-hero-carousel__slide--art-mobile-bottom-left .ghm-hero-carousel__art {
        top: auto;
        right: auto;
        bottom: var(--ghm-hero-mobile-art-bottom);
        left: var(--ghm-hero-side-safe);
        height: clamp(82px, calc(var(--ghome-hero-height-mobile, var(--ghm-hero-height-mobile, 460px)) * 0.24), 128px);
        --ghm-hero-art-anchor-x: 0%;
        --ghm-hero-art-anchor-y: 0%;
    }

    .ghm-hero-carousel__slide--art-mobile-bottom-center .ghm-hero-carousel__art {
        top: auto;
        right: auto;
        bottom: var(--ghm-hero-mobile-art-bottom);
        left: 50%;
        height: clamp(82px, calc(var(--ghome-hero-height-mobile, var(--ghm-hero-height-mobile, 460px)) * 0.24), 128px);
        --ghm-hero-art-anchor-x: -50%;
        --ghm-hero-art-anchor-y: 0%;
    }

    .ghm-hero-carousel__slide--art-mobile-bottom-right .ghm-hero-carousel__art {
        top: auto;
        right: var(--ghm-hero-side-safe);
        bottom: var(--ghm-hero-mobile-art-bottom);
        left: auto;
        height: clamp(82px, calc(var(--ghome-hero-height-mobile, var(--ghm-hero-height-mobile, 460px)) * 0.24), 128px);
        --ghm-hero-art-anchor-x: 0%;
        --ghm-hero-art-anchor-y: 0%;
    }

    .ghm-hero-carousel__art picture,
    .ghm-hero-carousel__art img {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
    }

    .ghm-hero-carousel__art img {
        object-fit: contain;
    }

    .ghm-hero-carousel__slide.is-active .ghm-hero-carousel__art,
    .ghm-hero-carousel__slide--align-right.is-active .ghm-hero-carousel__art {
        animation-name: ghmHeroArtIn;
    }

    .ghm-hero-carousel__content-wrap {
        display: none;
    }


    .ghm-hero-carousel__content {
        width: min(100%, 360px);
        max-width: 360px;
        max-height: none;
        padding: 0;
        border-color: transparent;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        overflow: visible;
        overscroll-behavior: auto;
        scrollbar-width: auto;
    }

    .ghm-hero-carousel__slide--has-art .ghm-hero-carousel__content,
    .ghm-hero-carousel__slide--text-light .ghm-hero-carousel__content,
    .ghm-hero-carousel__slide--has-art.ghm-hero-carousel__slide--text-light .ghm-hero-carousel__content {
        background: transparent;
        border-color: transparent;
        box-shadow: none;
    }

    .ghm-hero-carousel__subtitle,
    .ghm-hero-carousel__title,
    .ghm-hero-carousel__description {
        display: none;
    }

    .ghm-hero-carousel__subtitle {
        margin-bottom: 6px;
        font-size: 10px;
        line-height: 1.25;
        letter-spacing: 0.13em;
    }

    .ghm-hero-carousel__title {
        max-width: 100%;
        font-size: clamp(24px, 6.4vw, 30px);
        line-height: 1.07;
        letter-spacing: -0.04em;
        overflow-wrap: anywhere;
    }

    .ghm-hero-carousel__description {
        margin-top: 9px;
        font-size: 13px;
        line-height: 1.42;
    }

    .ghm-hero-carousel__slide--has-art .ghm-hero-carousel__description {
        display: none;
    }

    .ghm-hero-carousel__buttons,
    .ghm-hero-carousel__slide--align-center .ghm-hero-carousel__buttons,
    .ghm-hero-carousel__slide--align-right .ghm-hero-carousel__buttons {
        justify-content: center;
        gap: 8px;
        margin-top: 0;
    }

    .ghm-hero-carousel__button {
        flex: 1 1 calc(50% - 4px);
        min-width: 0;
        min-height: 42px;
        padding: 11px 12px;
        font-size: 13px;
    }

    .ghm-hero-carousel__arrow {
        top: auto;
        bottom: var(--ghm-hero-bottom-safe);
        width: var(--ghm-hero-mobile-control-size);
        height: var(--ghm-hero-mobile-control-size);
        background: rgba(255, 255, 255, 0.76);
        transform: none;
    }

    .ghm-hero-carousel__arrow--prev {
        left: var(--ghm-hero-nav-edge);
    }

    .ghm-hero-carousel__arrow--next {
        right: var(--ghm-hero-nav-edge);
    }

    .ghm-hero-carousel__arrow span {
        margin-top: -2px;
        font-size: 28px;
    }

    .ghm-hero-carousel__dots {
        bottom: calc(var(--ghm-hero-bottom-safe) + 5px);
        width: clamp(116px, 36vw, 166px);
        min-height: 24px;
        gap: 6px;
        padding: 0;
        filter: drop-shadow(0 5px 10px rgba(15, 23, 42, 0.16));
    }

    .ghm-hero-carousel__dot {
        min-width: 28px;
        height: 20px;
    }

    .ghm-hero-carousel__dot-track {
        height: 4px;
    }

    .ghm-hero-carousel__dot:hover .ghm-hero-carousel__dot-track,
    .ghm-hero-carousel__dot:focus-visible .ghm-hero-carousel__dot-track,
    .ghm-hero-carousel__dot.is-active .ghm-hero-carousel__dot-track,
    .ghm-hero-carousel__dot[aria-current="true"] .ghm-hero-carousel__dot-track {
        height: 6px;
    }
}

@media (max-width: 340px) {
    .ghm-hero-carousel__content-wrap {
        padding-left: 14px;
        padding-right: 14px;
    }

    .ghm-hero-carousel__content {
        padding: 14px;
    }

    .ghm-hero-carousel__button {
        flex-basis: 100%;
    }
}


.ghm-hero-carousel {
    --ghm-hero-current-height: clamp(540px, 41.5vw, var(--ghome-hero-height-desktop, var(--ghm-hero-height-desktop, 620px)));
    --ghm-hero-responsive-card-gap: clamp(22px, 4vw, 68px);
}

.ghm-hero-carousel__viewport,
.ghm-hero-carousel__track,
.ghm-hero-carousel__slide,
.ghm-hero-carousel__content-wrap {
    height: var(--ghm-hero-current-height);
    min-height: var(--ghm-hero-current-height);
}

.ghm-hero-carousel__content-wrap {
    padding-top: clamp(66px, 7.2vw, 104px);
    padding-bottom: calc(var(--ghm-hero-bottom-safe) + clamp(48px, 4.2vw, 68px));
}

.ghm-hero-carousel__content {
    width: min(100%, var(--ghm-hero-panel-max-width));
}

.ghm-hero-carousel__art {
    width: min(48vw, 680px);
}

@media (max-width: 1440px) {
    .ghm-hero-carousel {
        --ghm-hero-current-height: clamp(520px, 42.2vw, var(--ghome-hero-height-desktop, var(--ghm-hero-height-desktop, 620px)));
        --ghm-hero-panel-max-width: clamp(330px, 28vw, 410px);
        --ghm-hero-side-safe: clamp(20px, 4.2vw, 64px);
    }

    .ghm-hero-carousel__content {
        padding: clamp(21px, 2vw, 28px) clamp(22px, 2.35vw, 32px);
        border-radius: 26px;
    }

    .ghm-hero-carousel__title {
        font-size: clamp(36px, 3.25vw, 48px);
        max-width: 11.8ch;
    }

    .ghm-hero-carousel__description {
        font-size: clamp(13px, 1vw, 15px);
        line-height: 1.54;
    }

    .ghm-hero-carousel__button {
        min-height: 44px;
        padding: 12px 20px;
        font-size: 13px;
    }

    .ghm-hero-carousel__art {
        width: min(46vw, 610px);
    }
}

@media (max-width: 1280px) {
    .ghm-hero-carousel {
        --ghm-hero-current-height: clamp(500px, 43.5vw, var(--ghome-hero-height-desktop, var(--ghm-hero-height-desktop, 620px)));
        --ghm-hero-panel-max-width: clamp(318px, 31vw, 390px);
        --ghm-hero-side-safe: clamp(18px, 3.8vw, 54px);
    }

    .ghm-hero-carousel__content-wrap {
        padding-top: clamp(56px, 6.4vw, 86px);
        padding-bottom: calc(var(--ghm-hero-bottom-safe) + 54px);
    }

    .ghm-hero-carousel__title {
        font-size: clamp(34px, 3.5vw, 44px);
    }

    .ghm-hero-carousel__art {
        width: min(45vw, 540px);
    }

    .ghm-hero-carousel__dots {
        width: clamp(168px, 17vw, 260px);
    }
}

@media (max-width: 1024px) {
    .ghm-hero-carousel {
        --ghm-hero-current-height: clamp(430px, 55vw, var(--ghome-hero-height-tablet, var(--ghm-hero-height-tablet, 520px)));
        --ghm-hero-panel-max-width: clamp(300px, 39vw, 370px);
        --ghm-hero-side-safe: clamp(18px, 3.5vw, 38px);
        --ghm-hero-bottom-safe: 22px;
    }

    .ghm-hero-carousel__content-wrap {
        padding-top: clamp(46px, 5.8vw, 64px);
        padding-bottom: calc(var(--ghm-hero-bottom-safe) + 50px);
    }

    .ghm-hero-carousel__content {
        padding: clamp(18px, 2.4vw, 24px);
        border-radius: 24px;
    }

    .ghm-hero-carousel__subtitle {
        margin-bottom: 8px;
        font-size: 10px;
        letter-spacing: 0.16em;
    }

    .ghm-hero-carousel__title {
        font-size: clamp(30px, 4.2vw, 40px);
        line-height: 1.04;
        max-width: 12.2ch;
    }

    .ghm-hero-carousel__description {
        margin-top: 12px;
        font-size: 13px;
        line-height: 1.48;
    }

    .ghm-hero-carousel__buttons {
        gap: 10px;
        margin-top: 18px;
    }

    .ghm-hero-carousel__button {
        min-height: 40px;
        padding: 10px 17px;
        font-size: 12px;
    }

    .ghm-hero-carousel__art {
        width: min(43vw, 430px);
    }

    .ghm-hero-carousel__art picture,
    .ghm-hero-carousel__art img {
        max-height: 82%;
    }

    .ghm-hero-carousel__arrow {
        width: 44px;
        height: 44px;
    }

    .ghm-hero-carousel__arrow span {
        font-size: 30px;
    }

    .ghm-hero-carousel__dots {
        width: clamp(150px, 22vw, 230px);
        bottom: calc(var(--ghm-hero-bottom-safe) + 8px);
    }
}

@media (min-width: 768px) and (max-width: 900px) {
    .ghm-hero-carousel {
        --ghm-hero-current-height: clamp(420px, 58vw, var(--ghome-hero-height-tablet, var(--ghm-hero-height-tablet, 520px)));
        --ghm-hero-panel-max-width: clamp(286px, 40vw, 336px);
        --ghm-hero-side-safe: clamp(16px, 3.2vw, 28px);
    }

    .ghm-hero-carousel__content {
        padding: 18px 20px;
        border-radius: 22px;
    }

    .ghm-hero-carousel__title {
        font-size: clamp(28px, 4.4vw, 36px);
        max-width: 12ch;
    }

    .ghm-hero-carousel__description {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .ghm-hero-carousel__art {
        width: min(41vw, 340px);
    }
}

@media (max-height: 620px) and (min-width: 768px) {
    .ghm-hero-carousel {
        --ghm-hero-current-height: clamp(410px, 82vh, var(--ghome-hero-height-desktop, var(--ghm-hero-height-desktop, 620px)));
        --ghm-hero-bottom-safe: 18px;
    }

    .ghm-hero-carousel__content-wrap {
        padding-top: clamp(38px, 8vh, 60px);
        padding-bottom: calc(var(--ghm-hero-bottom-safe) + 44px);
    }

    .ghm-hero-carousel__content {
        padding: 18px 22px;
    }

    .ghm-hero-carousel__title {
        font-size: clamp(29px, 5vh, 40px);
    }

    .ghm-hero-carousel__description {
        margin-top: 10px;
        line-height: 1.42;
    }

    .ghm-hero-carousel__buttons {
        margin-top: 16px;
    }

    .ghm-hero-carousel__art picture,
    .ghm-hero-carousel__art img {
        max-height: 78%;
    }
}

@media (max-width: 767px) {
    .ghm-hero-carousel {
        --ghm-hero-current-height: clamp(340px, 112vw, var(--ghome-hero-height-mobile, var(--ghm-hero-height-mobile, 460px)));
        --ghm-hero-side-safe: clamp(14px, 4.2vw, 20px);
        --ghm-hero-mobile-control-size: clamp(38px, 10.5vw, 44px);
        --ghm-hero-mobile-art-edge: clamp(10px, 3.6vw, 18px);
        --ghm-hero-mobile-art-bottom: calc(var(--ghm-hero-bottom-safe) + var(--ghm-hero-mobile-control-size) + clamp(54px, 13vw, 76px));
    }

    .ghm-hero-carousel__slide {
        background-size: contain;
        background-position: center top;
    }

    .ghm-hero-carousel__art,
    .ghm-hero-carousel__slide--align-right .ghm-hero-carousel__art,
    .ghm-hero-carousel__slide--art-desktop-left .ghm-hero-carousel__art,
    .ghm-hero-carousel__slide--art-desktop-center .ghm-hero-carousel__art,
    .ghm-hero-carousel__slide--art-desktop-right .ghm-hero-carousel__art {
        width: clamp(138px, 58vw, 252px);
        height: clamp(92px, 34vw, 168px);
    }

    .ghm-hero-carousel__slide--art-mobile-bottom-left .ghm-hero-carousel__art,
    .ghm-hero-carousel__slide--art-mobile-bottom-center .ghm-hero-carousel__art,
    .ghm-hero-carousel__slide--art-mobile-bottom-right .ghm-hero-carousel__art {
        height: clamp(76px, 27vw, 128px);
    }

    .ghm-hero-carousel__art img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .ghm-hero-carousel__arrow {
        width: var(--ghm-hero-mobile-control-size);
        height: var(--ghm-hero-mobile-control-size);
    }

    .ghm-hero-carousel__dots {
        width: clamp(118px, 34vw, 164px);
        bottom: calc(var(--ghm-hero-bottom-safe) + 5px);
    }
}

@media (max-width: 480px) {
    .ghm-hero-carousel {
        --ghm-hero-current-height: clamp(340px, 110vw, var(--ghome-hero-height-mobile, var(--ghm-hero-height-mobile, 460px)));
        --ghm-hero-bottom-safe: 14px;
    }

    .ghm-hero-carousel__art,
    .ghm-hero-carousel__slide--align-right .ghm-hero-carousel__art,
    .ghm-hero-carousel__slide--art-desktop-left .ghm-hero-carousel__art,
    .ghm-hero-carousel__slide--art-desktop-center .ghm-hero-carousel__art,
    .ghm-hero-carousel__slide--art-desktop-right .ghm-hero-carousel__art {
        width: clamp(132px, 56vw, 232px);
        height: clamp(86px, 32vw, 152px);
    }

    .ghm-hero-carousel__dots {
        width: clamp(112px, 38vw, 154px);
        gap: 5px;
    }
}

@media (max-width: 380px) {
    .ghm-hero-carousel {
        --ghm-hero-current-height: clamp(330px, 108vw, var(--ghome-hero-height-mobile, var(--ghm-hero-height-mobile, 420px)));
        --ghm-hero-mobile-control-size: 38px;
    }

    .ghm-hero-carousel__art,
    .ghm-hero-carousel__slide--align-right .ghm-hero-carousel__art,
    .ghm-hero-carousel__slide--art-desktop-left .ghm-hero-carousel__art,
    .ghm-hero-carousel__slide--art-desktop-center .ghm-hero-carousel__art,
    .ghm-hero-carousel__slide--art-desktop-right .ghm-hero-carousel__art {
        width: clamp(124px, 54vw, 204px);
        height: clamp(80px, 31vw, 134px);
    }

    .ghm-hero-carousel__arrow span {
        font-size: 26px;
    }
}

@media (max-width: 767px) and (orientation: landscape) {
    .ghm-hero-carousel {
        --ghm-hero-current-height: clamp(300px, 82vh, var(--ghome-hero-height-mobile, var(--ghm-hero-height-mobile, 420px)));
    }

    .ghm-hero-carousel__art,
    .ghm-hero-carousel__slide--align-right .ghm-hero-carousel__art,
    .ghm-hero-carousel__slide--art-desktop-left .ghm-hero-carousel__art,
    .ghm-hero-carousel__slide--art-desktop-center .ghm-hero-carousel__art,
    .ghm-hero-carousel__slide--art-desktop-right .ghm-hero-carousel__art {
        width: clamp(132px, 36vw, 220px);
        height: clamp(78px, 28vh, 132px);
    }
}


/* v2.5.33 mobile repair: avoid blank lower half caused by wide banner contain mode, and keep the progress bar animated. */
@media (max-width: 767px) {
    .ghm-hero-carousel {
        --ghm-hero-current-height: clamp(320px, 86vw, 390px);
        --ghm-hero-bottom-safe: clamp(14px, 4vw, 18px);
        --ghm-hero-nav-edge: clamp(18px, 5vw, 24px);
        --ghm-hero-mobile-control-size: clamp(38px, 10.4vw, 44px);
        --ghm-hero-mobile-art-edge: clamp(28px, 9vw, 52px);
        --ghm-hero-mobile-art-bottom: calc(var(--ghm-hero-bottom-safe) + var(--ghm-hero-mobile-control-size) + clamp(34px, 10vw, 48px));
        background: #eef3ec;
    }

    .ghm-hero-carousel__viewport,
    .ghm-hero-carousel__track,
    .ghm-hero-carousel__slide {
        height: var(--ghm-hero-current-height);
        min-height: var(--ghm-hero-current-height);
    }

    .ghm-hero-carousel__content-wrap {
        display: none !important;
    }

    .ghm-hero-carousel__slide {
        background-image: var(--ghm-hero-mobile-bg);
        background-size: cover;
        background-position: center center;
        background-color: #eef3ec;
    }

    .ghm-hero-carousel__slide--text-light .ghm-hero-carousel__overlay {
        background: rgba(0, 0, 0, 0.035);
    }

    .ghm-hero-carousel__slide--text-dark .ghm-hero-carousel__overlay {
        background: rgba(255, 255, 255, 0.035);
    }

    .ghm-hero-carousel__art,
    .ghm-hero-carousel__slide--align-right .ghm-hero-carousel__art,
    .ghm-hero-carousel__slide--art-desktop-left .ghm-hero-carousel__art,
    .ghm-hero-carousel__slide--art-desktop-center .ghm-hero-carousel__art,
    .ghm-hero-carousel__slide--art-desktop-right .ghm-hero-carousel__art {
        z-index: 3;
        width: clamp(118px, 42vw, 184px);
        height: clamp(92px, 34vw, 150px);
        max-width: 48vw;
        max-height: 44%;
    }

    .ghm-hero-carousel__slide--art-mobile-top-left .ghm-hero-carousel__art,
    .ghm-hero-carousel__slide--art-mobile-top-center .ghm-hero-carousel__art,
    .ghm-hero-carousel__slide--art-mobile-top-right .ghm-hero-carousel__art {
        top: var(--ghm-hero-mobile-art-edge);
    }

    .ghm-hero-carousel__slide--art-mobile-center-left .ghm-hero-carousel__art,
    .ghm-hero-carousel__slide--art-mobile-center .ghm-hero-carousel__art,
    .ghm-hero-carousel__slide--art-mobile-center-right .ghm-hero-carousel__art {
        top: 48%;
    }

    .ghm-hero-carousel__slide--art-mobile-bottom-left .ghm-hero-carousel__art,
    .ghm-hero-carousel__slide--art-mobile-bottom-center .ghm-hero-carousel__art,
    .ghm-hero-carousel__slide--art-mobile-bottom-right .ghm-hero-carousel__art {
        height: clamp(82px, 30vw, 132px);
        bottom: var(--ghm-hero-mobile-art-bottom);
    }

    .ghm-hero-carousel__art picture,
    .ghm-hero-carousel__art img {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
    }

    .ghm-hero-carousel__art img {
        object-fit: contain;
    }

    .ghm-hero-carousel__arrow {
        top: auto;
        bottom: var(--ghm-hero-bottom-safe);
        width: var(--ghm-hero-mobile-control-size);
        height: var(--ghm-hero-mobile-control-size);
        color: #111827;
        background: rgba(255, 255, 255, 0.78);
        border-color: rgba(17, 24, 39, 0.08);
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
        transform: none;
    }

    .ghm-hero-carousel__arrow--prev {
        left: var(--ghm-hero-nav-edge);
    }

    .ghm-hero-carousel__arrow--next {
        right: var(--ghm-hero-nav-edge);
    }

    .ghm-hero-carousel__dots {
        bottom: calc(var(--ghm-hero-bottom-safe) + 7px);
        width: clamp(126px, 38vw, 174px);
        min-height: 26px;
        gap: 7px;
        filter: drop-shadow(0 7px 12px rgba(15, 23, 42, 0.2));
    }

    .ghm-hero-carousel__dot {
        min-width: 34px;
        height: 22px;
    }

    .ghm-hero-carousel__dot-track {
        height: 4px;
        background: rgba(255, 255, 255, 0.56);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7), 0 3px 8px rgba(15, 23, 42, 0.16);
    }

    .ghm-hero-carousel__dot.is-active .ghm-hero-carousel__dot-track,
    .ghm-hero-carousel__dot[aria-current="true"] .ghm-hero-carousel__dot-track,
    .ghm-hero-carousel__dot:hover .ghm-hero-carousel__dot-track,
    .ghm-hero-carousel__dot:focus-visible .ghm-hero-carousel__dot-track {
        height: 6px;
    }
}

@media (max-width: 380px) {
    .ghm-hero-carousel {
        --ghm-hero-current-height: clamp(310px, 84vw, 360px);
    }

    .ghm-hero-carousel__dots {
        width: clamp(120px, 40vw, 156px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ghm-hero-carousel__track,
    .ghm-hero-carousel__button,
    .ghm-hero-carousel__button::after,
    .ghm-hero-carousel__arrow,
    .ghm-hero-carousel__dot,
    .ghm-hero-carousel__dot-track,
    .ghm-hero-carousel__dot-fill,
    .ghm-hero-carousel__skeleton-line::after,
    .ghm-hero-carousel__skeleton-action::after {
        transition: none;
    }

    .ghm-hero-carousel__dots,
    .ghm-hero-carousel__content-skeleton,
    .ghm-hero-carousel__skeleton-line::after,
    .ghm-hero-carousel__skeleton-action::after,
    .ghm-hero-carousel__dot-fill,
    .ghm-hero-carousel__slide.is-active .ghm-hero-carousel__content,
    .ghm-hero-carousel__slide.is-active .ghm-hero-carousel__content::before,
    .ghm-hero-carousel__slide.is-active .ghm-hero-carousel__content::after,
    .ghm-hero-carousel__slide.is-active .ghm-hero-carousel__subtitle,
    .ghm-hero-carousel__slide.is-active .ghm-hero-carousel__title,
    .ghm-hero-carousel__slide.is-active .ghm-hero-carousel__description,
    .ghm-hero-carousel__slide.is-active .ghm-hero-carousel__buttons,
    .ghm-hero-carousel__slide.is-active .ghm-hero-carousel__art,
    .ghm-hero-carousel__slide.is-active .ghm-hero-carousel__art img {
        animation: none;
    }

    .ghm-hero-carousel__dots,
    .ghm-hero-carousel__slide.is-active .ghm-hero-carousel__content,
    .ghm-hero-carousel__slide.is-active .ghm-hero-carousel__art {
        opacity: 1;
        transform: none;
    }

    .ghm-hero-carousel__slide.is-active .ghm-hero-carousel__content::before {
        opacity: 1;
        transform: scaleY(1);
    }

    .ghm-hero-carousel__slide.is-active .ghm-hero-carousel__content::after,
    .ghm-hero-carousel__content-skeleton {
        opacity: 0;
    }
}

@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
    .ghm-hero-carousel__slide.is-active .ghm-hero-carousel__art {
        transform: translate3d(-50%, 0, 0) scale(1);
    }
}

/* v2.5.40 refined homepage hero */
.ghm-hero-carousel {
    --ghm-hero-progress-active: #ffffff;
    --ghm-hero-progress-active-shadow: 0 0 0 1px rgba(255, 255, 255, 0.34), 0 4px 12px rgba(15, 23, 42, 0.14);
    --ghm-hero-progress-track: rgba(255, 255, 255, 0.36);
    --ghm-hero-progress-track-border: rgba(255, 255, 255, 0.52);
}

.ghm-hero-carousel__content {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 22px 58px rgba(15, 23, 42, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.ghm-hero-carousel__button,
.ghm-hero-carousel__button:visited {
    letter-spacing: 0.055em;
}

.ghm-hero-carousel__button:hover,
.ghm-hero-carousel__button:focus {
    transform: translateY(-2px);
}

.ghm-hero-carousel__arrow {
    border-color: rgba(255, 255, 255, 0.44);
    background: rgba(255, 255, 255, 0.84);
    color: #111827;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.14);
}

.ghm-hero-carousel__arrow:hover,
.ghm-hero-carousel__arrow:focus-visible {
    background: #ffffff;
    color: #1f4ed8;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.18);
}

.ghm-hero-carousel__dot-track {
    background: var(--ghm-hero-progress-track);
    box-shadow: inset 0 0 0 1px var(--ghm-hero-progress-track-border), 0 4px 12px rgba(15, 23, 42, 0.12);
}

.ghm-hero-carousel__dot-fill {
    background: var(--ghm-hero-progress-active);
}

@media (max-width: 767px) {
    .ghm-hero-carousel__arrow {
        width: 38px;
        height: 38px;
        background: rgba(255, 255, 255, 0.9);
    }

    .ghm-hero-carousel__dot-track {
        height: 4px;
    }
}
