.hero-showcase {
    position: relative;
    width: 100%;
}

.hero-showcase__content {
    padding: 1rem 0 5rem 0;
    position: relative;
    z-index: 2;
}

.hero-showcase__content-inner {
    max-width: 100%;
}

.hero-showcase__heading {
    margin-top: 2rem;
    color: var(--wp--preset--color--foreground);
    font-family: var(--wp--preset--font-family--playfair-display);
    font-size: var(--jwa-hero-font-size);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 2rem;
}

.hero-showcase__heading p {
    max-width: 55%;
    margin-bottom: 0;
}

.hero-showcase__buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-start;
}

.hero-showcase__background {
    position: relative;
    z-index: 1;
}

.hero-showcase__background--mobile {
    display: none;
}

.hero-showcase__image {
    width: 100%;
    height: auto;
    max-height: 900px;
    object-fit: cover;
    object-position: center;
}

.hero-showcase__image--mobile {
    max-height: 100vh;
    object-position: center top;
}

.hero-showcase__bottom-area {
    width: 100%;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .hero-showcase__heading {
        max-width: 60%;
    }

    .hero-showcase__background {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
}

@media (max-width: 768px) {
    .hero-showcase__content {
        padding: 1.5rem 0;
    }

    .hero-showcase__heading {
        font-size: 2.25rem;
        max-width: 100%;
    }
}
