.tn-news {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background: #ffffff;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    padding: 16px;
    border: 1px solid #ccc;
    border-radius: 12px;
    background-color: var(--white);
    margin-bottom: 16px;
}
.tn-news:hover {
    box-shadow: 8px -2px 14px rgb(56 221 84 / 20%);
    cursor: pointer;
    transform: translateY(-8px);
}

.tn-news .tn-title .hidden_content {
    -webkit-line-clamp: 2;
}

.tn-news .tn-img,.tn-news .tn-img img {
    width: 160px;
    height: 105px;
}

.tn-news .tn-title a {
    color: #000000;
    font-size: 20px;
    font-weight: 700;
    transition: all .3s;
    line-height: 1.5rem;
    text-transform: capitalize;
}

.tn-news .tn-title a:hover {
    color: var(--primary-color-hover);
}

.tn-news .tn-des * {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}