body .card-sync-linkedin-feed{
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #FFFFFF;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

body .card-sync-linkedin-feed__head, body .card-sync-linkedin-feed__footer{
    display: flex;
    align-items: center;
    padding: 0.75rem;
    line-height: 1.5;
}

body .card-sync-linkedin-feed__image,
body .card-sync-linkedin-feed__image > img{
    width: 56px;
    height: 56px;
}

body .card-sync-linkedin-feed__title, 
body .card-sync-linkedin-feed__title > a{
    font-size: 1.125rem;
    margin-bottom: 0;
}

body .card-sync-linkedin-feed__title, 
body .card-sync-linkedin-feed__title > a,
body .card-sync-linkedin-feed__link{
    color: rgba(0, 0, 0, 0.9);
    text-decoration: none;
    font-weight: 700;
}

body .card-sync-linkedin-feed__link{
    font-size: 1rem;
}

body .card-sync-linkedin-feed__title > a:hover,
body .card-sync-linkedin-feed__link:hover{
    color: #004182;
    text-decoration: underline;
}

body .card-sync-linkedin-feed__head-info{
    width: calc(100% - 56px);
    padding-left: 0.5rem;
}

body .card-sync-linkedin-feed__head-info time{
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.9);
}

body .card-sync-linkedin-feed__media{
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
    margin-bottom: 0.75rem;
}

body .card-sync-linkedin-feed__media > iframe,
body .card-sync-linkedin-feed__media > .load{
    max-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

body .card-sync-linkedin-feed__content{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

body .card-sync-linkedin-feed__content > p{
    margin-bottom: 0;
    font-size: 0.875rem;
    line-height: 1.5rem;
}

body .card-sync-linkedin-feed__footer{
    justify-content: space-between;
    margin-top: auto;
}

body .card-sync-linkedin-feed__icon{
    width: 2rem;
    height: 2rem;
}

body .card-sync-linkedin-feed .load{
    display: inline-block;
    min-height: 1em;
    vertical-align: middle;
    cursor: wait;
    background-color: currentcolor;
    opacity: .5;
    animation: sync-linkedin-feed-load 2s ease-in-out infinite;
}

@keyframes sync-linkedin-feed-load {
    50% {
        opacity: 0.2;
    }
}