.trending-news {
    display: flex;
    flex-direction: column;
    max-width: 1280px;
    background: #fff;
    border-radius: 4px;
  padding: 0.8rem 1rem;

    text-decoration: none; /* Make link styling clean */
    color: inherit; /* Keep text color */
 
    cursor: pointer;
}



.trending-image {
    width: 100%;
    height: auto;
}

.trending-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    margin-bottom: 15px;
}

.trending-content {
    width: 100%;
    text-align: center;
}

.trending-content h1 {
    font-size: 32px;
    color: #1e73be;
    margin-bottom: 12px;
}
@media screen and (min-width:1280px) {
.trending-content h1 {
    font-size: 40px;

}}

.trending-meta {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
}
@media screen and (min-width:1280px) {
.trending-meta {
    font-size: 22px;

}

}

.trending-meta span {
    margin-right: 10px;
}

.trending-content p[itemprop="description"] {
    font-size: 20px;
    color: #333;
    line-height: 1.6;
}
@media screen and (min-width:1280px) {
.trending-content p[itemprop="description"] {
    font-size: 22px;

}

}