/* =========================================================
   BEAUTY BY TMY
   HERO
   Mobile First
   ========================================================= */


.beauty-hero {

    display: grid;

    background: #eadfe3;

    color: #171313;

}


/* =========================================================
   CONTENT
   ========================================================= */


.beauty-hero__content {

    padding:
        50px 22px 42px;

}


.beauty-hero h1 {

    max-width: 650px;

    margin: 0;

    color: #171313;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            3.5rem,
            15vw,
            7rem
        );

    font-weight: 500;

    letter-spacing:
        -0.055em;

    line-height:
        0.95;

}


.beauty-hero__description {

    max-width: 560px;

    margin:
        20px 0 0;

    color:
        #65575a;

    line-height:
        1.7;

}


.beauty-hero__actions {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 28px;

}


/* =========================================================
   IMAGE
   Entire image remains visible
   ========================================================= */


.beauty-hero__image {

    display: flex;

    align-items: center;

    justify-content: center;

    min-width: 0;

    min-height: 520px;

    overflow: hidden;

    background:
        #eadfe3;

}


.beauty-hero__image img {

    display: block;

    width: 80%;

    height: 80%;

    object-fit: contain;

    object-position:
        center center;

}




/* =========================================================
   TABLET + DESKTOP
   ========================================================= */


@media (min-width: 768px) {

    .beauty-hero {

        grid-template-columns:
            0.9fr 1.1fr;

        min-height:
            730px;

    }


    .beauty-hero__content {

        display: flex;

        flex-direction: column;

        justify-content: center;

        padding:
            70px 6vw;

    }


    .beauty-hero__image {

        min-height:
            730px;

    }

}