.block-hero-home {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding-top: 10rem;
    padding-bottom: 4rem;
    background: url(../../../assets/images/gradient-4.png);
    background-size: 100px 60%;
    background-repeat: repeat-x;
    margin-bottom: 0 !important;
}

.block-hero-home__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Supertitle */
.block-hero-home__supertitle {
    color: color-mix(in srgb, currentColor 70%, transparent);
    margin-bottom: 0;
    letter-spacing: -0.0325em;
}

/* Title */
.block-hero-home__title {
    margin-top: 0 !important;
    margin-bottom: 2rem;
    max-width: 65rem;
}

/* Scroll hint */
.block-hero-home__scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--wp--preset--color--contrast, #202333);
    cursor: pointer;
    color: var(--wp--preset--color--base, #fff);
    margin-bottom: 4rem;
    animation: hero-home-bounce 2s ease-in-out infinite;
}

.block-hero-home__scroll-hint:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}

@keyframes hero-home-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

@media (prefers-reduced-motion: reduce) {
    .block-hero-home__scroll-hint {
        animation: none;
    }
}

/* Media */
.block-hero-home__media {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    margin-bottom: 6rem;
}

.block-hero-home__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block-hero-home__video-native {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block-hero-home__video-embed {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.block-hero-home__video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Intro */
.block-hero-home__intro {
    line-height: 1.2;
    max-width: 70rem;
    text-align: center;
    color: inherit;
}

/* Buttons */
.block-hero-home__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.block-hero-home__button {
    white-space: nowrap;
}

/* Bottom anchor */
.block-hero-home__anchor {
    position: relative;
    height: 0;
    overflow: hidden;
}
