.lt-text-hero {
    --lt-text-hero--padding-desktop: 30px;
    --lt-text-hero--padding-mobile: 10px;
    --lt-text-hero--padding-top-desktop: 190px;
    --lt-text-hero--padding-bottom-desktop: 130px;
    --lt-text-hero--padding-top-mobile: 130px;
    --lt-text-hero--padding-bottom-mobile: 110px;
    --lt-text-hero--bg-color: var(--wp--preset--color--page-bg);
    --lt-text-hero--text-color: var(--wp--preset--color--black-100, #1C1C1C);
    --lt-text-hero--title-font-size: var(--wp--custom--font-size--heading-1);
    --lt-text-hero--title-line-height-desktop: 90px;
    --lt-text-hero--title-line-height-mobile: 38px;
    --lt-text-hero--content-font-size: var(--wp--preset--font-size--large);
    --lt-text-hero--content-font-size-mobile: var(--wp--preset--font-size--medium);
    --lt-text-hero--cta-font-size: var(--wp--preset--font-size--medium);
    --lt-text-hero--title-content-gap: 22px;
    --lt-text-hero--content-cta-gap: 40px;
    --lt-text-hero--gap-mobile: 20px;
    --lt-text-hero--content-cta-gap-mobile: 40px;
    --lt-text-hero--section-top-spacing: 40px;
    --lt-text-hero--section-top-spacing-mobile: 40px;
    --lt-text-hero--section-bottom-spacing: 40px;
    --lt-text-hero--section-bottom-spacing-mobile: 40px;
    width: 100%;
    padding-top: var(--lt-text-hero--section-top-spacing);
    padding-bottom: var(--lt-text-hero--section-bottom-spacing);
    padding-left: var(--lt-text-hero--padding-desktop);
    padding-right: var(--lt-text-hero--padding-desktop);
    background-color: var(--lt-text-hero--bg-color);
    color: var(--lt-text-hero--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.lt-text-hero--compact-spacing {
    --lt-text-hero--padding-top-desktop: 100px;
    --lt-text-hero--padding-bottom-desktop: 100px;
    --lt-text-hero--padding-top-mobile: 50px;
    --lt-text-hero--padding-bottom-mobile: 50px;
}

.lt-text-hero__container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lt-text-hero__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.lt-text-hero__title-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: var(--lt-text-hero--title-content-gap);
}

.lt-text-hero__title {
    font-size: var(--lt-text-hero--title-font-size);
    font-family: var(--font--secondary, "Special Gothic Condensed One", sans-serif);
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    text-align: right;
    word-wrap: break-word;
    margin: 0;
}

.lt-text-hero__text {
    width: 100%;
    max-width: 915px;
    font-size: var(--lt-text-hero--content-font-size);
    font-family: var(--font--primary, "Sofia Pro", sans-serif);
    font-weight: 500;
    line-height: 1.44;
    text-align: right;
    word-wrap: break-word;
}

.lt-text-hero__text p {
    margin: 0 0 1.44em 0;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    letter-spacing: -0.2px;
}

.lt-text-hero__text p:last-child {
    margin-bottom: 0;
}

.lt-text-hero__cta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: var(--lt-text-hero--content-cta-gap);
}

.lt-text-hero__cta-link {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.lt-text-hero__cta-link:hover {
    opacity: 0.7;
}

.lt-text-hero__cta-text {
    font-size: var(--lt-text-hero--cta-font-size);
    font-family: var(--font--primary, "Sofia Pro", sans-serif);
    font-weight: 600;
    text-transform: uppercase;
    word-wrap: break-word;
    line-height: 1;
    color: inherit;
}

.lt-text-hero__cta-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: inherit;
    margin-top: -2px;
}

.lt-text-hero__cta-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.lt-text-hero--align-left .lt-text-hero__content {
    align-items: flex-start;
}

.lt-text-hero--align-left .lt-text-hero__title-wrapper {
    justify-content: flex-start;
}

.lt-text-hero--align-left .lt-text-hero__title {
    text-align: left;
}

.lt-text-hero--align-left .lt-text-hero__text {
    text-align: left;
}

.lt-text-hero--align-left .lt-text-hero__cta {
    justify-content: flex-start;
}

@media (max-width: 1024px) {
    .lt-text-hero {
        padding-top: var(--lt-text-hero--section-top-spacing);
        padding-bottom: var(--lt-text-hero--section-bottom-spacing);
        padding-right: var(--lt-text-hero--padding-mobile);
        padding-left: var(--lt-text-hero--padding-mobile);
        --lt-text-hero--title-content-gap: var(--lt-text-hero--gap-mobile);
        --lt-text-hero--content-cta-gap: var(--lt-text-hero--content-cta-gap-mobile);
    }

    .lt-text-hero__title {
        font-size: var(--lt-text-hero--title-font-size);
        line-height: var(--lt-text-hero--title-line-height-mobile);
    }

    .lt-text-hero__title-wrapper {
        margin-bottom: var(--lt-text-hero--gap-mobile);
    }

    .lt-text-hero__text {
        font-size: var(--lt-text-hero--content-font-size-mobile);
    }

    .lt-text-hero__text p {
        letter-spacing: -0.16px;
    }

    .lt-text-hero__cta {
        margin-top: var(--lt-text-hero--content-cta-gap-mobile);
    }

    .lt-text-hero__cta-text {
        font-size: var(--lt-text-hero--cta-font-size);
    }

    .lt-text-hero__cta-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 768px) {
    .lt-text-hero {
        --lt-text-hero--padding-mobile: 10px;
        --lt-text-hero--gap-mobile: 20px;
        padding-top: var(--lt-text-hero--section-top-spacing);
        padding-bottom: var(--lt-text-hero--section-bottom-spacing);
    }

    .lt-text-hero__title-wrapper {
        margin-bottom: var(--lt-text-hero--title-content-gap-mobile);
    }
}

@media (max-width: 480px) {
    .lt-text-hero {
        --lt-text-hero--padding-mobile: 10px;
        --lt-text-hero--gap-mobile: 20px;
    }
}