.news-feed-wrapper {
    padding: 0 35px 0 35px;
    margin: 0;
}

.news-feed-card {
    padding: 30px;
    font-size: 16px;
    margin-bottom: 20px;
}

.news-feed-card h4 {
    font-weight: 800;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: -0.005em;
    color: #0a1830;
    margin-bottom: 15px;
}

.news-feed-card p img {
    max-width: 100%;
    height: auto;
}

.news-feed-card .news-feed-author-info {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.news-feed-card .news-feed-author {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.news-feed-card p {
    white-space: pre-wrap;
}

.news-feed-author-info h5 {
    font-weight: 800;
    font-size: 16px;
    line-height: 136%;
    color: #0a1830;
    margin: 0;
}

.news-feed-author-info .time {
    font-weight: 600;
    font-size: 14px;
    line-height: 140%;
    color: #8d939c;
}

.news-feed-author-info .author-name {
    margin-left: 10px;
}

.news-feed-author-info .author-name a {
    text-decoration: none;
    color: #0a1830;
}

.news-feed-card .available-by-subscription-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px;
    background: #f6f6f7;
    border-radius: 40px;
    margin-top: 10px;
}

.available-by-subscription-container .content-type {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 13px;
    width: 50px;
    height: 50px;
    background: #ffffff;
    box-shadow: 0px 0px 5px 2px #e8e8e8;
    border-radius: 30px;
}

.available-by-subscription-container .available-by-subscription {
    font-weight: 800;
    font-size: 16px;
    line-height: 136%;
    color: #0a1830;
}

.available-by-subscription-container button {
    height: 50px;
    background: #3579f6;
    border-radius: 40px;
}

.news-feed-card .share-container,
.news-feed-card .like-container {
    display: flex;
    align-items: center;
    margin-top: 25px;
    max-width: 185px;
    cursor: pointer;
    padding: 5px 10px;
}

.news-feed-card .share-container:hover,
.news-feed-card .like-container:hover {
    background-color: #f3f3f3;
    border-radius: 10px;
}

.news-feed-card .like-container.liked i {
    color: #dc3545;
}

.news-feed-card .share-container i,
.news-feed-card .like-container i {
    margin-right: 8px;
    font-size: 20px;
    color: #8d939c;
}

.news-feed-card .share-container span,
.news-feed-card .like-container span {
    font-weight: 800;
    font-size: 14px;
    line-height: 140%;
    color: #8d939c;
}

.news-feed-card .img-container {
    margin: 0 -30px 20px -30px;
}

.news-feed-card .img-container img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.news-feed-card .img-container .blur {
    filter: blur(2px);
    -webkit-filter: blur(2px);
}

.news-feed-card .video-container {
    margin: 0 -30px 20px -30px;
}

.news-feed-wrapper .read-more-news-feed-wrapper {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.news-feed-wrapper .read-more-news-feed-wrapper .read-more {
    margin-right: 5px;
    font-weight: 600;
    font-size: 14px;
    line-height: 140%;
    color: #3579f6;
    cursor: pointer;
}

.news-feed-wrapper .read-more-news-feed-wrapper #chevronUpNews {
    display: none;
}

.news-feed-wrapper .read-more-news-feed-wrapper i {
    font-size: 12px;
    color: #3579f6;
}

.news-feed-wrapper #hiddenNews {
    display: none;
}

.news-feed-wrapper .hidden-news-container {
    animation: fadeIn 0.3s ease-in both;
}

.news-feed-wrapper .action-container {
    display: flex;
    justify-content: space-between;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate3d(0, 20%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (max-width: 769px) {
    .news-feed-wrapper {
        padding: 0 10px 0 10px;
    }

    .news-feed-card {
        padding: 20px;
    }

    .news-feed-card .img-container {
        margin: 0 -20px 20px -20px;
    }

    .news-feed-card .video-container {
        margin: 0 -20px 20px -20px;
    }
}

@media (max-width: 576px) {
    .news-feed-card .available-by-subscription-container {
        padding: 30px;
    }

    .available-by-subscription-container button {
        width: 100%;
        margin-top: 15px;
    }
}
