main{
    display: grid;
    grid-template: auto / 1fr 2fr;
    gap: 5px;
    width: 800px;
    height: 330px;
    background-color: #FFF;
    position: relative;
}

.img{
    width: 100%;
    height: 100%;
    border-radius: 10px 0 0 10px;
    box-shadow: none;
    background-position: left;
}

.content h2{
    font-size: 1.63em;
    line-height: 30px;
    font-weight: 500;
}

.content > p{
    font-size: 1.1em;
    line-height: 25px;
    font-weight: light;
}

.author .profile{
    vertical-align: 7px;
}

.profile > p{
    font-size: 0.9em;
}

.btn-share{
    margin-left: 230px;
}

.share{
    position: absolute;
    border-radius: 10px;
    width: 260px;
    height: 65px;
    top: 170px;
    left: 603px;
}

.share::after{
    content: '';
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #48546a;
}

.share > .btn-share{
    display: none;
}