/*********************/
/* ARTICLE HERO      */
/*********************/

.front-page-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 560px;
    color: #ffffff;
    background-color: #007a74;
    /* background-position: center, right center;
    background-repeat: no-repeat;
    background-size: cover, contain; */
    isolation: isolate;
}

.front-page-hero > .tebarato-container {
    width: min(calc(100% - 40px), 1180px);
    margin-inline: auto;
}

/****************************************/
.front-page-hero:not(.front-page-hero--without-image)::after {
    position: absolute;
    inset: 0 0 0 auto;
    z-index: -1;
    width: 45%;
    background-image:
        linear-gradient(
            90deg,
            rgb(0 122 116 / 42%) 0%,
            rgb(0 122 116 / 16%) 45%,
            rgb(0 72 69 / 12%) 100%
        ),
        var(--front-page-hero-image);
    background-position: center, center;
    background-size: 100% 100%, contain;
    /* background-position: center; */
    background-repeat: no-repeat;
    /* background-size: cover; */
    content: "";
}

.front-page-hero__content {
    width: 55%;
    max-width: 650px;
    padding-block: 76px;
    padding-right: 48px;
}

/*******************************************/
.front-page-hero--without-image {
    background-image: linear-gradient(
        120deg,
        #007a74 0%,
        #219b95 58%,
        #43b3ae 100%
    );
}

.front-page-hero--without-image::after {
    position: absolute;
    top: -130px;
    right: -90px;
    z-index: -1;
    width: 430px;
    height: 430px;
    border: 72px solid rgb(255 255 255 / 10%);
    border-radius: 50%;
    content: "";
}

.front-page-hero__content {
    max-width: 720px;
    padding-block: 76px;
}

.front-page-hero__eyebrow {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-transform: uppercase;
}

.front-page-hero__title {
    max-width: 720px;
    margin: 0 0 22px;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: clamp(2.7rem, 6vw, 4.7rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.08;
    text-wrap: balance;
}

.front-page-hero__description {
    max-width: 660px;
    margin-bottom: 30px;
    color: rgb(255 255 255 / 92%);
    font-size: 1.16rem;
    line-height: 1.7;
}

.front-page-hero__description p {
    margin: 0;
}

.front-page-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 12px 22px;
    color: #007a74;
    background-color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 8px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition:
        color 160ms ease,
        background-color 160ms ease,
        transform 160ms ease;
}

.front-page-hero__button:hover {
    color: #ffffff;
    background-color: transparent;
    transform: translateY(-2px);
}

.front-page-hero__button:focus-visible {
    outline: 3px solid #00ccff;
    outline-offset: 4px;
}