main {
    display:flex;
    flex-direction: column;
    gap: 16px;
}

#lovis-portrait {
    width: 100%;
    height: 35vh;
    object-fit: cover;
    border-radius: 0;
}

#hero-description {
    color: #A7AF87;
    font-size: 3.5vw;
    font-weight: 750;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-align: justify;
    hyphens: manual;
    word-break: break-word;
    word-spacing: 0.5em;
}

/* This pseudo-element forces the last line to justify too */
#hero-description::after {
    content: "";
    display: inline-block;
    width: 100%;
}


/* BREAKPOINTS */

/* TABLET */
@media (width >= 48rem) {
    main {
        gap: 36px;
    }

    #lovis-portrait {
        height: 35vh;
    }

}

/* DESKTOP */
@media (width >= 96rem) {
    main {
        gap: 52px;
    }

    #lovis-portrait {
        height: 50vh;
    }

}

/*.card {*/
/*    background-color: white;*/
/*    padding: 40px;*/
/*    border-radius: 20px;*/
/*    border: black 2px solid;*/
/*    box-shadow: #A6B1E1 2px 2px 30px;*/
/*}*/

/*.parent {*/
/*    background-color: lightpink;*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    gap: 50px;*/
/*    flex-direction: column;*/
/*    height: 500px;*/
/*    padding: 50px;*/
/*    !*margin: 50px;*!*/
/*    border-radius: 50px;*/
/*}*/


