.article-reading-time-and-share {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #D9D9D980;
    border-bottom: 1px solid #D9D9D980;
    margin-bottom: 20px;

    & .reading-time {
        display: flex;
        flex-direction: row;
        gap: 10px;
        align-items: center;
        justify-content: center;
        color: #5A5A5A;
        font-family: Synonym;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        padding-right: 30px;
    }

    & .category {
        color: #5A5A5A;
        font-family: Synonym;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        display: flex;
        gap: 10px;
        align-items: center;
        justify-content: center;
    
    }

    & .share {
        display: flex;
        gap: 15px;
        justify-content: center;
        align-items: center;
        font-size: 17px;
        margin-left: auto;

        & .share-link {
            display: flex;
            color: #a8b387;
            transition: .2s linear;
        }

        & a:hover {
            opacity: .6;
        }
    }
}

@media (max-width: 1100px) {
    .article-reading-time-and-share {
        flex-direction: column;
        gap: 15px;
    }
}