* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
}

body {
    background-color: hsl(210, 46%, 95%);
}

.container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 75px 24px;
}

.article-card {
    width: 730px;
    height: 280px;
    display: flex;
    background: #FFFFFF;
    box-shadow: 0px 40px 40px -10px rgba(201, 213, 225, 0.503415);
    border-radius: 10px;
    position: relative;
}

.article-card > img {
    width: 280px;
    height: 280px;
    border-radius: 10px 0 0 10px;
}

.metadati {
    padding: 32px 40px;
}

.metadati > h1 {
    font-weight: bold;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.25px;
    color: #48556A;
    margin-bottom: 12px;
}

.metadati > p {
    font-weight: 200;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0.121875px;
    color: #6E8098;
    margin-bottom: 20px;
}

.assets {
    display: flex;
    justify-content: space-between;
}

.author > img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 16px;
}

.author {
    display: flex;
}

.author-name {
    font-weight: bold;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0.121875px;
    color: #48556A;
}

.publish-date {
    font-weight: 200;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0.121875px;
    color: #9DAEC2;
}

.share-button {
    background: transparent;
    border: none;
}

.share-button:hover {
    cursor: pointer;
}

.share {
    width: 32px;
    height: 32px;
    background: #ECF2F8;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.share-active {
    background: #6E8098;
}

#icon-share {
    display: block;
}

#icon-share-active {
    display: none;
}

.share-container {
    background: #48556A;
    box-shadow: 0px 10px 10px rgba(201, 213, 225, 0.503415);
    padding: 18px 36px;
    border-radius: 10px;
    position: absolute;
    bottom: 120px;
    right: -90px;
    display: none;
}

.share-container > span {
    font-weight: 200;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 5px;
    color: #9DAEC2;
}

.text-share {
    margin-right: 21px;
}

.social-icons > img {
    margin-right: 16px;
}

.attribution {
    font-size: 11px; 
    text-align: center; 
}

.attribution a {
    color: hsl(228, 45%, 44%); 
}

@media screen and (max-width: 728px) {
    .metadati > h1 {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0.2px;
    }
}

@media screen and (max-width: 670px) {
    .article-card {
        width: 100%;
        height: auto;
        display: block;
        background: #FFFFFF;
        box-shadow: 0px 40px 40px -10px rgba(201, 213, 225, 0.503415);
        border-radius: 10px;
    }

    .container {
        height: auto;
    }

    .article-card > img {
        width: 100%;
        height: auto;
        border-radius: 10px 10px 0 0;
    }

    .share-container {
        border-radius: 0 0 10px 10px;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 0;
        height: 88px;
    }

    .share-button {
        position: relative;
        z-index: 1;
    }
}